diff options
Diffstat (limited to 'accel-pptpd/pptpd.h')
-rw-r--r-- | accel-pptpd/pptpd.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/accel-pptpd/pptpd.h b/accel-pptpd/pptpd.h new file mode 100644 index 00000000..d98978e5 --- /dev/null +++ b/accel-pptpd/pptpd.h @@ -0,0 +1,26 @@ +// +// C++ Interface: pptpd +// +// Description: +// +// +// Author: <xeb@mail.ru>, (C) 2009 +// +// Copyright: See COPYING file that comes with this distribution +// +// + +#ifndef PPTPD_H +#define PPTPD_H + +struct ctrl_thread_t +{ + pthread_t thr; + pthread_mutex_t lock; + int count; + int pipe_fd[2]; +}; + +int ctrl_init(struct ctrl_thread_t*); + +#endif |