Skip to content

Commit

Permalink
Disable ipv6 dns resolution in the client
Browse files Browse the repository at this point in the history
  • Loading branch information
jp-bennett committed Apr 25, 2016
1 parent c5043e0 commit a554f0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/spa_comm.c
Expand Up @@ -98,7 +98,7 @@ send_spa_packet_tcp_or_udp(const char *spa_data, const int sd_len,

memset(&hints, 0, sizeof(struct addrinfo));

hints.ai_family = AF_UNSPEC; /* Allow IPv4 or IPv6 */
hints.ai_family = AF_INET; /* Allow IPv4 only */

if (options->spa_proto == FKO_PROTO_UDP)
{
Expand Down

0 comments on commit a554f0d

Please sign in to comment.