diff options
Diffstat (limited to 'v_windows/v/old/vlib/net/net_nix.c.v')
-rw-r--r-- | v_windows/v/old/vlib/net/net_nix.c.v | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/v_windows/v/old/vlib/net/net_nix.c.v b/v_windows/v/old/vlib/net/net_nix.c.v new file mode 100644 index 0000000..a9fa531 --- /dev/null +++ b/v_windows/v/old/vlib/net/net_nix.c.v @@ -0,0 +1,26 @@ +module net + +#include <unistd.h> +#include <sys/select.h> +// inet.h is needed for inet_ntop on macos +#include <arpa/inet.h> +#include <netdb.h> +#include <errno.h> +#include <fcntl.h> + +#flag solaris -lsocket + +fn error_code() int { + return C.errno +} + +fn init() { +} + +pub const ( + msg_nosignal = 0x4000 +) + +const ( + error_ewouldblock = C.EWOULDBLOCK +) |