Browse Source

ntk-console-server: Remove debugging info

Alexander von Gluck IV 10 years ago
parent
commit
2694b1cda4
1 changed files with 0 additions and 3 deletions
  1. 0
    3
      src/ntk-console-server.c

+ 0
- 3
src/ntk-console-server.c View File

@@ -140,14 +140,11 @@ handle_session(int session_fd)
140 140
 
141 141
 	rc = recv(session_fd, &packetIn, sizeof(packetIn), 0);
142 142
 
143
-	printf("%d bytes of data were received\n", rc);
144 143
 	if (rc < sizeof(packetIn)) {
145 144
 		perror("recv() failed");
146 145
 		exit(-1);
147 146
 	}
148 147
 	
149
-	printf("0x%x command received\n", packetIn.command);
150
-	
151 148
 	request_processing(session_fd, packetIn);
152 149
 }
153 150
 

Loading…
Cancel
Save