Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/websocket/nodejs_websocket_echo_server.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function hexDump(bytes) {
}

var decoder = new TextDecoder('utf-8');
var port = 8088;
var port = 8089;
var ws = require('ws');
var wss = new ws.WebSocketServer({ port: port });
console.log('WebSocket server listening on ws://localhost:' + port + '/');
Expand Down
2 changes: 1 addition & 1 deletion test/websocket/test_websocket_send.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ int main()
EmscriptenWebSocketCreateAttributes attr;
emscripten_websocket_init_create_attributes(&attr);

const char *url = "ws://localhost:8088/";
const char *url = "ws://localhost:8089/";
attr.url = url;
attr.protocols = "binary,base64"; // We don't really use a special protocol on the server backend in this test, but check that it can be passed.

Expand Down