osmo-el2tpd/siu/l2tp/l2tpd_packet.h

18 lines
483 B
C

#pragma once
struct msgb;
struct l2tpd_connection;
struct l2tpd_session;
int l2tp_tx_scc_rp(struct l2tpd_connection *l2c);
int l2tp_tx_stop_ccn(struct l2tpd_connection *l2c);
int l2tp_tx_tc_rq(struct l2tpd_session *l2s);
int l2tp_tx_altc_rq(struct l2tpd_session *l2s);
int l2tp_tx_ic_rp(struct l2tpd_session *l2s);
int l2tp_tx_ack(struct l2tpd_connection *l2c);
int l2tp_tx_hello(struct l2tpd_session *l2s);
int l2tp_rcvmsg(struct msgb *msg);
struct msgb *l2tp_msgb_alloc(void);