1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-16 05:18:39 +00:00
Files
UXP/testing/web-platform/tests/websockets/constants.js
T

13 lines
359 B
JavaScript

//This file requires server-side substitutions and must be included as constants.js?pipe=sub
var PORT = "{{ports[ws][0]}}";
//FIXME: Add support for wss
var PORT_SSL = "{{ports[ws][0]}}";
var SCHEME_DOMAIN_PORT;
if (location.search == '?wss') {
SCHEME_DOMAIN_PORT = 'wss://{{host}}:' + PORT_SSL;
} else {
SCHEME_DOMAIN_PORT = 'ws://{{host}}:' + PORT;
}