[package]: block-extroot: Fixed hang when no modules in on either squashfs or jffs2...
[openwrt.git] / package / tapi_sip / src / session.h
1 #ifndef __SESSION_H__
2 #define __SESSION_H__
3
4 struct agent;
5 struct session;
6 struct tapi_device;
7
8 struct session *session_alloc(struct tapi_device *, struct agent *caller,
9         struct agent *callee, void (*release)(struct session *));
10 void session_hangup(struct session *, struct agent *);
11 void session_accept(struct session *, struct agent *);
12 void session_free(struct session *);
13
14 #endif