From fd85910188c8ae59e7f3e1ce321b831913ec0744 Mon Sep 17 00:00:00 2001 From: Kozlov Dmitry Date: Thu, 24 Jan 2013 23:59:35 +0400 Subject: altered session finishing procedure --- accel-pppd/ppp/ppp.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'accel-pppd/ppp') diff --git a/accel-pppd/ppp/ppp.c b/accel-pppd/ppp/ppp.c index fee9334d..5f3bbcd9 100644 --- a/accel-pppd/ppp/ppp.c +++ b/accel-pppd/ppp/ppp.c @@ -185,9 +185,7 @@ exit_close_chan: static void destablish_ppp(struct ppp_t *ppp) { struct pppunit_cache *uc; - - triton_event_fire(EV_SES_PRE_FINISHED, ppp); - + triton_md_unregister_handler(&ppp->chan_hnd); triton_md_unregister_handler(&ppp->unit_hnd); @@ -442,7 +440,7 @@ void __export ppp_terminate(struct ap_session *ses, int hard) int s = 0; if (hard) { - destablish_ppp(ppp); + triton_context_call(ses->ctrl->ctx, (triton_event_func)destablish_ppp, ppp); return; } @@ -457,7 +455,7 @@ void __export ppp_terminate(struct ap_session *ses, int hard) if (s) return; - destablish_ppp(ppp); + triton_context_call(ses->ctrl->ctx, (triton_event_func)destablish_ppp, ppp); } void __export ppp_register_chan_handler(struct ppp_t *ppp,struct ppp_handler_t *h) -- cgit v1.2.3