Skip to content
Snippets Groups Projects
Commit bf1c11aa authored by Michael Tüxen's avatar Michael Tüxen
Browse files

Use the local IP address for binding sockets.

Using the explicit local IP address instead of the wildcard
address doesn't change the behavior for UDP/TCP, but for
SCTP it forces the SUT to be single homed.
parent 63fb81df
No related branches found
No related tags found
No related merge requests found
......@@ -259,7 +259,7 @@ static void finalize_ipv4_config(struct config *config)
config->live_prefix_len =
netmask_to_prefix(config->live_netmask_ip_string);
config->live_gateway_ip = ipv4_parse(config->live_gateway_ip_string);
config->live_bind_ip = ipv4_parse("0.0.0.0");
config->live_bind_ip = config->live_local_ip;
config->live_connect_ip = config->live_remote_ip;
config->socket_domain = AF_INET;
config->wire_protocol = AF_INET;
......@@ -279,7 +279,7 @@ static void finalize_ipv4_mapped_ipv6_config(struct config *config)
config->live_prefix_len =
netmask_to_prefix(config->live_netmask_ip_string);
config->live_gateway_ip = ipv4_parse(config->live_gateway_ip_string);
config->live_bind_ip = ipv6_parse("::");
config->live_bind_ip = ipv6_map_from_ipv4(config->live_local_ip);
config->live_connect_ip = ipv6_map_from_ipv4(config->live_remote_ip);
config->socket_domain = AF_INET6;
config->wire_protocol = AF_INET;
......@@ -298,7 +298,7 @@ static void finalize_ipv6_config(struct config *config)
config->live_prefix_len = DEFAULT_V6_LIVE_PREFIX_LEN;
config->live_gateway_ip = ipv6_parse(config->live_gateway_ip_string);
config->live_bind_ip = ipv6_parse("::");
config->live_bind_ip = config->live_local_ip;
config->live_connect_ip = config->live_remote_ip;
config->socket_domain = AF_INET6;
config->wire_protocol = AF_INET6;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment