mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-06 08:11:32 +02:00
15 lines
384 B
C
15 lines
384 B
C
|
#ifndef __SESSION_H__
|
||
|
#define __SESSION_H__
|
||
|
|
||
|
struct agent;
|
||
|
struct session;
|
||
|
struct tapi_device;
|
||
|
|
||
|
struct session *session_alloc(struct tapi_device *, struct agent *caller,
|
||
|
struct agent *callee, void (*release)(struct session *));
|
||
|
void session_hangup(struct session *, struct agent *);
|
||
|
void session_accept(struct session *, struct agent *);
|
||
|
void session_free(struct session *);
|
||
|
|
||
|
#endif
|