()
| 1397 | // added, an ORIGIN frame will add to the origins included in the origin |
| 1398 | // set. 421 responses will remove origins from the set. |
| 1399 | get originSet() { |
| 1400 | if (!this.encrypted || this.destroyed) |
| 1401 | return undefined; |
| 1402 | return ArrayFrom(initOriginSet(this)); |
| 1403 | } |
| 1404 | |
| 1405 | // True if the Http2Session is still waiting for the socket to connect |
| 1406 | get connecting() { |
nothing calls this directly
no test coverage detected