summaryrefslogtreecommitdiff
path: root/accel-pppd/ctrl/sstp/sstp.h
blob: eff8e0531dec8b6ecb61fc6393159f2bd8e419d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __SSTP_H
#define __SSTP_H

struct sstp_stat_t
{
	unsigned int starting;
	unsigned int active;
};

void sstp_stat_get(struct sstp_stat_t *stat);
unsigned int sstp_stat_starting(void);
unsigned int sstp_stat_active(void);

#endif