aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--openbsc/src/bsc_mgcp.c2
-rw-r--r--openbsc/src/gsm_data.c1
-rw-r--r--openbsc/src/vty_interface.c1
3 files changed, 3 insertions, 1 deletions
diff --git a/openbsc/src/bsc_mgcp.c b/openbsc/src/bsc_mgcp.c
index bdfe08483..d5e53c565 100644
--- a/openbsc/src/bsc_mgcp.c
+++ b/openbsc/src/bsc_mgcp.c
@@ -63,7 +63,7 @@ static const char *audio_name = "GSM-EFR/8000";
static int audio_payload = 97;
static int audio_loop = 0;
static int early_bind = 0;
-static int rtp_base_port = 0;
+static int rtp_base_port = 4000;
static char *forward_ip = NULL;
static char *config_file = "mgcp.cfg";
diff --git a/openbsc/src/gsm_data.c b/openbsc/src/gsm_data.c
index 18a3ac2c2..8330b5190 100644
--- a/openbsc/src/gsm_data.c
+++ b/openbsc/src/gsm_data.c
@@ -226,6 +226,7 @@ struct gsm_network *gsm_network_init(u_int16_t country_code, u_int16_t network_c
net->core_country_code = -1;
net->core_network_code = -1;
+ net->rtp_base_port = 4000;
return net;
}
diff --git a/openbsc/src/vty_interface.c b/openbsc/src/vty_interface.c
index e53e7c6f9..ef8f6b2d1 100644
--- a/openbsc/src/vty_interface.c
+++ b/openbsc/src/vty_interface.c
@@ -334,6 +334,7 @@ static int config_write_net(struct vty *vty)
vty_out(vty, " timer t3119 %u%s", gsmnet->T3119, VTY_NEWLINE);
vty_out(vty, " timer t3141 %u%s", gsmnet->T3141, VTY_NEWLINE);
vty_out(vty, " ipacc rtp_payload %u%s", gsmnet->rtp_payload, VTY_NEWLINE);
+ vty_out(vty, " rtp base %u%s", gsmnet->rtp_base_port, VTY_NEWLINE);
if (gsmnet->audio_length != 0) {
int i;