Symbol: l2tp_ctrl
usr.sbin/npppd/l2tp/l2tp.h
424
l2tp_ctrl *ctrl;
usr.sbin/npppd/l2tp/l2tp.h
449
int l2tp_call_init (l2tp_call *, l2tp_ctrl *);
usr.sbin/npppd/l2tp/l2tp.h
453
int l2tp_call_recv_packet (l2tp_ctrl *, l2tp_call *, int, u_char *, int);
usr.sbin/npppd/l2tp/l2tp.h
456
void l2tp_ctrl_destroy (l2tp_ctrl *);
usr.sbin/npppd/l2tp/l2tp.h
457
l2tp_ctrl *l2tp_ctrl_create (void);
usr.sbin/npppd/l2tp/l2tp.h
459
int l2tp_ctrl_send(l2tp_ctrl *, const void *, int);
usr.sbin/npppd/l2tp/l2tp.h
460
int l2tp_ctrl_send_packet(l2tp_ctrl *, int, bytebuffer *);
usr.sbin/npppd/l2tp/l2tp.h
461
int l2tp_ctrl_stop (l2tp_ctrl *, int);
usr.sbin/npppd/l2tp/l2tp.h
462
bytebuffer *l2tp_ctrl_prepare_snd_buffer (l2tp_ctrl *, int);
usr.sbin/npppd/l2tp/l2tp.h
463
void l2tp_ctrl_log (l2tp_ctrl *, int, const char *, ...) __attribute__((__format__ (__printf__, 3, 4)));
usr.sbin/npppd/l2tp/l2tp.h
471
l2tp_ctrl *l2tpd_get_ctrl (l2tpd *, u_int);
usr.sbin/npppd/l2tp/l2tp.h
472
void l2tpd_add_ctrl (l2tpd *, l2tp_ctrl *);
usr.sbin/npppd/l2tp/l2tp_call.c
165
l2tp_call_recv_packet(l2tp_ctrl *ctrl, l2tp_call *_this, int mestype,
usr.sbin/npppd/l2tp/l2tp_call.c
92
l2tp_call_init(l2tp_call *_this, l2tp_ctrl *ctrl)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
1035
l2tp_ctrl_txwin_size(l2tp_ctrl *_this)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
1047
l2tp_ctrl_txwin_is_full(l2tp_ctrl *_this)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
105
l2tp_ctrl *
usr.sbin/npppd/l2tp/l2tp_ctrl.c
1053
l2tp_ctrl_in_peer_window(l2tp_ctrl *_this, uint16_t seq)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
1065
l2tp_ctrl_in_our_window(l2tp_ctrl *_this, uint16_t seq)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
1075
l2tp_ctrl_send_packet(l2tp_ctrl *_this, int call_id, bytebuffer *bytebuf)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
109
return calloc(1, sizeof(l2tp_ctrl));
usr.sbin/npppd/l2tp/l2tp_ctrl.c
1135
l2tp_ctrl_recv_SCCRQ(l2tp_ctrl *_this, u_char *pkt, int pktlen, l2tpd *_l2tpd,
usr.sbin/npppd/l2tp/l2tp_ctrl.c
117
l2tp_ctrl_init(l2tp_ctrl *_this, l2tpd *_l2tpd, struct sockaddr *peer,
usr.sbin/npppd/l2tp/l2tp_ctrl.c
124
memset(_this, 0, sizeof(l2tp_ctrl));
usr.sbin/npppd/l2tp/l2tp_ctrl.c
1266
l2tp_ctrl_send_StopCCN(l2tp_ctrl *_this, int result)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
1313
l2tp_ctrl_recv_StopCCN(l2tp_ctrl *_this, u_char *pkt, int pktlen)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
1419
l2tp_ctrl_send_SCCRP(l2tp_ctrl *_this)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
1520
l2tp_ctrl_send_HELLO(l2tp_ctrl *_this)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
1552
l2tp_ctrl_send_ZLB(l2tp_ctrl *_this)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
1575
l2tp_ctrl_prepare_snd_buffer(l2tp_ctrl *_this, int with_seq)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
1601
l2tp_ctrl_state_string(l2tp_ctrl *_this)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
1615
l2tp_ctrl_log(l2tp_ctrl *_this, int prio, const char *fmt, ...)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
218
l2tp_ctrl_reload(l2tp_ctrl *_this)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
231
l2tp_ctrl_destroy(l2tp_ctrl *_this)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
249
l2tp_ctrl_send_disconnect_notify(l2tp_ctrl *_this)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
301
l2tp_ctrl_stop(l2tp_ctrl *_this, int result)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
369
l2tp_ctrl *_this;
usr.sbin/npppd/l2tp/l2tp_ctrl.c
488
l2tp_ctrl_send(l2tp_ctrl *_this, const void *msg, int len)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
517
l2tp_ctrl_resend_una_packets(l2tp_ctrl *_this, bool resend)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
556
l2tp_ctrl_destroy_all_calls(l2tp_ctrl *_this)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
571
l2tp_ctrl_disconnect_all_calls(l2tp_ctrl *_this, int drop)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
599
l2tp_ctrl_reset_timeout(l2tp_ctrl *_this)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
635
l2tp_ctrl *ctrl;
usr.sbin/npppd/l2tp/l2tp_ctrl.c
68
static int l2tp_ctrl_init(l2tp_ctrl *, l2tpd *, struct sockaddr *, struct sockaddr *, void *);
usr.sbin/npppd/l2tp/l2tp_ctrl.c
69
static void l2tp_ctrl_reload(l2tp_ctrl *);
usr.sbin/npppd/l2tp/l2tp_ctrl.c
70
static int l2tp_ctrl_send_disconnect_notify(l2tp_ctrl *);
usr.sbin/npppd/l2tp/l2tp_ctrl.c
72
static int l2tp_ctrl_resend_una_packets(l2tp_ctrl *, bool);
usr.sbin/npppd/l2tp/l2tp_ctrl.c
73
static void l2tp_ctrl_destroy_all_calls(l2tp_ctrl *);
usr.sbin/npppd/l2tp/l2tp_ctrl.c
74
static int l2tp_ctrl_disconnect_all_calls(l2tp_ctrl *, int);
usr.sbin/npppd/l2tp/l2tp_ctrl.c
75
static void l2tp_ctrl_reset_timeout(l2tp_ctrl *);
usr.sbin/npppd/l2tp/l2tp_ctrl.c
76
static int l2tp_ctrl_txwin_size(l2tp_ctrl *);
usr.sbin/npppd/l2tp/l2tp_ctrl.c
77
static bool l2tp_ctrl_txwin_is_full(l2tp_ctrl *);
usr.sbin/npppd/l2tp/l2tp_ctrl.c
78
static bool l2tp_ctrl_in_peer_window(l2tp_ctrl *, uint16_t);
usr.sbin/npppd/l2tp/l2tp_ctrl.c
79
static bool l2tp_ctrl_in_our_window(l2tp_ctrl *, uint16_t);
usr.sbin/npppd/l2tp/l2tp_ctrl.c
80
static int l2tp_ctrl_recv_SCCRQ(l2tp_ctrl *, u_char *, int, l2tpd *, struct sockaddr *);
usr.sbin/npppd/l2tp/l2tp_ctrl.c
81
static int l2tp_ctrl_send_StopCCN(l2tp_ctrl *, int);
usr.sbin/npppd/l2tp/l2tp_ctrl.c
82
static int l2tp_ctrl_recv_StopCCN(l2tp_ctrl *, u_char *, int);
usr.sbin/npppd/l2tp/l2tp_ctrl.c
83
static void l2tp_ctrl_send_SCCRP(l2tp_ctrl *);
usr.sbin/npppd/l2tp/l2tp_ctrl.c
84
static int l2tp_ctrl_send_HELLO(l2tp_ctrl *);
usr.sbin/npppd/l2tp/l2tp_ctrl.c
85
static int l2tp_ctrl_send_ZLB(l2tp_ctrl *);
usr.sbin/npppd/l2tp/l2tp_ctrl.c
86
static const char *l2tp_ctrl_state_string(l2tp_ctrl *);
usr.sbin/npppd/l2tp/l2tpd.c
484
l2tp_ctrl *ctrl;
usr.sbin/npppd/l2tp/l2tpd.c
503
l2tp_ctrl *ctrl;
usr.sbin/npppd/l2tp/l2tpd.c
668
l2tp_ctrl *
usr.sbin/npppd/l2tp/l2tpd.c
681
l2tpd_add_ctrl(l2tpd *_this, l2tp_ctrl *ctrl)
usr.sbin/npppd/npppd/npppd.c
1053
l2tp_ctrl *l2tpctrl;
usr.sbin/npppd/npppd/npppd_radius.c
491
l2tp_ctrl *ctrl;