duanraotun1674 2017-11-05 03:22 采纳率: 100%
浏览 4001
已采纳

在Golang中执行net.DialTCP时如何设置超时时间?

net.DialTCP 似乎是获取net.TCPConn的唯一办法,我不确定在执行 DialTCP时如何设置超时。
func connectAddress(addr *net.TCPAddr, wg *sync.WaitGroup) error {
    start := time.Now()
    conn, err := net.DialTCP("tcp", nil, addr)
    if err != nil {
        log.Printf("Dial failed for address: %s, err: %s", addr.String(), err.Error())
        return err
    }
    elasped := time.Since(start)
    log.Printf("Connected to address: %s in %dms", addr.String(), elasped.Nanoseconds()/1000000)
    conn.Close()
    wg.Done()
    return nil
}
  • 写回答

2条回答 默认 最新

  • drmgg4411 2017-11-05 03:31
    关注

    Use net.Dialer with either the Timeout or Deadline fields set.

    d := net.Dialer{Timeout: timeout}
    conn, err := d.Dial("tcp", addr)
    if err != nil {
       // handle error
    }
    

    A variation is to call Dialer.DialContext with a deadline or timeout applied to the context.

    Type assert to *net.TCPConn if you specifically need that type instead of a net.Conn:

    tcpConn, ok := conn.(*net.TCPConn)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥30 matlab appdesigner私有函数嵌套整合
  • ¥15 给我一个openharmony跑通webrtc实现视频会议的简单demo项目,sdk为12
  • ¥15 vb6.0使用jmail接收smtp邮件并另存附件到D盘
  • ¥30 vb net 使用 sendMessage 如何输入鼠标坐标
  • ¥15 关于freesurfer使用freeview可视化的问题
  • ¥100 谁能在荣耀自带系统MagicOS版本下,隐藏手机桌面图标?
  • ¥15 求SC-LIWC词典!
  • ¥20 有关esp8266连接阿里云
  • ¥15 C# 调用Bartender打印机打印
  • ¥15 我这个代码哪里有问题 acm 平台上显示错误 90%,我自己运行好像没什么问题