一个替换登入账号的代理服务器

This commit is contained in:
JunDao
2019-05-20 00:45:56 +08:00
parent bb7fffbce6
commit edc99fc773
7 changed files with 503 additions and 17 deletions

View File

@ -152,3 +152,9 @@ func (c *Client) JoinServer(addr string, port int) (err error) {
}
}
}
// Conn return the MCConn of the Client.
// Only used when you want to handle the packets by yourself
func (c *Client) Conn() *net.Conn {
return c.conn
}