Symbol: l2tpd
usr.sbin/npppd/l2tp/l2tp.h
273
#define l2tpd_is_stopped(l2tpd) \
usr.sbin/npppd/l2tp/l2tp.h
274
(((l2tpd)->state != L2TPD_STATE_SHUTTING_DOWN && \
usr.sbin/npppd/l2tp/l2tp.h
275
(l2tpd)->state != L2TPD_STATE_RUNNING)? 1 : 0)
usr.sbin/npppd/l2tp/l2tp.h
278
#define l2tpd_is_shutting_down(l2tpd) \
usr.sbin/npppd/l2tp/l2tp.h
279
(((l2tpd)->state == L2TPD_STATE_SHUTTING_DOWN)? 1 : 0)
usr.sbin/npppd/l2tp/l2tp.h
283
((l2tpd_listener *)slist_get(&(ctrl)->l2tpd->listener, \
usr.sbin/npppd/l2tp/l2tp.h
287
((l2tpd_listener *)slist_get(&(ctrl)->l2tpd->listener, \
usr.sbin/npppd/l2tp/l2tp.h
343
l2tpd *l2tpd;
usr.sbin/npppd/l2tp/l2tp.h
458
void l2tp_ctrl_input (l2tpd *, int, struct sockaddr *, struct sockaddr *, void *, u_char *, int);
usr.sbin/npppd/l2tp/l2tp.h
464
int l2tpd_init (l2tpd *);
usr.sbin/npppd/l2tp/l2tp.h
465
void l2tpd_uninit (l2tpd *);
usr.sbin/npppd/l2tp/l2tp.h
466
int l2tpd_assign_call (l2tpd *, l2tp_call *);
usr.sbin/npppd/l2tp/l2tp.h
467
void l2tpd_release_call (l2tpd *, l2tp_call *);
usr.sbin/npppd/l2tp/l2tp.h
468
int l2tpd_start (l2tpd *);
usr.sbin/npppd/l2tp/l2tp.h
469
void l2tpd_stop (l2tpd *);
usr.sbin/npppd/l2tp/l2tp.h
470
void l2tpd_stop_immediatly (l2tpd *);
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.h
473
void l2tpd_ctrl_finished_notify(l2tpd *);
usr.sbin/npppd/l2tp/l2tp.h
474
void l2tpd_remove_ctrl (l2tpd *, u_int);
usr.sbin/npppd/l2tp/l2tp.h
475
int l2tpd_add_listener (l2tpd *, int, struct l2tp_conf *, struct sockaddr *);
usr.sbin/npppd/l2tp/l2tp.h
476
void l2tpd_log (l2tpd *, int, const char *, ...) __attribute__((__format__ (__printf__, 3, 4)));
usr.sbin/npppd/l2tp/l2tp.h
477
int l2tpd_reload(l2tpd *, struct l2tp_confs *);
usr.sbin/npppd/l2tp/l2tp.h
478
void l2tpd_log_access_deny(l2tpd *, const char *, struct sockaddr *);
usr.sbin/npppd/l2tp/l2tp_call.c
109
l2tpd_release_call(_this->ctrl->l2tpd, _this);
usr.sbin/npppd/l2tp/l2tp_call.c
454
l2tpd_log(_this->ctrl->l2tpd, LOG_DEBUG,
usr.sbin/npppd/l2tp/l2tp_call.c
853
_this->ctrl->l2tpd->id, _this->ctrl->id, _this->id, fmt);
usr.sbin/npppd/l2tp/l2tp_call.c
97
if (l2tpd_assign_call(ctrl->l2tpd, _this) != 0)
usr.sbin/npppd/l2tp/l2tp_ctrl.c
1113
l2tpd_log(_this->l2tpd, LOG_DEBUG,
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
127
_this->l2tpd = _l2tpd;
usr.sbin/npppd/l2tp/l2tp_ctrl.c
1623
_this->l2tpd->id, _this->id, fmt);
usr.sbin/npppd/l2tp/l2tp_ctrl.c
304
l2tpd *_l2tpd;
usr.sbin/npppd/l2tp/l2tp_ctrl.c
350
l2tpd_remove_ctrl(_this->l2tpd, _this->tunnel_id);
usr.sbin/npppd/l2tp/l2tp_ctrl.c
352
_l2tpd = _this->l2tpd;
usr.sbin/npppd/l2tp/l2tp_ctrl.c
629
l2tp_ctrl_input(l2tpd *_this, int listener_index, struct sockaddr *peer,
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
80
static int l2tp_ctrl_recv_SCCRQ(l2tp_ctrl *, u_char *, int, l2tpd *, struct sockaddr *);
usr.sbin/npppd/l2tp/l2tp_local.h
72
((l2tpd_listener *)slist_get(&(ctrl)->l2tpd->listener, \
usr.sbin/npppd/l2tp/l2tpd.c
142
l2tpd_add_listener(l2tpd *_this, int idx, struct l2tp_conf *conf,
usr.sbin/npppd/l2tp/l2tpd.c
195
l2tpd_uninit(l2tpd *_this)
usr.sbin/npppd/l2tp/l2tpd.c
222
l2tpd_assign_call(l2tpd *_this, l2tp_call *call)
usr.sbin/npppd/l2tp/l2tpd.c
253
l2tpd_release_call(l2tpd *_this, l2tp_call *call)
usr.sbin/npppd/l2tp/l2tpd.c
262
l2tpd *_l2tpd;
usr.sbin/npppd/l2tp/l2tpd.c
406
l2tpd_start(l2tpd *_this)
usr.sbin/npppd/l2tp/l2tpd.c
451
l2tpd_stop_immediatly(l2tpd *_this)
usr.sbin/npppd/l2tp/l2tpd.c
469
l2tpd_ctrl_finished_notify(l2tpd *_this)
usr.sbin/npppd/l2tp/l2tpd.c
485
l2tpd *_this;
usr.sbin/npppd/l2tp/l2tpd.c
499
l2tpd_stop(l2tpd *_this)
usr.sbin/npppd/l2tp/l2tpd.c
539
l2tpd_reload(l2tpd *_this, struct l2tp_confs *l2tp_conf)
usr.sbin/npppd/l2tp/l2tpd.c
582
l2tpd_log_access_deny(l2tpd *_this, const char *reason, struct sockaddr *peer)
usr.sbin/npppd/l2tp/l2tpd.c
596
l2tpd *_l2tpd;
usr.sbin/npppd/l2tp/l2tpd.c
669
l2tpd_get_ctrl(l2tpd *_this, unsigned tunid)
usr.sbin/npppd/l2tp/l2tpd.c
681
l2tpd_add_ctrl(l2tpd *_this, l2tp_ctrl *ctrl)
usr.sbin/npppd/l2tp/l2tpd.c
687
l2tpd_remove_ctrl(l2tpd *_this, unsigned tunid)
usr.sbin/npppd/l2tp/l2tpd.c
698
l2tpd_log(l2tpd *_this, int prio, const char *fmt, ...)
usr.sbin/npppd/l2tp/l2tpd.c
90
l2tpd_init(l2tpd *_this)
usr.sbin/npppd/l2tp/l2tpd.c
96
memset(_this, 0, sizeof(l2tpd));
usr.sbin/npppd/npppd/npppd.c
280
if (l2tpd_init(&_this->l2tpd) != 0)
usr.sbin/npppd/npppd/npppd.c
425
l2tpd_stop(&_this->l2tpd);
usr.sbin/npppd/npppd/npppd.c
463
if (!l2tpd_is_stopped(&_this->l2tpd))
usr.sbin/npppd/npppd/npppd.c
489
l2tpd_uninit(&_this->l2tpd);
usr.sbin/npppd/npppd/npppd_config.c
126
rval |= l2tpd_reload(&_this->l2tpd, &_this->conf.l2tp_confs);
usr.sbin/npppd/npppd/npppd_local.h
149
l2tpd l2tpd;