(settings, callback)
| 903 | |
| 904 | // Submits a SETTINGS frame to be sent to the remote peer. |
| 905 | function submitSettings(settings, callback) { |
| 906 | if (this.destroyed) |
| 907 | return; |
| 908 | debugSessionObj(this, 'submitting settings'); |
| 909 | this[kUpdateTimer](); |
| 910 | updateSettingsBuffer(settings); |
| 911 | if (!this[kHandle].settings(settingsCallback.bind(this, callback))) { |
| 912 | this.destroy(new ERR_HTTP2_MAX_PENDING_SETTINGS_ACK()); |
| 913 | } |
| 914 | } |
| 915 | |
| 916 | // Submit a GOAWAY frame to be sent to the remote peer. |
| 917 | // If the lastStreamID is set to <= 0, then the lastProcStreamID will |
nothing calls this directly
no test coverage detected