Symbol: pptp_call
usr.sbin/npppd/npppd/npppd.c
1049
pptp_call *call;
usr.sbin/npppd/npppd/npppd.c
1093
call = (pptp_call *)ppp->phy_context;
usr.sbin/npppd/npppd/npppd.c
1195
pptp_call *call;
usr.sbin/npppd/npppd/npppd.c
1218
call = (pptp_call *)ppp->phy_context;
usr.sbin/npppd/npppd/npppd_ctl.c
323
pptp_call *pptp;
usr.sbin/npppd/npppd/npppd_ctl.c
345
pptp = (pptp_call *)ppp->phy_context;
usr.sbin/npppd/npppd/npppd_radius.c
434
pptp_call *call = call0;
usr.sbin/npppd/pptp/pptp.h
330
int pptpd_assign_call (pptpd *, pptp_call *);
usr.sbin/npppd/pptp/pptp.h
331
void pptpd_release_call (pptpd *, pptp_call *);
usr.sbin/npppd/pptp/pptp.h
345
pptp_call *pptp_call_create (void);
usr.sbin/npppd/pptp/pptp.h
346
int pptp_call_init (pptp_call *, pptp_ctrl *);
usr.sbin/npppd/pptp/pptp.h
347
int pptp_call_start (pptp_call *);
usr.sbin/npppd/pptp/pptp.h
348
int pptp_call_stop (pptp_call *);
usr.sbin/npppd/pptp/pptp.h
349
void pptp_call_destroy (pptp_call *);
usr.sbin/npppd/pptp/pptp.h
350
void pptp_call_input (pptp_call *, int, u_char *, int);
usr.sbin/npppd/pptp/pptp.h
351
void pptp_call_gre_input (pptp_call *, uint32_t, uint32_t, int, u_char *, int);
usr.sbin/npppd/pptp/pptp.h
352
void pptp_call_disconnect(pptp_call *, int, int, const char *);
usr.sbin/npppd/pptp/pptp_call.c
104
pptp_call *
usr.sbin/npppd/pptp/pptp_call.c
107
pptp_call *_this;
usr.sbin/npppd/pptp/pptp_call.c
109
if ((_this = malloc(sizeof(pptp_call))) == NULL)
usr.sbin/npppd/pptp/pptp_call.c
116
pptp_call_init(pptp_call *_this, pptp_ctrl *ctrl)
usr.sbin/npppd/pptp/pptp_call.c
118
memset(_this, 0, sizeof(pptp_call));
usr.sbin/npppd/pptp/pptp_call.c
130
pptp_call_start(pptp_call *_this)
usr.sbin/npppd/pptp/pptp_call.c
139
pptp_call_stop(pptp_call *_this)
usr.sbin/npppd/pptp/pptp_call.c
151
pptp_call_destroy(pptp_call *_this)
usr.sbin/npppd/pptp/pptp_call.c
158
pptp_call_disconnect(pptp_call *_this, int result, int error, const char *
usr.sbin/npppd/pptp/pptp_call.c
176
pptp_call_input(pptp_call *_this, int mes_type, u_char *pkt, int lpkt)
usr.sbin/npppd/pptp/pptp_call.c
251
pptp_call_recv_SLI(pptp_call *_this, u_char *pkt, int lpkt)
usr.sbin/npppd/pptp/pptp_call.c
284
pptp_call_send_SLI(pptp_call *_this)
usr.sbin/npppd/pptp/pptp_call.c
319
pptp_call_recv_CCR(pptp_call *_this, u_char *pkt, int lpkt)
usr.sbin/npppd/pptp/pptp_call.c
340
pptp_call_send_CDN(pptp_call *_this, int result, int error, int cause,
usr.sbin/npppd/pptp/pptp_call.c
382
pptp_call_send_OCRP(pptp_call *_this, int result, int error, int cause)
usr.sbin/npppd/pptp/pptp_call.c
429
pptp_call_recv_OCRQ(pptp_call *_this, u_char *pkt, int lpkt)
usr.sbin/npppd/pptp/pptp_call.c
470
pptp_call_gre_input(pptp_call *_this, uint32_t seq, uint32_t ack,
usr.sbin/npppd/pptp/pptp_call.c
566
pptp_call_gre_output(pptp_call *_this, int fseq, int fack, u_char *pkt,
usr.sbin/npppd/pptp/pptp_call.c
652
pptp_call_notify_down(pptp_call *_this)
usr.sbin/npppd/pptp/pptp_call.c
661
pptp_call_ppp_input(pptp_call *_this, u_char *pkt, int pktlen, int delayed)
usr.sbin/npppd/pptp/pptp_call.c
68
static void pptp_call_log (pptp_call *, int, const char *, ...) __printflike(3,4);
usr.sbin/npppd/pptp/pptp_call.c
689
pptp_call *_this;
usr.sbin/npppd/pptp/pptp_call.c
71
static void pptp_call_notify_down (pptp_call *);
usr.sbin/npppd/pptp/pptp_call.c
711
pptp_call *_this;
usr.sbin/npppd/pptp/pptp_call.c
72
static int pptp_call_recv_SLI (pptp_call *, u_char *, int);
usr.sbin/npppd/pptp/pptp_call.c
73
static int pptp_call_recv_CCR (pptp_call *, u_char *, int);
usr.sbin/npppd/pptp/pptp_call.c
730
pptp_call_bind_ppp(pptp_call *_this)
usr.sbin/npppd/pptp/pptp_call.c
74
static int pptp_call_recv_OCRQ (pptp_call *, u_char *, int);
usr.sbin/npppd/pptp/pptp_call.c
75
static void pptp_call_send_CDN (pptp_call *, int, int, int, const char *);
usr.sbin/npppd/pptp/pptp_call.c
76
static int pptp_call_send_OCRP (pptp_call *, int, int, int);
usr.sbin/npppd/pptp/pptp_call.c
77
static int pptp_call_gre_output (pptp_call *, int, int, u_char *, int);
usr.sbin/npppd/pptp/pptp_call.c
78
static int pptp_call_bind_ppp (pptp_call *);
usr.sbin/npppd/pptp/pptp_call.c
781
pptp_call_log(pptp_call *_this, int prio, const char *fmt, ...)
usr.sbin/npppd/pptp/pptp_call.c
79
static void pptp_call_log (pptp_call *, int, const char *, ...);
usr.sbin/npppd/pptp/pptp_call.c
82
static void pptp_call_ppp_input (pptp_call *, unsigned char *, int, int);
usr.sbin/npppd/pptp/pptp_ctrl.c
1037
pptp_call *call;
usr.sbin/npppd/pptp/pptp_ctrl.c
206
pptp_call *call;
usr.sbin/npppd/pptp/pptp_ctrl.c
302
pptp_call *call;
usr.sbin/npppd/pptp/pptp_ctrl.c
332
pptp_call *call;
usr.sbin/npppd/pptp/pptpd.c
246
pptpd_assign_call(pptpd *_this, pptp_call *call)
usr.sbin/npppd/pptp/pptpd.c
280
pptpd_release_call(pptpd *_this, pptp_call *call)
usr.sbin/npppd/pptp/pptpd.c
692
pptp_call *call;