This commit is contained in:
syuilo 2018-09-17 09:07:46 +09:00
parent 6f6cb71362
commit 5a99672025

View file

@ -45,6 +45,12 @@ module.exports = (server: http.Server) => {
ev.removeAllListeners();
});
connection.on('message', async (data) => {
if (data.utf8Data == 'ping') {
connection.send('pong');
}
});
const q = request.resourceURL.query as ParsedUrlQuery;
const [user, app] = await authenticate(q.i as string);