Fetch the repository succeeded.
package netutil
import (
"fmt"
"io"
"net"
"unsafe"
"github.com/pkg/errors"
)
// IsConnectionError check if the error is a connection error (close)
func IsConnectionError(_err interface{}) bool {
err, ok := _err.(error)
if !ok {
return false
}
err = errors.Cause(err)
if err == io.EOF {
return true
}
neterr, ok := err.(net.Error)
if !ok {
return false
}
if neterr.Timeout() {
return false
}
return true
}
// ConnectTCP connects to host:port in TCP
func ConnectTCP(host string, port int) (net.Conn, error) {
addr := fmt.Sprintf("%s:%d", host, port)
conn, err := net.Dial("tcp", addr)
return conn, err
}
func PutFloat32(b []byte, f float32) {
NETWORK_ENDIAN.PutUint32(b, *(*uint32)(unsafe.Pointer(&f)))
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。