summaryrefslogtreecommitdiffstats
path: root/package/tapi_sip/src/agent.h
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2011-02-07 21:47:54 +0000
committerJohn Crispin <john@openwrt.org>2011-02-07 21:47:54 +0000
commite651a9341a241ef5cefc1711d42e3f638aaba9b8 (patch)
tree6597330d9c4e70a48df28970d1b882986961e618 /package/tapi_sip/src/agent.h
parent0cd254bdee1f2575502e0c4c71e1ca2b7dfc5259 (diff)
downloadmaster-31e0f0ae-e651a9341a241ef5cefc1711d42e3f638aaba9b8.tar.gz
master-31e0f0ae-e651a9341a241ef5cefc1711d42e3f638aaba9b8.tar.bz2
master-31e0f0ae-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.h41
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