-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathclient.go
63 lines (50 loc) · 1.11 KB
/
client.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package shadiaosocketio
import (
"github.com/Baiguoshuai1/shadiaosocketio/protocol"
"github.com/Baiguoshuai1/shadiaosocketio/websocket"
"net"
"strconv"
)
const (
webSocketProtocol = "ws://"
webSocketSecureProtocol = "wss://"
socketIOUrl = "/socket.io/?transport=websocket"
)
type Client struct {
methods
Channel
}
func GetUrl(host string, port int, secure bool) string {
var prefix string
if secure {
prefix = webSocketSecureProtocol
} else {
prefix = webSocketProtocol
}
return prefix + net.JoinHostPort(host, strconv.Itoa(port)) + socketIOUrl
}
func Dial(url string, tr websocket.Transport) (*Client, error) {
c := &Client{}
c.initChannel()
var err error
if tr.Protocol == protocol.Protocol3 {
url = url + "&EIO=3"
} else if tr.Protocol == protocol.Protocol4 {
url = url + "&EIO=4"
} else {
url = url + "&EIO=4"
}
c.conn, err = tr.Connect(url)
if err != nil {
return nil, err
}
if err != nil {
return nil, err
}
go inLoop(&c.Channel, &c.methods)
go outLoop(&c.Channel, &c.methods)
return c, nil
}
func (c *Client) Close() {
closeChannel(&c.Channel, &c.methods)
}