aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--protocol.md3
-rw-r--r--server/discover/src/main.rs2
2 files changed, 2 insertions, 3 deletions
diff --git a/protocol.md b/protocol.md
index 4e5ab475..9562ab6f 100644
--- a/protocol.md
+++ b/protocol.md
@@ -45,9 +45,8 @@ sending a packet to update that of the other player.
- 443: All uses with TLS
- 27032: Game Server Websocket
-- 27033: Registry API HTTP
+- 27033: Registry API HTTP / Local dicovery service
- 27034: Lobby Server Websocket
-- 27035: Local discovery service API
## Binary Protocol
diff --git a/server/discover/src/main.rs b/server/discover/src/main.rs
index 1c23de85..fabf7946 100644
--- a/server/discover/src/main.rs
+++ b/server/discover/src/main.rs
@@ -83,7 +83,7 @@ async fn async_main() -> Result<!> {
}
});
- let listener = TcpListener::bind("127.0.0.1:27035").await?;
+ let listener = TcpListener::bind("127.0.0.1:27033").await?;
loop {
let (stream, _) = listener.accept().await?;
let entries = entries.clone();