summaryrefslogtreecommitdiff
path: root/accel-pptpd/ppp_auth.h
diff options
context:
space:
mode:
Diffstat (limited to 'accel-pptpd/ppp_auth.h')
-rw-r--r--accel-pptpd/ppp_auth.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/accel-pptpd/ppp_auth.h b/accel-pptpd/ppp_auth.h
index 79ceb645..064bf245 100644
--- a/accel-pptpd/ppp_auth.h
+++ b/accel-pptpd/ppp_auth.h
@@ -11,8 +11,10 @@ struct auth_driver_t
{
struct list_head entry;
int type;
- int (*get_conf_req)(struct auth_driver_t*, struct ppp_layer_t*, struct lcp_opt32_t*);
- int (*recv_conf_req)(struct auth_driver_t*, struct ppp_layer_t*, struct lcp_opt32_t*);
+ int (*get_conf_req)(struct auth_driver_t*, struct ppp_t*, struct lcp_opt32_t*);
+ int (*recv_conf_req)(struct auth_driver_t*, struct ppp_t*, struct lcp_opt32_t*);
+ int (*begin)(struct auth_driver_t*, struct ppp_t*);
+ int (*terminate)(struct auth_driver_t*, struct ppp_t*);
};
int auth_get_conf_req(struct ppp_layer_t *l, struct lcp_opt32_t *);