mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
ci: fix TcpConn.set_blocking on windows
This commit is contained in:
parent
b22c335496
commit
e32c65c322
@ -26,7 +26,7 @@ pub fn (mut con TcpConn) set_blocking(state bool) ? {
|
|||||||
if !con.is_blocking {
|
if !con.is_blocking {
|
||||||
t = 1
|
t = 1
|
||||||
}
|
}
|
||||||
socket_error(C.ioctlsocket(handle, fionbio, &t)) ?
|
socket_error(C.ioctlsocket(con.sock.handle, fionbio, &t)) ?
|
||||||
} $else {
|
} $else {
|
||||||
mut flags := C.fcntl(con.sock.handle, C.F_GETFL, 0)
|
mut flags := C.fcntl(con.sock.handle, C.F_GETFL, 0)
|
||||||
if state {
|
if state {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user