This commit is contained in:
世界 2023-02-07 11:47:46 +08:00
parent af83426404
commit 3f1a1243a5
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 3 additions and 1 deletions

View file

@ -13,4 +13,4 @@ linters-settings:
# - prefix(github.com/sagernet/)
# - default
staticcheck:
go: '1.19'
go: '1.20'

View file

@ -22,6 +22,8 @@ func (w *SyscallVectorisedWriter) WriteVectorised(buffers []*buf.Buffer) error {
}
var innerErr unix.Errno
err := w.rawConn.Write(func(fd uintptr) (done bool) {
//nolint:staticcheck
//goland:noinspection GoDeprecation
_, _, innerErr = unix.Syscall(unix.SYS_WRITEV, fd, uintptr(unsafe.Pointer(&iovecList[0])), uintptr(len(iovecList)))
return innerErr != unix.EAGAIN && innerErr != unix.EWOULDBLOCK
})