aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/tests
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-04-06 11:06:11 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-04-06 11:06:11 +0200
commit581e58d16645d8cd0e1a62776f4d2a570f3b2445 (patch)
tree26d169375a88a9ba3ff1c940f894c3489a28ed22 /openbsc/tests
parente308bb466ab46851abd6eeeb6601e3ed3c7bfd51 (diff)
Revert "nat: Remember where the BTS is listening for things."
Remove the code to parse port as we need to discover the BTS behind the nat and most likely it will have a different port than the one advertised by the BTS. This reverts commit c6a1fe773d16eb20d4cb1d3097761419436f4537.
Diffstat (limited to 'openbsc/tests')
-rw-r--r--openbsc/tests/bsc-nat/bsc_nat_test.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/openbsc/tests/bsc-nat/bsc_nat_test.c b/openbsc/tests/bsc-nat/bsc_nat_test.c
index a859d072d..593963291 100644
--- a/openbsc/tests/bsc-nat/bsc_nat_test.c
+++ b/openbsc/tests/bsc-nat/bsc_nat_test.c
@@ -505,19 +505,6 @@ static void test_mgcp_parse(void)
}
}
-static void test_mgcp_parse_port(void)
-{
- int port;
-
- fprintf(stderr, "Test MGCP port parsing.\n");
-
- port = bsc_mgcp_extract_port(mdcx_resp);
- if (port != 4002) {
- fprintf(stderr, "Could not parse port. Got: %d\n", port);
- abort();
- }
-}
-
int main(int argc, char **argv)
{
struct debug_target *stderr_target;
@@ -533,7 +520,6 @@ int main(int argc, char **argv)
test_mgcp_find();
test_mgcp_rewrite();
test_mgcp_parse();
- test_mgcp_parse_port();
return 0;
}