mirror of
https://github.com/hamburghammer/rcon.git
synced 2024-12-23 00:07:41 +01:00
Compare commits
2 commits
480da5084b
...
cde545b144
Author | SHA1 | Date | |
---|---|---|---|
cde545b144 | |||
3f1ed29b91 |
2 changed files with 10 additions and 8 deletions
|
@ -5,7 +5,7 @@ This is a fork from [james4k/rcon](https://github.com/james4k/rcon) with the sup
|
|||
|
||||
## Usage
|
||||
```golang
|
||||
// Espablish a connection.
|
||||
// Establish a connection.
|
||||
remoteConsole, err := rcon.Dial("127.0.0.1", "password")
|
||||
if err != nil {
|
||||
fmt.Println(err)
|
||||
|
@ -30,10 +30,10 @@ fmt.Println(response)
|
|||
```
|
||||
|
||||
## License
|
||||
This lib is licesed under the [MIT License](LICENSE)
|
||||
This lib is licensed under the [MIT License](LICENSE).
|
||||
|
||||
## Contributors
|
||||
If you should encaunter a bug or a missing feature dont hessitate to open an issue or even submit a pull-request.
|
||||
If you should encounter a bug or a missing feature don't hesitate to open an issue or even submit a pull-request.
|
||||
|
||||
|
||||
Special thx to [nhh](https://github.com/nhh) and [dnltinney](https://github.com/dnltinney) for the great help debugging this lib.
|
12
rcon_test.go
12
rcon_test.go
|
@ -7,6 +7,8 @@ import (
|
|||
"testing"
|
||||
)
|
||||
|
||||
const password = "password"
|
||||
|
||||
func startTestServer(fn func(net.Conn, *bytes.Buffer)) (string, error) {
|
||||
listener, err := net.Listen("tcp", "127.0.0.1:0")
|
||||
if err != nil {
|
||||
|
@ -36,7 +38,7 @@ func startTestServer(fn func(net.Conn, *bytes.Buffer)) (string, error) {
|
|||
if err != nil {
|
||||
return
|
||||
}
|
||||
if string(str[:len(str)-1]) != "blerg" {
|
||||
if string(str[:len(str)-1]) != password {
|
||||
requestID = -1
|
||||
}
|
||||
|
||||
|
@ -96,7 +98,7 @@ func TestAuth(t *testing.T) {
|
|||
t.Fatal(err)
|
||||
}
|
||||
|
||||
rc, err := Dial(addr, "blerg")
|
||||
rc, err := Dial(addr, password)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
@ -118,7 +120,7 @@ func TestMultipacket(t *testing.T) {
|
|||
t.Fatal(err)
|
||||
}
|
||||
|
||||
rc, err := Dial(addr, "blerg")
|
||||
rc, err := Dial(addr, password)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
@ -144,7 +146,7 @@ func TestMultipacket(t *testing.T) {
|
|||
t.Fatal(err)
|
||||
}
|
||||
|
||||
rc, err := Dial(addr, "blerg")
|
||||
rc, err := Dial(addr, password)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
@ -172,7 +174,7 @@ func TestMultipacket(t *testing.T) {
|
|||
t.Fatal(err)
|
||||
}
|
||||
|
||||
rc, err := Dial(addr, "blerg")
|
||||
rc, err := Dial(addr, password)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue