No description
Find a file
Daniel Flanagan 03a95d5d59
Export RCONConnection type and bump version (#1)
* Export RCONConnection type and bump version

* Remove trailing newline
2021-11-06 12:43:08 +10:00
src Export RCONConnection type and bump version (#1) 2021-11-06 12:43:08 +10:00
LICENSE Update LICENSE 2020-07-12 05:44:28 +10:00
nimrcon.nimble Export RCONConnection type and bump version (#1) 2021-11-06 12:43:08 +10:00
README.md Initial Commit 2020-07-12 06:02:36 +10:00

Nimrcon

Simple RCON in Nim

Usage

import nimrcon

let conn = newRCONConnection("local.host", 27015, "hunter2")

discard conn.exec("command") 
# by default returns Packet(size, id, type, body) object

var resp = conn.exec("command with args")
echo resp.toJSON # converting to JSON

Features

  • Simple
  • Missing support for Multi-packet response