mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
12 lines
144 B
V
12 lines
144 B
V
|
module websocket
|
||
|
|
||
|
import x.net
|
||
|
|
||
|
fn error_code() int {
|
||
|
return C.WSAGetLastError()
|
||
|
}
|
||
|
|
||
|
const (
|
||
|
error_ewouldblock = net.WsaError.wsaewouldblock
|
||
|
)
|