(socket, state)
| 900 | } |
| 901 | |
| 902 | function socketOnClose(socket, state) { |
| 903 | debug('server socket close'); |
| 904 | freeParser(socket.parser, null, socket); |
| 905 | abortIncoming(state.incoming); |
| 906 | abortOutgoing(state.outgoing); |
| 907 | } |
| 908 | |
| 909 | function abortIncoming(incoming) { |
| 910 | while (incoming.length) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…