aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/net/websocket/websocket_nix.c.v
blob: f986b98f0bd72c010fc52aead843a23cf668b9e2 (plain)
1
2
3
4
5
6
7
8
9
10
module websocket

// error_code returns the error code
fn error_code() int {
	return C.errno
}

const (
	error_ewouldblock = C.EWOULDBLOCK // blocking error code
)