Aggiornamento alla versione reale
[gapil.git] / listati / ServEcho.c
index 917c7c4d00c4b5497ee26fb2bbf7a791b6765853..686c14ae05514f2b6af972ffe0b716e1d3a242e3 100644 (file)
@@ -1,10 +1,19 @@
 void ServEcho(int sockfd) {
     char buffer[MAXLINE];
     int nread, nwrite;
-    
+    char debug[MAXLINE+20];
     /* main loop, reading 0 char means client close connection */
     while ( (nread = read(sockfd, buffer, MAXLINE)) != 0) {
-        nwrite = FullWrite(sockfd, buffer, nread);
+       nwrite = FullWrite(sockfd, buffer, nread);
+       if (debugging) {
+           buffer[nread] = 0;
+           snprintf(debug, MAXLINE+20, "Letti %d byte, %s", nread, buffer);
+           if (demonize) {          /* go daemon */
+               syslog(LOG_DEBUG, debug);
+           } else {
+               printf("%s", debug);
+           }
+       }
     }
     return;
 }