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.
This commit is contained in:
Alexander Couzens 2017-02-21 14:59:20 +01:00 committed by Harald Welte
parent e49f36bc28
commit 17faeefa27
2 changed files with 0 additions and 12 deletions

View File

@ -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;
}

View File

@ -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);