Small improvements

pull/1557/head
Dmitry K 2023-03-18 22:08:47 +03:00 committed by Jack Christensen
parent 8b5e8d9d89
commit a83faa67f5
2 changed files with 5 additions and 3 deletions

View File

@ -97,7 +97,7 @@ type NetConn struct {
writeDeadlineLock sync.Mutex
writeDeadline time.Time
// Indicates that underlying socket connection mode set to be non-blocking
// Indicates that underlying socket connection mode explicitly set to be non-blocking
isNonBlocking bool
}

View File

@ -164,9 +164,11 @@ func (c *NetConn) SetBlockingMode(blocking bool) error {
var err error
c.rawConn.Control(func(fd uintptr) {
if ctrlErr := c.rawConn.Control(func(fd uintptr) {
err = setSockMode(fd, mode)
})
}); ctrlErr != nil {
return ctrlErr
}
if err == nil {
c.isNonBlocking = !blocking