https://github.com/trojan295/zigrcon
A simple Valve/Minecraft RCON client in Zig
https://github.com/trojan295/zigrcon
Last synced: 2 months ago
JSON representation
A simple Valve/Minecraft RCON client in Zig
- Host: GitHub
- URL: https://github.com/trojan295/zigrcon
- Owner: Trojan295
- Created: 2024-05-31T14:44:50.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-31T14:52:32.000Z (about 1 year ago)
- Last Synced: 2025-02-14T17:43:14.911Z (4 months ago)
- Language: Zig
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# zigrcon
This is an implementation of the [Source RCON Protocol](https://developer.valvesoftware.com/wiki/Source_RCON_Protocol).
Done to give Zig a try.## Usage
```bash
zig run main.zig -- address:port password
``````bash
$ zig run main.zig -- localhost:25575 secret_password
Connected to localhost:25575
> time query day
The time is 77
> ^C```