第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

Golang TCP 連接有效,但 UDP 無(wú)效

Golang TCP 連接有效,但 UDP 無(wú)效

Go
婷婷同學(xué)_ 2023-03-15 15:27:34
我正在通過(guò) netcat 收聽(tīng) nc -lkp 1902每當(dāng)我建立 tcp 連接并嘗試發(fā)送日志時(shí),它都會(huì)工作        timeout := 30 * time.Second    conn, err := net.DialTimeout("tcp", "localhost:1902", timeout)    if err != nil {        panic("Failed to connect to localhost:1902")    }    defer conn.Close()    f := log.Ldate | log.Lshortfile    logger := log.New(conn, "example-", f)    logger.Println("This is a regular message1")    logger.Println("This is a regular message2")    logger.Println("This is a regular message3")    logger.Println("This is a regular message4")    logger.Println("This is a regular message5")    logger.Println("This is a regular message6")輸出example-2022/11/18 technique24.go:21: This is a regular message1example-2022/11/18 technique24.go:22: This is a regular message2example-2022/11/18 technique24.go:23: This is a regular message3example-2022/11/18 technique24.go:24: This is a regular message4example-2022/11/18 technique24.go:25: This is a regular message5example-2022/11/18 technique24.go:26: This is a regular message6但是每當(dāng)我嘗試建立 udp 連接時(shí)它都不起作用,誰(shuí)能解釋為什么我的記錄器上什么也沒(méi)有?        timeout := 30 * time.Second    conn, err := net.DialTimeout("udp", "localhost:1902", timeout)    if err != nil {        panic("Failed to connect to localhost:1902")    }    defer conn.Close()    f := log.Ldate | log.Lshortfile    logger := log.New(conn, "example-", f)    logger.Println("This is a regular message1")    logger.Println("This is a regular message2")    logger.Println("This is a regular message3")    logger.Println("This is a regular message4")    logger.Println("This is a regular message5")    logger.Println("This is a regular message6")想要通過(guò) udp 發(fā)送日志以減少積壓,嘗試先建立一個(gè) tcp 連接并且它工作正常但 udp 不起作用,任何人都可以解釋我必須做些什么才能讓它工作嗎?
查看完整描述

1 回答

?
慕雪6442864

TA貢獻(xiàn)1812條經(jīng)驗(yàn) 獲得超5個(gè)贊

除非另有說(shuō)明,否則 Netcat 默認(rèn)創(chuàng)建 TCP 連接。對(duì)于 UDP 連接,您需要使用-unetcat 的標(biāo)志。

-u 使用 UDP 而不是 TCP 的默認(rèn)選項(xiàng)。

因此,將您的偵聽(tīng)器更改為nc -luk 1902應(yīng)該可以解決 UDP 連接的問(wèn)題。


查看完整回答
反對(duì) 回復(fù) 2023-03-15
  • 1 回答
  • 0 關(guān)注
  • 153 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)