[packages] libtool: I don't know what crackhead thought that relinking with /usr...
[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
This page took 0.042649 seconds and 5 git commands to generate.