(server, socket, parser, state, d)
| 939 | } |
| 940 | |
| 941 | function socketOnData(server, socket, parser, state, d) { |
| 942 | assert(!socket._paused); |
| 943 | debug('SERVER socketOnData %d', d.length); |
| 944 | |
| 945 | const ret = parser.execute(d); |
| 946 | onParserExecuteCommon(server, socket, parser, state, ret, d); |
| 947 | } |
| 948 | |
| 949 | function onRequestTimeout(socket) { |
| 950 | // socketOnError has additional logic and will call socket.destroy(err). |
nothing calls this directly
no test coverage detected
searching dependent graphs…