mirror of
https://gitee.com/johng/gf.git
synced 2024-12-03 20:58:47 +08:00
51 lines
825 B
Go
51 lines
825 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/gogf/gf/net/gtcp"
|
|
"github.com/gogf/gf/os/glog"
|
|
"github.com/gogf/gf/util/gconv"
|
|
)
|
|
|
|
func main() {
|
|
// Server
|
|
go gtcp.NewServer("127.0.0.1:8999", func(conn *gtcp.Conn) {
|
|
defer conn.Close()
|
|
for {
|
|
data, err := conn.Recv(-1)
|
|
if len(data) > 0 {
|
|
fmt.Println(string(data))
|
|
}
|
|
if err != nil {
|
|
// client closed, err will be: EOF
|
|
fmt.Println(err)
|
|
break
|
|
}
|
|
}
|
|
}).Run()
|
|
|
|
time.Sleep(time.Second)
|
|
|
|
// Client
|
|
conn, err := gtcp.NewConn("127.0.0.1:8999")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
defer conn.Close()
|
|
for i := 0; i < 10000; i++ {
|
|
if err := conn.Send([]byte(gconv.String(i))); err != nil {
|
|
glog.Error(err)
|
|
}
|
|
time.Sleep(time.Second)
|
|
if i == 5 {
|
|
conn.Close()
|
|
break
|
|
}
|
|
}
|
|
|
|
// exit after 5 seconds
|
|
time.Sleep(5 * time.Second)
|
|
}
|