steam_rcon 1.0.4 copy "steam_rcon: ^1.0.4" to clipboard
steam_rcon: ^1.0.4 copied to clipboard

Dart implementation of the Source RCON protocol for communicating with game servers. Supports authentication, command sending, automatic reconnection, and network monitoring.

example/main.dart

import 'package:steam_rcon/steam_rcon.dart';

void main() async {
  final client = RconClient('127.0.0.1', port: 25575);

  await client.connect();

  final authenticated = await client.authenticate('your_rcon_password');
  if (!authenticated) {
    print('❌ Authentication failed');
    return;
  }

  final response = await client.sendCommand('status');
  print('📡 Server response: $response');

  client.disconnect();
}
0
likes
45
points
1
downloads

Publisher

unverified uploader

Weekly Downloads

Dart implementation of the Source RCON protocol for communicating with game servers. Supports authentication, command sending, automatic reconnection, and network monitoring.

Repository (GitHub)
View/report issues

Topics

#rcon #server #gameserver #networking #steam

License

MIT (license)

Dependencies

connectivity_plus

More

Packages that depend on steam_rcon