summaryrefslogtreecommitdiff
path: root/accel-pptpd/pptpd.h
blob: d98978e564855adc6874c808e4faaa77bd429a0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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