Last active
July 8, 2025 02:08
-
-
Save lanmower/d700581f6fd895c7eaced819f7265c92 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "schema": [ | |
| { | |
| "mode": "server", | |
| "proto": "udp", | |
| "port": "27005", | |
| "host": "127.0.0.1", | |
| "secret": "123" | |
| }, | |
| { | |
| "mode": "server", | |
| "proto": "udp", | |
| "port": "27015", | |
| "host": "127.0.0.1", | |
| "secret": "123" | |
| }, | |
| { | |
| "mode": "server", | |
| "proto": "tcp", | |
| "port": "27015", | |
| "host": "127.0.0.1", | |
| "secret": "123" | |
| } | |
| ] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "schema": [ | |
| { | |
| "mode": "client", | |
| "proto": "udp", | |
| "port": "27005", | |
| "serverport": "27005", | |
| "publicKey":"insertprivatekeyhere" | |
| }, | |
| { | |
| "mode": "client", | |
| "proto": "udp", | |
| "port": "27015", | |
| "serverport": "27015", | |
| "publicKey":"insertprivatekeyhere" | |
| }, | |
| { | |
| "mode": "client", | |
| "proto": "tcp", | |
| "port": "27015", | |
| "serverport": "27015", | |
| "publicKey":"insertprivatekeyhere" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment