-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtcpclient.go
43 lines (36 loc) · 909 Bytes
/
tcpclient.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
package main
import (
"net"
"os"
"time"
)
func main() {
strEcho := "Halo"
servAddr := "localhost:5000"
tcpAddr, err := net.ResolveTCPAddr("tcp", servAddr)
if err != nil {
println("ResolveTCPAddr failed:", err.Error())
os.Exit(1)
}
conn, err := net.DialTCP("tcp", nil, tcpAddr)
if err != nil {
println("Dial failed:", err.Error())
os.Exit(1)
}
_, err = conn.Write([]byte(strEcho))
if err != nil {
println("Write to server failed:", err.Error())
os.Exit(1)
}
println("write to server = ", strEcho)
reply := make([]byte, 1024)
_, err = conn.Read(reply)
//time.Sleep(2 * time.Second)
if err != nil {
println("Read from server failed:", err.Error())
os.Exit(1)
}
time.Sleep(2 * time.Second)
println("reply from server=", string(reply))
conn.Close()
}