()
| 368 | * Tests the connection to the server and returns the CPONG response. |
| 369 | */ |
| 370 | public TesterAjpMessage cping() throws IOException { |
| 371 | // Send the ping message |
| 372 | socket.getOutputStream().write(AJP_CPING); |
| 373 | // Read the response |
| 374 | return readMessage(); |
| 375 | } |
| 376 | |
| 377 | /* |
| 378 | * Reads a message from the server. |
no test coverage detected