(stream, origin, alt)
| 683 | } |
| 684 | |
| 685 | function onAltSvc(stream, origin, alt) { |
| 686 | const session = this[kOwner]; |
| 687 | if (session.destroyed) |
| 688 | return; |
| 689 | debugSessionObj(session, 'altsvc received: stream: %d, origin: %s, alt: %s', |
| 690 | stream, origin, alt); |
| 691 | session[kUpdateTimer](); |
| 692 | session.emit('altsvc', alt, origin, stream); |
| 693 | } |
| 694 | |
| 695 | function initOriginSet(session) { |
| 696 | let originSet = session[kState].originSet; |
nothing calls this directly
no test coverage detected
searching dependent graphs…