From c48aeb718841c8f25f4178bd547d24eda9a8afd2 Mon Sep 17 00:00:00 2001 From: ksherlock Date: Mon, 8 May 2017 22:09:20 -0400 Subject: [PATCH] use NULL ip address for ip232 server inet_addr("") is treated as 0xffffffff (INADDR_BROADCAST) which probably isn't what you want. --- src/ip232.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ip232.c b/src/ip232.c index 07eb181..9005bcb 100644 --- a/src/ip232.c +++ b/src/ip232.c @@ -93,7 +93,7 @@ int ip232_init_conn(modem_config *cfg) LOG_ENTER(); LOG(LOG_INFO, "Opening ip232 device"); port = atoi(cfg->dce_data.tty); - rc = ip_init_server_conn("", port); + rc = ip_init_server_conn(NULL, port); if (rc < 0) { ELOG(LOG_FATAL, "Could not initialize ip232 server socket"); exit(-1);