亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

go語言實現 tcp客戶端/服務端

發布時間:2020-08-08 09:01:20 來源:網絡 閱讀:3776 作者:ebayboy 欄目:編程語言

/ server.go /
package main

import (
"bufio"
"fmt"
"net"
"time"
)

func main() {
var tcpAddr *net.TCPAddr

    tcpAddr, _ = net.ResolveTCPAddr("tcp", "127.0.0.1:9999")

    tcpListener, _ := net.ListenTCP("tcp", tcpAddr)

    defer tcpListener.Close()

    for {
            tcpConn, err := tcpListener.AcceptTCP()
            if err != nil {
                    continue
            }

            fmt.Println("A client connected : " + tcpConn.RemoteAddr().String())
            go tcpPipe(tcpConn)
    }

}

func tcpPipe(conn *net.TCPConn) {
ipStr := conn.RemoteAddr().String()
defer func() {
fmt.Println("disconnected :" + ipStr)
conn.Close()
}()
reader := bufio.NewReader(conn)

    for {
            message, err := reader.ReadString('\n')
            if err != nil {
                    return
            }

            fmt.Println(string(message))
            msg := time.Now().String() + "\n"
            b := []byte(msg)
            conn.Write(b)
    }

}

/client.go /
package main

import (
"bufio"
"fmt"
"net"
"time"
)

var quitSemaphore chan bool

func main() {
var tcpAddr *net.TCPAddr
tcpAddr, _ = net.ResolveTCPAddr("tcp", "127.0.0.1:9999")

    conn, _ := net.DialTCP("tcp", nil, tcpAddr)
    defer conn.Close()
    fmt.Println("connected!")

    go onMessageRecived(conn)

    b := []byte("time\n")
    conn.Write(b)

    <-quitSemaphore

}

func onMessageRecived(conn *net.TCPConn) {
reader := bufio.NewReader(conn)
for {
msg, err := reader.ReadString('\n')
fmt.Println(msg)
if err != nil {
quitSemaphore <- true
break
}
time.Sleep(time.Second)
b := []byte(msg)
conn.Write(b)
}
}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

三门县| 青海省| 读书| 云安县| 云阳县| 建湖县| 凉城县| 蓝田县| 沐川县| 夹江县| 格尔木市| 盐津县| 大港区| 河北区| 德清县| 新巴尔虎右旗| 汉寿县| 玉门市| 屏东县| 于田县| 吉水县| 余江县| 施秉县| 蚌埠市| 胶州市| 新乐市| 大悟县| 盘锦市| 惠安县| 杂多县| 元谋县| 年辖:市辖区| 洪洞县| 平塘县| 团风县| 海南省| 海阳市| 江城| 阿瓦提县| 曲麻莱县| 北安市|