source_server 1.1.0 source_server: ^1.1.0 copied to clipboard
A dart implementation of Source's Query Protocol and RCON from the developer.valvesoftware.com wiki.
1.0.0 #
- Initial version, created by Stagehand
1.0.7 #
- Throw exception when writing to null
1.1.0 #
- Add support for MinecraftServer.
var server = MinecraftServer(InternetAddress('127.0.0.1'), 27015, 'mypassword');
await server.connect();
print(await server.send('say hello'));
server.close();
- Add skipFirst parameter for RconSocket to skip the first optionally packet.