[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.
This commit is contained in:
Holger Hans Peter Freyther
2010-04-13 11:27:17 +02:00
parent 00c531709a
commit 2b57b3cea4

View File

@@ -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;