Revert "Remove unused fields"

This reverts commit 2c1973de46.
pull/1631/head
Nicola Murino 2023-05-27 21:14:17 +02:00 committed by Jack Christensen
parent c7733fe52e
commit 32c7858e61
1 changed files with 5 additions and 0 deletions

View File

@ -96,6 +96,11 @@ type NetConn struct {
writeDeadlineLock sync.Mutex
writeDeadline time.Time
// nbOperCnt Tracks how many operations performing simultaneously
nbOperCnt int
// nbOperMu Used to prevent concurrent SetBlockingMode calls
nbOperMu sync.Mutex
}
func NewNetConn(conn net.Conn, fakeNonBlockingIO bool) *NetConn {