aboutsummaryrefslogtreecommitdiffstats
path: root/src/channel
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@gnumonks.org>2012-08-19 00:31:35 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2012-08-19 00:49:58 +0200
commitd73c757e6daff089ebbe0af8f4fcaf4a50ec2d6c (patch)
tree0112ea46d15e17720aad6bfb7686ec6c5efa3c59 /src/channel
parentc05485c90c17e4fafbf71867e223a6e148c2ca43 (diff)
channel: rename CHAN_* to OSMO_CHAN_* for correct namespace policy
Just to avoid unlikely possible problems while using this library with any other that decided to define the CHAN_* constants.
Diffstat (limited to 'src/channel')
-rw-r--r--src/channel/abis_ipa_client.c2
-rw-r--r--src/channel/abis_ipa_server.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/channel/abis_ipa_client.c b/src/channel/abis_ipa_client.c
index 9c24a92..2a971c7 100644
--- a/src/channel/abis_ipa_client.c
+++ b/src/channel/abis_ipa_client.c
@@ -358,7 +358,7 @@ static int rsl_read_cb(struct osmo_stream_cli *conn)
}
struct osmo_chan_type chan_abis_ipa_cli = {
- .type = CHAN_ABIS_IPA_CLI,
+ .type = OSMO_CHAN_ABIS_IPA_CLI,
.name = "A-bis IPA client",
.datasiz = sizeof(struct chan_abis_ipa_cli),
.create = chan_abis_ipa_cli_create,
diff --git a/src/channel/abis_ipa_server.c b/src/channel/abis_ipa_server.c
index 7b163ee..7e21f49 100644
--- a/src/channel/abis_ipa_server.c
+++ b/src/channel/abis_ipa_server.c
@@ -510,7 +510,7 @@ static int rsl_read_cb(struct osmo_stream_srv *conn)
}
struct osmo_chan_type chan_abis_ipa_srv = {
- .type = CHAN_ABIS_IPA_SRV,
+ .type = OSMO_CHAN_ABIS_IPA_SRV,
.name = "A-bis IPA server",
.datasiz = sizeof(struct chan_abis_ipa_srv),
.create = chan_abis_ipa_srv_create,