From 5e63f921f08ef5edd03ff18fe1f85c81461e3957 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Wed, 21 Apr 2010 15:45:26 +0800 Subject: [nat] Add unit test to forward Proto Error messages back both ways. --- openbsc/tests/bsc-nat/bsc_nat_test.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'openbsc/tests/bsc-nat/bsc_nat_test.c') diff --git a/openbsc/tests/bsc-nat/bsc_nat_test.c b/openbsc/tests/bsc-nat/bsc_nat_test.c index aabc1304a..7ff2c200f 100644 --- a/openbsc/tests/bsc-nat/bsc_nat_test.c +++ b/openbsc/tests/bsc-nat/bsc_nat_test.c @@ -96,6 +96,12 @@ static const u_int8_t connnection_it[] = { 0x00, 0x00, 0x00, 0x00, }; +/* error in both directions */ +static const u_int8_t proto_error[] = { + 0x00, 0x05, 0xfd, + 0x0f, 0x22, 0x33, 0x44, 0x00, +}; + /* MGCP wrap... */ static const u_int8_t mgcp_msg[] = { 0x00, 0x03, 0xfc, @@ -176,6 +182,19 @@ static const struct filter_result results[] = { .dir = DIR_MSC, .result = 0, }, + { + .data = proto_error, + .length = ARRAY_SIZE(proto_error), + .dir = DIR_BSC, + .result = 0, + }, + { + .data = proto_error, + .length = ARRAY_SIZE(proto_error), + .dir = DIR_MSC, + .result = 0, + }, + }; static void test_filter(void) -- cgit v1.2.3