diff options
author | John Crispin <john@openwrt.org> | 2011-02-07 21:47:54 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2011-02-07 21:47:54 +0000 |
commit | e651a9341a241ef5cefc1711d42e3f638aaba9b8 (patch) | |
tree | 6597330d9c4e70a48df28970d1b882986961e618 /package/tapi_sip/src/agent.h | |
parent | 0cd254bdee1f2575502e0c4c71e1ca2b7dfc5259 (diff) | |
download | upstream-e651a9341a241ef5cefc1711d42e3f638aaba9b8.tar.gz upstream-e651a9341a241ef5cefc1711d42e3f638aaba9b8.tar.bz2 upstream-e651a9341a241ef5cefc1711d42e3f638aaba9b8.zip |
* drop libtapi and tapi_sip (moved to external git) * add build variants to pjsip * split tapi_dev audio driver out of patch into src/
SVN-Revision: 25412
Diffstat (limited to 'package/tapi_sip/src/agent.h')
-rw-r--r-- | package/tapi_sip/src/agent.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/package/tapi_sip/src/agent.h b/package/tapi_sip/src/agent.h deleted file mode 100644 index 795994178e..0000000000 --- a/package/tapi_sip/src/agent.h +++ /dev/null @@ -1,41 +0,0 @@ -#ifndef __AGENT_H__ -#define __AGENT_H__ - -#include "agent.h" - -struct session; -struct agent; - -struct agent_ops { - int (*invite)(struct agent *, struct session *); - int (*accept)(struct agent *, struct session *); - int (*hangup)(struct agent *, struct session *); - - int (*get_endpoint)(struct agent *, struct session *); -}; - -struct agent { - const struct agent_ops *ops; -}; - -static inline int agent_invite(struct agent *agent, struct session *session) -{ - return agent->ops->invite(agent, session); -} - -static inline int agent_accept(struct agent *agent, struct session *session) -{ - return agent->ops->accept(agent, session); -} - -static inline int agent_hangup(struct agent *agent, struct session *session) -{ - return agent->ops->hangup(agent, session); -} - -static inline int agent_get_endpoint(struct agent *agent, struct session *session) -{ - return agent->ops->get_endpoint(agent, session); -} - -#endif |