aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-04-13 11:27:17 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-04-13 11:27:17 +0200
commit2b57b3cea40eec6deeee2ab2aa505d3a3887ffca (patch)
treee28e73b06183432db4e224377884168a39f34978
parent00c531709a0b1b2c94c673a683fa984648b416c0 (diff)
[bsc_msc_ip] Remove the possible dangerous -P option for the BSC
We always want to handle the CRCX the way we want to without allocating a BSC proxy process. The default value of 1 is fine for the bsc_msc_ip and we should not allow to set it.
-rw-r--r--openbsc/src/bsc_msc_ip.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/openbsc/src/bsc_msc_ip.c b/openbsc/src/bsc_msc_ip.c
index 50ea36b45..565b650d3 100644
--- a/openbsc/src/bsc_msc_ip.c
+++ b/openbsc/src/bsc_msc_ip.c
@@ -908,14 +908,13 @@ static void handle_options(int argc, char** argv)
{"config-file", 1, 0, 'c'},
{"disable-color", 0, 0, 's'},
{"timestamp", 0, 0, 'T'},
- {"rtp-proxy", 0, 0, 'P'},
{"msc", 1, 0, 'm'},
{"local", 1, 0, 'l'},
{"log-level", 1, 0, 'e'},
{0, 0, 0, 0}
};
- c = getopt_long(argc, argv, "hd:sTPc:m:l:e:",
+ c = getopt_long(argc, argv, "hd:sTc:m:l:e:",
long_options, &option_index);
if (c == -1)
break;