(addr string, user_type int16)
| 55 | } |
| 56 | |
| 57 | func (this *TcpClientMgr) Connect(addr string, user_type int16) { |
| 58 | go this.connect(addr, user_type) |
| 59 | } |
| 60 | |
| 61 | func (this *TcpClientMgr) connect(addr string, user_type int16) { |
| 62 | raw_conn, err := net.Dial("tcp", addr) |