l2tpd_packet.h: sort tx functions

This commit is contained in:
Alexander Couzens 2016-10-25 14:36:10 +02:00 committed by Harald Welte
parent 46bd1a4d69
commit 5d6842b9db
1 changed files with 7 additions and 4 deletions

View File

@ -4,13 +4,16 @@ struct msgb;
struct l2tpd_connection;
struct l2tpd_session;
/* control connection management */
int l2tp_tx_scc_rp(struct l2tpd_connection *l2c);
int l2tp_tx_stop_ccn(struct l2tpd_connection *l2c);
int l2tp_tx_stop_ccn_msg(struct msgb *old);
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_stop_ccn_msg(struct msgb *old)
int l2tp_tx_tc_rq(struct l2tpd_connection *l2c);
int l2tp_tx_altc_rq(struct l2tpd_connection *l2c);
int l2tp_tx_ack(struct l2tpd_connection *l2c);
/* session management */
int l2tp_tx_ic_rp(struct l2tpd_session *l2s);
int l2tp_tx_hello(struct l2tpd_session *l2s);
int l2tp_rcvmsg(struct msgb *msg);