This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/spdy/lib/spdy/request.js
2019-08-11 20:48:02 +02:00

33 lines
527 B
JavaScript

'use strict'
function attachPush (req) {
var handle = req.socket._handle
handle.getStream(function (stream) {
stream.on('pushPromise', function (push) {
req.emit('push', push)
})
})
}
exports.onNewListener = function onNewListener (type) {
var req = this
if (type !== 'push') {
return
}
// Not first listener
if (req.listeners('push').length !== 0) {
return
}
if (!req.socket) {
req.on('socket', function () {
attachPush(req)
})
return
}
attachPush(req)
}