Index: /trunk/ntripserver/ntripserver.c
===================================================================
--- /trunk/ntripserver/ntripserver.c	(revision 9451)
+++ /trunk/ntripserver/ntripserver.c	(revision 9452)
@@ -1706,20 +1706,4 @@
         fprintf(stderr, "Control connection read error\n");
         return;
-      }
-    }
-    else if ((nBufferBytes) && (outmode == TCPIP)) {
-      int i;
-      if ((i = send(sock, buffer, (size_t) nBufferBytes, MSG_DONTWAIT)) != nBufferBytes) {
-        if (i < 0) {
-          if (errno != EAGAIN) {
-            perror("WARNING: could not send data to IP server and port");
-            return;
-          }
-        } else if (i) {
-          memmove(buffer, buffer + i, (size_t) (nBufferBytes - i));
-          nBufferBytes -= i;
-        }
-      } else {
-        nBufferBytes = 0;
       }
     }
