From 217d71201206731c90d57dde089c3fd82370815b Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Thu, 5 Aug 2010 03:27:41 +0800 Subject: mgcp: Rename the bind method to show it is only binding for the bts port --- openbsc/include/openbsc/mgcp.h | 2 +- openbsc/src/mgcp/mgcp_network.c | 3 +-- openbsc/src/mgcp/mgcp_vty.c | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/openbsc/include/openbsc/mgcp.h b/openbsc/include/openbsc/mgcp.h index 81741ac75..bce7d43d2 100644 --- a/openbsc/include/openbsc/mgcp.h +++ b/openbsc/include/openbsc/mgcp.h @@ -111,7 +111,7 @@ struct mgcp_config *mgcp_config_alloc(void); int mgcp_parse_config(const char *config_file, struct mgcp_config *cfg); int mgcp_vty_init(void); int mgcp_endpoints_allocate(struct mgcp_config *cfg); -int mgcp_bind_rtp_port(struct mgcp_endpoint *endp, int rtp_port); +int mgcp_bind_bts_rtp_port(struct mgcp_endpoint *endp, int rtp_port); void mgcp_free_endp(struct mgcp_endpoint *endp); /* diff --git a/openbsc/src/mgcp/mgcp_network.c b/openbsc/src/mgcp/mgcp_network.c index 88a331c5b..2fe5f116d 100644 --- a/openbsc/src/mgcp/mgcp_network.c +++ b/openbsc/src/mgcp/mgcp_network.c @@ -337,9 +337,8 @@ cleanup0: return -1; } -int mgcp_bind_rtp_port(struct mgcp_endpoint *endp, int rtp_port) +int mgcp_bind_bts_rtp_port(struct mgcp_endpoint *endp, int rtp_port) { endp->bts_end.local_port = rtp_port; - endp->net_end.local_port = rtp_port; return bind_rtp(endp); } diff --git a/openbsc/src/mgcp/mgcp_vty.c b/openbsc/src/mgcp/mgcp_vty.c index ffb94d934..d4c03cbc9 100644 --- a/openbsc/src/mgcp/mgcp_vty.c +++ b/openbsc/src/mgcp/mgcp_vty.c @@ -314,7 +314,7 @@ int mgcp_parse_config(const char *config_file, struct mgcp_config *cfg) int rtp_port; rtp_port = rtp_calculate_port(ENDPOINT_NUMBER(endp), g_cfg->rtp_base_port); - if (mgcp_bind_rtp_port(endp, rtp_port) != 0) { + if (mgcp_bind_bts_rtp_port(endp, rtp_port) != 0) { LOGP(DMGCP, LOGL_FATAL, "Failed to bind: %d\n", rtp_port); return -1; } -- cgit v1.2.3