aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/mgcp_internal.h
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@gnumonks.org>2013-07-08 05:09:46 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-07-08 16:46:06 +0200
commit46bd4244a1cfeaa1eca6757c790589a15dd99a5a (patch)
treee2260af756ae8b57578f09d20b13e27680c02fd8 /openbsc/include/openbsc/mgcp_internal.h
parent1e61b256614ee58af46fa3a3ea2cba9c6d656018 (diff)
libmgcp: add enum mgcp_type and use it
This patch replaces the field 'is_transcoded' in the mgcp_endpoint structure by the enum mgcp_type, that can be further extended with new types.
Diffstat (limited to 'openbsc/include/openbsc/mgcp_internal.h')
-rw-r--r--openbsc/include/openbsc/mgcp_internal.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/openbsc/include/openbsc/mgcp_internal.h b/openbsc/include/openbsc/mgcp_internal.h
index 455bb53df..d5bd3ddc6 100644
--- a/openbsc/include/openbsc/mgcp_internal.h
+++ b/openbsc/include/openbsc/mgcp_internal.h
@@ -96,6 +96,11 @@ struct mgcp_rtp_tap {
struct sockaddr_in forward;
};
+enum mgcp_type {
+ MGCP_RTP_DEFAULT = 0,
+ MGCP_RTP_TRANSCODED,
+};
+
struct mgcp_endpoint {
int allocated;
uint32_t ci;
@@ -119,7 +124,7 @@ struct mgcp_endpoint {
*/
struct mgcp_rtp_end trans_bts;
struct mgcp_rtp_end trans_net;
- int is_transcoded;
+ enum mgcp_type type;
/* sequence bits */
struct mgcp_rtp_state net_state;