summaryrefslogtreecommitdiff
path: root/accel-pppd/ppp/ppp_auth.h
diff options
context:
space:
mode:
authorGuillaume Nault <g.nault@alphalink.fr>2018-11-19 17:44:37 +0100
committerDmitry Kozlov <xeb@mail.ru>2018-11-27 09:56:56 +0300
commit9de2460f922eba2c8e0ace09be5f42e74a0f0ff7 (patch)
treed2eeef19252a9ea16dadac64cd4b1eb931b5f679 /accel-pppd/ppp/ppp_auth.h
parent75a880700071b9d8a4a36f7c0beae5220e8c4853 (diff)
downloadaccel-ppp-xebd-9de2460f922eba2c8e0ace09be5f42e74a0f0ff7.tar.gz
accel-ppp-xebd-9de2460f922eba2c8e0ace09be5f42e74a0f0ff7.zip
auth: remove .recv_conf_req from struct ppp_auth_handler_t
This callback isn't used anymore. Let's remove it from all authentication backends. Signed-off-by: Guillaume Nault <g.nault@alphalink.fr>
Diffstat (limited to 'accel-pppd/ppp/ppp_auth.h')
-rw-r--r--accel-pppd/ppp/ppp_auth.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/accel-pppd/ppp/ppp_auth.h b/accel-pppd/ppp/ppp_auth.h
index c8df9fc..e9398c2 100644
--- a/accel-pppd/ppp/ppp_auth.h
+++ b/accel-pppd/ppp/ppp_auth.h
@@ -22,7 +22,6 @@ struct ppp_auth_handler_t
const char *name;
struct auth_data_t* (*init)(struct ppp_t*);
int (*send_conf_req)(struct ppp_t*, struct auth_data_t*, uint8_t*);
- int (*recv_conf_req)(struct ppp_t*, struct auth_data_t*, uint8_t*);
int (*start)(struct ppp_t*, struct auth_data_t*);
int (*finish)(struct ppp_t*, struct auth_data_t*);
void (*free)(struct ppp_t*,struct auth_data_t*);