-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
65 lines (56 loc) · 989 Bytes
/
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
63
64
65
package main
import (
"fmt"
"net"
)
func echoServer(c net.Conn) {
for {
buf := make([]byte, 512)
nr, err := c.Read(buf)
if err != nil {
return
}
data := buf[0:nr]
fmt.Printf("Received: %v", string(data))
_, err = c.Write(data)
if err != nil {
panic("Write: " + err.Error())
}
}
}
func main() {
/*
lockPath := "/tmp/test_flock.lock"
fileLock := flock.New(lockPath)
for {
locked, err := fileLock.TryLock()
if err != nil {
fmt.Printf("try lock error %v\n", err)
} else if locked {
break
}
fmt.Printf("try lock failed\n")
time.Sleep(time.Second)
}
fmt.Printf("locked\n")
time.Sleep(time.Hour)
*/
udsPath := "/tmp/echo.sock"
//syscall.Unlink(udsPath)
//if true {
// return
//}
l, err := net.Listen("unix", udsPath)
if err != nil {
println("listen error", err.Error())
return
}
for {
fd, err := l.Accept()
if err != nil {
println("accept error", err.Error())
return
}
go echoServer(fd)
}
}