Browse Source

Merge pull request #17 from gany-games/master

Fix ENET_SOCKOPT_IPV6_V6ONLY log
Coburn 5 years ago
parent
commit
7a81c45b19
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/Native/enet.h

+ 1 - 1
Source/Native/enet.h

@@ -3883,7 +3883,7 @@ extern "C" {
 		host->socket = enet_socket_create(ENET_SOCKET_TYPE_DATAGRAM);
 
 		if (host->socket != ENET_SOCKET_NULL) {
-			ENET_LOG_TRACE("Switching socket to IPv6 version 6 only mode");
+			ENET_LOG_TRACE("Switching socket to IPv4 & IPv6 dual stack mode");
 			enet_socket_set_option(host->socket, ENET_SOCKOPT_IPV6_V6ONLY, 0);
 		}