-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathmain.go
62 lines (52 loc) · 1.08 KB
/
main.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
package main
import (
"flag"
"log"
"github.com/fasthttp/websocket"
"github.com/valyala/fasthttp"
)
var upgrader = websocket.FastHTTPUpgrader{
CheckOrigin: func(ctx *fasthttp.RequestCtx) bool { return true },
}
func echoView(ctx *fasthttp.RequestCtx) {
err := upgrader.Upgrade(ctx, func(ws *websocket.Conn) {
defer ws.Close()
for {
mt, message, err := ws.ReadMessage()
if err != nil {
log.Println("read error:", err)
break
}
log.Printf("recv: %s", message)
err = ws.WriteMessage(mt, message)
if err != nil {
log.Println("write error:", err)
break
}
}
})
if err != nil {
if _, ok := err.(websocket.HandshakeError); ok {
log.Println(err)
}
return
}
log.Println("conn done")
}
func main() {
flag.Parse()
log.SetFlags(0)
requestHandler := func(ctx *fasthttp.RequestCtx) {
switch string(ctx.Path()) {
case "/echo":
echoView(ctx)
default:
ctx.Error("Unsupported path", fasthttp.StatusNotFound)
}
}
server := fasthttp.Server{
Name: "EchoExample",
Handler: requestHandler,
}
log.Fatal(server.ListenAndServe(":8080"))
}