From a25d579ab90305e6742e96b715ffd2e7fea0ef39 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Tue, 19 Oct 2010 17:48:13 +0200 Subject: nat: Convert the ip to host order to allow to bind to other ips --- openbsc/src/nat/bsc_nat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbsc/src/nat/bsc_nat.c b/openbsc/src/nat/bsc_nat.c index 1baf3c928..b8a6cfc7b 100644 --- a/openbsc/src/nat/bsc_nat.c +++ b/openbsc/src/nat/bsc_nat.c @@ -1257,7 +1257,7 @@ int main(int argc, char **argv) bsc_msc_connect(nat->msc_con); /* wait for the BSC */ - rc = make_sock(&bsc_listen, IPPROTO_TCP, local_addr.s_addr, + rc = make_sock(&bsc_listen, IPPROTO_TCP, ntohl(local_addr.s_addr), 5000, ipaccess_listen_bsc_cb); if (rc != 0) { fprintf(stderr, "Failed to listen for BSC.\n"); -- cgit v1.2.3