From c2299f292377ee90d4a555ef3a0d9a0d8b3ee7b5 Mon Sep 17 00:00:00 2001 From: Jelle Foks Date: Mon, 10 Feb 2025 15:02:59 -0800 Subject: [PATCH] Cleanup comments left over from #4830 (#4883) This cleans up two lines of commented out code leftover from verifying the localhost test. --- .../shared/modular/starboard_layer_posix_socket_abi_wrappers.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/starboard/shared/modular/starboard_layer_posix_socket_abi_wrappers.cc b/starboard/shared/modular/starboard_layer_posix_socket_abi_wrappers.cc index 12ec87d9f25..cc3a608669b 100644 --- a/starboard/shared/modular/starboard_layer_posix_socket_abi_wrappers.cc +++ b/starboard/shared/modular/starboard_layer_posix_socket_abi_wrappers.cc @@ -219,12 +219,10 @@ SB_EXPORT int __abi_wrap_getaddrinfo(const char* node, struct sockaddr_in* address = reinterpret_cast(musl_ai->ai_addr); address->sin_addr.s_addr = htonl(INADDR_LOOPBACK); - // address->sin_addr.s_addr = -1; } else if (family == MUSL_AF_INET6) { struct sockaddr_in6* address = reinterpret_cast(musl_ai->ai_addr); address->sin6_addr = IN6ADDR_LOOPBACK_INIT; - // address->sin6_addr.__in6_u.__u6_addr8[0] = 5; } if (*res == nullptr) { *res = musl_ai;