mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
[sim] Change default WS port number to 3300 (#2932)
This commit is contained in:
@@ -121,10 +121,10 @@ void WebServerClientTest::AttemptConnect() {
|
||||
}
|
||||
|
||||
struct sockaddr_in dest;
|
||||
uv::NameToAddr("localhost", 8080, &dest);
|
||||
uv::NameToAddr("localhost", 3300, &dest);
|
||||
m_tcp_client->Connect(dest, [this]() {
|
||||
m_tcp_connected = true;
|
||||
InitializeWebSocket("localhost", 8080, "/wpilibws");
|
||||
InitializeWebSocket("localhost", 3300, "/wpilibws");
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user