gtcp模块也提供了一些常用的工具方法。

    使用方式:

    1. import "gitee.com/johng/gf/g/net/gtcp"

    方法列表:
    godoc.org/github.com/johng-cn/gf/g/net/gtcp

    1. func Checksum(buffer []byte) uint32
    2. func NewNetConn(addr string, timeout ...int) (net.Conn, error)
    3. func Send(addr string, data []byte, retry ...Retry) error
    4. func SendRecv(addr string, data []byte, receive int, retry ...Retry) ([]byte, error)
    5. func SendRecvWithTimeout(addr string, data []byte, receive int, timeout time.Duration, retry ...Retry) ([]byte, error)
    6. func SendWithTimeout(addr string, data []byte, timeout time.Duration, retry ...Retry) error
    1. Checksum常用于TCP通信时的数据校验和生成,便于通信两端进行校验和校验;
    2. NewNetConn用于简化标准库连接对象net.Conn的创建;
    3. Send*系列方法直接通过给定地址进行数据发送,用于短链接请求的情况;

    以下为一个简单的示例,我们使用工具方法来访问指定的Web站点:

    1. package main
    2. import (
    3. "fmt"
    4. "gitee.com/johng/gf/g/net/gtcp"
    5. )
    6. func main() {
    7. data, err := gtcp.SendRecv("www.baidu.com:80", []byte("GET / HTTP/1.1\n\n"), -1)
    8. if err != nil {
    9. panic(err)
    10. }
    11. fmt.Println(string(data))
    12. }

    在这个示例中,我们通过TCP访问百度首页,模拟HTTP请求头信息,并获得返回结果。
    执行后,输出结果如下:

    1. HTTP/1.1 200 OK
    2. Accept-Ranges: bytes
    3. Cache-Control: no-cache
    4. Connection: Keep-Alive
    5. Content-Length: 14615
    6. Content-Type: text/html
    7. Date: Fri, 20 Jul 2018 05:45:11 GMT
    8. Etag: "5b3c3650-3917"
    9. Last-Modified: Wed, 04 Jul 2018 02:52:00 GMT
    10. P3p: CP=" OTI DSP COR IVA OUR IND COM "
    11. Pragma: no-cache
    12. Server: BWS/1.1
    13. ...
    14. (略)