(code, lastStreamID, opaqueData)
| 918 | // be used. The opaqueData must either be a typed array or undefined |
| 919 | // (which will be checked elsewhere). |
| 920 | function submitGoaway(code, lastStreamID, opaqueData) { |
| 921 | if (this.destroyed) |
| 922 | return; |
| 923 | debugSessionObj(this, 'submitting goaway'); |
| 924 | this[kUpdateTimer](); |
| 925 | this[kHandle].goaway(code, lastStreamID, opaqueData); |
| 926 | } |
| 927 | |
| 928 | const proxySocketHandler = { |
| 929 | get(session, prop) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…