aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/net/address_windows.c.v
diff options
context:
space:
mode:
Diffstat (limited to 'v_windows/v/vlib/net/address_windows.c.v')
-rw-r--r--v_windows/v/vlib/net/address_windows.c.v58
1 files changed, 58 insertions, 0 deletions
diff --git a/v_windows/v/vlib/net/address_windows.c.v b/v_windows/v/vlib/net/address_windows.c.v
new file mode 100644
index 0000000..e50fdb4
--- /dev/null
+++ b/v_windows/v/vlib/net/address_windows.c.v
@@ -0,0 +1,58 @@
+module net
+
+const max_unix_path = 108
+
+struct C.addrinfo {
+mut:
+ ai_family int
+ ai_socktype int
+ ai_flags int
+ ai_protocol int
+ ai_addrlen int
+ ai_addr voidptr
+ ai_canonname voidptr
+ ai_next voidptr
+}
+
+struct C.sockaddr_in {
+ sin_family u16
+ sin_port u16
+ sin_addr u32
+}
+
+struct C.sockaddr_in6 {
+ sin6_family u16
+ sin6_port u16
+ sin6_addr [4]u32
+}
+
+struct C.sockaddr_un {
+ sun_family u16
+ sun_path [max_unix_path]char
+}
+
+[_pack: '1']
+struct Ip6 {
+ port u16
+ flow_info u32
+ addr [16]byte
+ scope_id u32
+}
+
+[_pack: '1']
+struct Ip {
+ port u16
+ addr [4]byte
+ sin_pad [8]byte
+}
+
+struct Unix {
+ path [max_unix_path]byte
+}
+
+[_pack: '1']
+struct Addr {
+pub:
+ f u16
+ addr AddrData
+}