Index: /trunk/src/VBox/Runtime/r3/socket.cpp
===================================================================
--- /trunk/src/VBox/Runtime/r3/socket.cpp	(revision 39801)
+++ /trunk/src/VBox/Runtime/r3/socket.cpp	(revision 39802)
@@ -603,5 +603,5 @@
         uint8_t u8;
         int rc = RTStrToUInt8Ex(psz, &psz, 0, &u8);
-        if (rc != VINF_SUCCESS)
+        if (rc != VINF_SUCCESS && rc != VWRN_TRAILING_CHARS)
             return false;
         if (*psz != (i < 3 ? '.' : '\0'))
@@ -649,4 +649,5 @@
     if (rtSocketIsIPv4Numerical(pszAddress, &IPv4Quad))
     {
+        Log3(("rtSocketIsIPv4Numerical: %#x (%RTnaipv4)\n", pszAddress, IPv4Quad.u, IPv4Quad));
         RT_ZERO(*pAddr);
         pAddr->enmType      = RTNETADDRTYPE_IPV4;
@@ -671,4 +672,5 @@
         pAddr->uPort        = uPort;
         pAddr->uAddr.IPv4.u = ((struct in_addr *)pHostEnt->h_addr)->s_addr;
+        Log3(("gethostbyname: %s -> %#x (%RTnaipv4)\n", pszAddress, pAddr->uAddr.IPv4.u, pAddr->uAddr.IPv4));
     }
     else
@@ -1567,5 +1569,4 @@
     if (RT_SUCCESS(rc))
     {
-Log(("Calling connect()...\n%.*Rhxs\n", cbAddr, &u));
         if (connect(pThis->hNative, &u.Addr, cbAddr) != 0)
             rc = rtSocketError();
Index: /trunk/src/VBox/Runtime/r3/tcp.cpp
===================================================================
--- /trunk/src/VBox/Runtime/r3/tcp.cpp	(revision 39801)
+++ /trunk/src/VBox/Runtime/r3/tcp.cpp	(revision 39802)
@@ -824,5 +824,4 @@
      */
     RTSOCKET Sock;
-Log(("Calling rtSocketCreate\n"));
     rc = rtSocketCreate(&Sock, PF_INET, SOCK_STREAM, 0);
     if (RT_SUCCESS(rc))
@@ -830,7 +829,5 @@
         RTSocketSetInheritance(Sock, false /*fInheritable*/);
 
-Log(("Calling rtSocketConnect\n"));
         rc = rtSocketConnect(Sock, &Addr);
-Log(("rtSocketConnect returned\n"));
         if (RT_SUCCESS(rc))
         {
