steam_rcon 1.0.3 copy "steam_rcon: ^1.0.3" to clipboard
steam_rcon: ^1.0.3 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: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
115
points
15
downloads

Documentation

API reference

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