steam_rcon 1.0.1 copy "steam_rcon: ^1.0.1" to clipboard
steam_rcon: ^1.0.1 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
0
points
15
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

unknown (license)

Dependencies

connectivity_plus

More

Packages that depend on steam_rcon