diff options
author | Kozlov Dmitry <dima@server> | 2010-09-01 19:29:43 +0400 |
---|---|---|
committer | Kozlov Dmitry <dima@server> | 2010-09-01 19:29:43 +0400 |
commit | 2b63c6e6e368d6ea39584a70ddb81a88e0924c47 (patch) | |
tree | 790cc5d46e691b4b920170b7dfde40d3c6ec4be6 /accel-pptpd/ppp.h | |
parent | 5bac5a2edb7bc7639c853fd0f7109dcddb7c4cee (diff) | |
download | accel-ppp-xebd-2b63c6e6e368d6ea39584a70ddb81a88e0924c47.tar.gz accel-ppp-xebd-2b63c6e6e368d6ea39584a70ddb81a88e0924c47.zip |
rewriting triton library ...
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 39a0d41..6dd05be 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; |