This commit is contained in:
shoopea 2020-06-14 16:44:40 +02:00
parent 6b79c1a54a
commit 231c1c5605

13
main.go
View File

@ -8,8 +8,19 @@ import (
func main() {
conn, err := net.Dial("tcp", "poop.siteop.biz:3977")
failError(err, "net.Dial")
logInfoDebug("Connected to poop.siteop.biz:3977")
//send auth
p := PacketAdminJoin{
PType: AdminPacketAdminJoin,
Password: "plop",
AppName: "gottdad",
AppVersion: "alpha",
}
_, err = conn.Write(p.Bytes())
failError(err, "conn.Write")
logInfoDebug("Authentication sent")
// listen for reply
message, _ := bufio.NewReader(conn).ReadString('\n')
logInfoDebug("Message from server: %s", message)