From 5be67a04fe1a4185732bf8dd143873b1c1553df3 Mon Sep 17 00:00:00 2001 From: Kozlov Dmitry Date: Fri, 25 Jan 2013 00:01:13 +0400 Subject: Revert "altered session finishing procedure" This reverts commit 9f4f36169f03857b6910402028717210270a0339. --- accel-pppd/ppp/ppp.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'accel-pppd/ppp') diff --git a/accel-pppd/ppp/ppp.c b/accel-pppd/ppp/ppp.c index 5f3bbcd9..fee9334d 100644 --- a/accel-pppd/ppp/ppp.c +++ b/accel-pppd/ppp/ppp.c @@ -185,7 +185,9 @@ 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); @@ -440,7 +442,7 @@ void __export ppp_terminate(struct ap_session *ses, int hard) int s = 0; if (hard) { - triton_context_call(ses->ctrl->ctx, (triton_event_func)destablish_ppp, ppp); + destablish_ppp(ppp); return; } @@ -455,7 +457,7 @@ void __export ppp_terminate(struct ap_session *ses, int hard) if (s) return; - triton_context_call(ses->ctrl->ctx, (triton_event_func)destablish_ppp, ppp); + destablish_ppp(ppp); } void __export ppp_register_chan_handler(struct ppp_t *ppp,struct ppp_handler_t *h) -- cgit v1.2.3