From 17faeefa2743d3a9d2980c566e77b0f25eed1af0 Mon Sep 17 00:00:00 2001 From: Alexander Couzens Date: Tue, 21 Feb 2017 14:59:20 +0100 Subject: [PATCH] l2tpd_lapd: remove unsued unix_trau_cb|unix_pgsl_cb These functions are only dummy functions in case pgsl, rsl, trau requires very different handling. --- siu/l2tp/l2tpd_lapd.c | 10 ---------- siu/l2tp/l2tpd_lapd.h | 2 -- 2 files changed, 12 deletions(-) diff --git a/siu/l2tp/l2tpd_lapd.c b/siu/l2tp/l2tpd_lapd.c index a873fa3..02fbf6a 100644 --- a/siu/l2tp/l2tpd_lapd.c +++ b/siu/l2tp/l2tpd_lapd.c @@ -294,13 +294,3 @@ int unix_rsl_oml_cb(struct osmo_fd *fd) msgb_free(msg); return 0; } - -int unix_trau_cb(struct osmo_fd *fd) -{ - return 0; -} - -int unix_pgsl_cb(struct osmo_fd *fd) -{ - return 0; -} diff --git a/siu/l2tp/l2tpd_lapd.h b/siu/l2tp/l2tpd_lapd.h index ba2c240..3b8cf68 100644 --- a/siu/l2tp/l2tpd_lapd.h +++ b/siu/l2tp/l2tpd_lapd.h @@ -3,5 +3,3 @@ int lapd_lapd_to_ehdlc(struct l2tpd_instance *l2i, struct msgb *msg); int lapd_ehdlc_to_lapd(struct l2tpd_instance *l2i, struct l2tpd_session *session, struct msgb *msg); int unix_rsl_oml_cb(struct osmo_fd *fd); -int unix_trau_cb(struct osmo_fd *fd); -int unix_pgsl_cb(struct osmo_fd *fd);