use NULL ip address for ip232 server
inet_addr("") is treated as 0xffffffff (INADDR_BROADCAST) which probably isn't what you want.
This commit is contained in:
parent
6cb72448a3
commit
c48aeb7188
@ -93,7 +93,7 @@ int ip232_init_conn(modem_config *cfg)
|
|||||||
LOG_ENTER();
|
LOG_ENTER();
|
||||||
LOG(LOG_INFO, "Opening ip232 device");
|
LOG(LOG_INFO, "Opening ip232 device");
|
||||||
port = atoi(cfg->dce_data.tty);
|
port = atoi(cfg->dce_data.tty);
|
||||||
rc = ip_init_server_conn("", port);
|
rc = ip_init_server_conn(NULL, port);
|
||||||
if (rc < 0) {
|
if (rc < 0) {
|
||||||
ELOG(LOG_FATAL, "Could not initialize ip232 server socket");
|
ELOG(LOG_FATAL, "Could not initialize ip232 server socket");
|
||||||
exit(-1);
|
exit(-1);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user