(outgoing)
| 914 | } |
| 915 | |
| 916 | function abortOutgoing(outgoing) { |
| 917 | while (outgoing.length) { |
| 918 | const req = outgoing.shift(); |
| 919 | req.destroy(new ConnResetException('aborted')); |
| 920 | } |
| 921 | } |
| 922 | |
| 923 | function socketOnEnd(server, socket, parser, state) { |
| 924 | const ret = parser.finish(); |
no test coverage detected
searching dependent graphs…