(conn)
| 47 | } |
| 48 | |
| 49 | function onconnection(conn) { |
| 50 | conn.write('hi'); // Let the client know we're ready. |
| 51 | conn.resume(); |
| 52 | // |
| 53 | // Server received client connection |
| 54 | // |
| 55 | checkDestroyedWriteWraps(0, 'server got connection'); |
| 56 | } |
| 57 | |
| 58 | function onconnect() { |
| 59 | // |
nothing calls this directly
no test coverage detected