aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/mgcp.h
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@gnumonks.org>2013-08-02 21:14:14 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-08-27 12:21:43 +0200
commit326b5d80b38727b1f7b840d00c90ac135d0d638c (patch)
tree985796d0b9b2e88c77814469f62b9c079f726f3d /openbsc/include/openbsc/mgcp.h
parentd81fec021ee11c3d818044b4494317e6ed81cfb7 (diff)
libmgcp: add enum mgcp_role
This enum indicates if the mgcp is running on the BSC or the BSC-NAT.
Diffstat (limited to 'openbsc/include/openbsc/mgcp.h')
-rw-r--r--openbsc/include/openbsc/mgcp.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/openbsc/include/openbsc/mgcp.h b/openbsc/include/openbsc/mgcp.h
index 811dcfda7..4e22e0f5e 100644
--- a/openbsc/include/openbsc/mgcp.h
+++ b/openbsc/include/openbsc/mgcp.h
@@ -125,6 +125,11 @@ struct mgcp_trunk_config {
struct mgcp_endpoint *endpoints;
};
+enum mgcp_role {
+ MGCP_BSC = 0,
+ MGCP_BSC_NAT,
+};
+
struct mgcp_config {
int source_port;
char *local_ip;
@@ -162,11 +167,14 @@ struct mgcp_config {
/* only used for start with a static configuration */
int last_net_port;
int last_bts_port;
+
+ enum mgcp_role role;
};
/* config management */
struct mgcp_config *mgcp_config_alloc(void);
-int mgcp_parse_config(const char *config_file, struct mgcp_config *cfg);
+int mgcp_parse_config(const char *config_file, struct mgcp_config *cfg,
+ enum mgcp_role role);
int mgcp_vty_init(void);
int mgcp_endpoints_allocate(struct mgcp_trunk_config *cfg);
void mgcp_free_endp(struct mgcp_endpoint *endp);