From eac0adf4b2b038690c761a126cb3e55a888060df Mon Sep 17 00:00:00 2001 From: Kozlov Dmitry Date: Thu, 9 Sep 2010 16:10:40 +0400 Subject: radius: implemented DM/CoA extensions --- accel-pptpd/triton/triton_p.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'accel-pptpd/triton/triton_p.h') diff --git a/accel-pptpd/triton/triton_p.h b/accel-pptpd/triton/triton_p.h index 0aa37b1..5e498fc 100644 --- a/accel-pptpd/triton/triton_p.h +++ b/accel-pptpd/triton/triton_p.h @@ -33,6 +33,7 @@ struct _triton_context_t struct list_head timers; struct list_head pending_handlers; struct list_head pending_timers; + struct list_head pending_calls; ucontext_t uctx; @@ -71,6 +72,14 @@ struct _triton_event_t struct list_head handlers; }; +struct _triton_ctx_call_t +{ + struct list_head entry; + + void *arg; + void (*func)(void *); +}; + typedef void * mempool_t; mempool_t *mempool_create(int size); void *mempool_alloc(mempool_t*); -- cgit v1.2.3