diff options
Diffstat (limited to 'accel-pptpd/ppp.h')
-rw-r--r-- | accel-pptpd/ppp.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/accel-pptpd/ppp.h b/accel-pptpd/ppp.h index 39a0d41b..6dd05bea 100644 --- a/accel-pptpd/ppp.h +++ b/accel-pptpd/ppp.h @@ -52,8 +52,9 @@ struct ppp_t; -struct ppp_events_t +struct ppp_ctrl_t { + struct triton_ctx_t *ctx; void (*started)(struct ppp_t*); void (*finished)(struct ppp_t*); }; @@ -71,7 +72,7 @@ struct ppp_t char *chan_name; - struct ppp_events_t events; + struct ppp_ctrl_t *ctrl; int log:1; |