ntk-console-server: Remove debugging info

This commit is contained in:
Alexander von Gluck IV 2014-09-15 17:43:43 -05:00
parent 9439a67b34
commit 2694b1cda4

View File

@ -140,14 +140,11 @@ handle_session(int session_fd)
rc = recv(session_fd, &packetIn, sizeof(packetIn), 0); rc = recv(session_fd, &packetIn, sizeof(packetIn), 0);
printf("%d bytes of data were received\n", rc);
if (rc < sizeof(packetIn)) { if (rc < sizeof(packetIn)) {
perror("recv() failed"); perror("recv() failed");
exit(-1); exit(-1);
} }
printf("0x%x command received\n", packetIn.command);
request_processing(session_fd, packetIn); request_processing(session_fd, packetIn);
} }