1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-06 08:11:32 +02:00
openwrt-xburst/package/tapi_sip/src/session.h

15 lines
384 B
C
Raw Normal View History

#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