aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@gnumonks.org>2012-08-19 00:12:18 +0200
committerPablo Neira Ayuso <pablo@gnumonks.org>2012-08-19 00:12:18 +0200
commit557e5c127a5b6cd33deb85d047dba36e2c43a862 (patch)
treeff6309c18d9b432586cfc45fd7778c1c7dd8e9ee /src
parenta7c17849378fc6eb6c14e513e87400886b065c58 (diff)
channel: define CHAN_SIGN_OML and CHAN_SIGN_RSL internally
These definitionsare not relevant for external client applications using the library.
Diffstat (limited to 'src')
-rw-r--r--src/channel/abis_ipa_client.c3
-rw-r--r--src/channel/abis_ipa_server.c3
2 files changed, 6 insertions, 0 deletions
diff --git a/src/channel/abis_ipa_client.c b/src/channel/abis_ipa_client.c
index 4b3fb9d..9c24a92 100644
--- a/src/channel/abis_ipa_client.c
+++ b/src/channel/abis_ipa_client.c
@@ -16,6 +16,9 @@
#include <osmocom/netif/ipa.h>
#include <osmocom/netif/ipa_unit.h>
+#define CHAN_SIGN_OML 0
+#define CHAN_SIGN_RSL 1
+
/* default IPA cli ports. */
#define IPA_TCP_PORT_OML 3002
#define IPA_TCP_PORT_RSL 3003
diff --git a/src/channel/abis_ipa_server.c b/src/channel/abis_ipa_server.c
index 1b0930f..7b163ee 100644
--- a/src/channel/abis_ipa_server.c
+++ b/src/channel/abis_ipa_server.c
@@ -15,6 +15,9 @@
#include <osmocom/netif/stream.h>
#include <osmocom/netif/ipa.h>
+#define CHAN_SIGN_OML 0
+#define CHAN_SIGN_RSL 1
+
/* default IPA srv ports. */
#define IPA_TCP_PORT_OML 3002
#define IPA_TCP_PORT_RSL 3003