mirror of
https://github.com/vlang/v.git
synced 2025-09-14 06:52:36 +03:00
11 lines
144 B
V
11 lines
144 B
V
module websocket
|
|
|
|
import x.net
|
|
|
|
fn error_code() int {
|
|
return C.WSAGetLastError()
|
|
}
|
|
|
|
const (
|
|
error_ewouldblock = net.WsaError.wsaewouldblock
|
|
)
|