aboutsummaryrefslogtreecommitdiff
path: root/core/net
diff options
context:
space:
mode:
authorKarl Zylinski <karl@zylinski.se>2024-09-14 18:27:49 +0200
committerKarl Zylinski <karl@zylinski.se>2024-09-14 18:27:49 +0200
commit19f0127e553940bb333f61ab7e8dab6f7455115e (patch)
tree30705898942106f3341d1decec4d335ac15b28cd /core/net
parentb12d3124085058bc36f2e8feb5666a0c1f162343 (diff)
Moved all packages in core, base, vendor, tests and examples to use new #+ file tag syntax.
Diffstat (limited to 'core/net')
-rw-r--r--core/net/addr.odin2
-rw-r--r--core/net/common.odin2
-rw-r--r--core/net/dns.odin2
-rw-r--r--core/net/dns_unix.odin2
-rw-r--r--core/net/dns_windows.odin2
-rw-r--r--core/net/errors_darwin.odin2
-rw-r--r--core/net/errors_freebsd.odin2
-rw-r--r--core/net/errors_linux.odin2
-rw-r--r--core/net/errors_windows.odin2
-rw-r--r--core/net/interface.odin2
-rw-r--r--core/net/interface_darwin.odin2
-rw-r--r--core/net/interface_freebsd.odin2
-rw-r--r--core/net/interface_linux.odin2
-rw-r--r--core/net/interface_windows.odin2
-rw-r--r--core/net/socket.odin2
-rw-r--r--core/net/socket_darwin.odin2
-rw-r--r--core/net/socket_freebsd.odin2
-rw-r--r--core/net/socket_linux.odin2
-rw-r--r--core/net/socket_windows.odin2
19 files changed, 19 insertions, 19 deletions
diff --git a/core/net/addr.odin b/core/net/addr.odin
index 1972d8c22..c47c6f55e 100644
--- a/core/net/addr.odin
+++ b/core/net/addr.odin
@@ -1,4 +1,4 @@
-// +build windows, linux, darwin, freebsd
+#+build windows, linux, darwin, freebsd
package net
/*
diff --git a/core/net/common.odin b/core/net/common.odin
index ed255356e..263fc770f 100644
--- a/core/net/common.odin
+++ b/core/net/common.odin
@@ -1,4 +1,4 @@
-// +build windows, linux, darwin, freebsd
+#+build windows, linux, darwin, freebsd
package net
/*
diff --git a/core/net/dns.odin b/core/net/dns.odin
index e82b54262..ffb97fc5b 100644
--- a/core/net/dns.odin
+++ b/core/net/dns.odin
@@ -1,4 +1,4 @@
-// +build windows, linux, darwin, freebsd
+#+build windows, linux, darwin, freebsd
package net
/*
diff --git a/core/net/dns_unix.odin b/core/net/dns_unix.odin
index 0448b8d9e..e4336e410 100644
--- a/core/net/dns_unix.odin
+++ b/core/net/dns_unix.odin
@@ -1,4 +1,4 @@
-//+build linux, darwin, freebsd
+#+build linux, darwin, freebsd
package net
/*
Package net implements cross-platform Berkeley Sockets, DNS resolution and associated procedures.
diff --git a/core/net/dns_windows.odin b/core/net/dns_windows.odin
index 1b7fe7196..2f3831767 100644
--- a/core/net/dns_windows.odin
+++ b/core/net/dns_windows.odin
@@ -1,4 +1,4 @@
-//+build windows
+#+build windows
package net
/*
diff --git a/core/net/errors_darwin.odin b/core/net/errors_darwin.odin
index f2a0d6262..b75336570 100644
--- a/core/net/errors_darwin.odin
+++ b/core/net/errors_darwin.odin
@@ -1,5 +1,5 @@
package net
-// +build darwin
+#+build darwin
/*
Package net implements cross-platform Berkeley Sockets, DNS resolution and associated procedures.
diff --git a/core/net/errors_freebsd.odin b/core/net/errors_freebsd.odin
index 4830d1c03..486732a95 100644
--- a/core/net/errors_freebsd.odin
+++ b/core/net/errors_freebsd.odin
@@ -1,4 +1,4 @@
-//+build freebsd
+#+build freebsd
package net
/*
diff --git a/core/net/errors_linux.odin b/core/net/errors_linux.odin
index 9047b4020..f53a47d15 100644
--- a/core/net/errors_linux.odin
+++ b/core/net/errors_linux.odin
@@ -1,5 +1,5 @@
package net
-// +build linux
+#+build linux
/*
Package net implements cross-platform Berkeley Sockets, DNS resolution and associated procedures.
diff --git a/core/net/errors_windows.odin b/core/net/errors_windows.odin
index ae928a05c..c4a880e10 100644
--- a/core/net/errors_windows.odin
+++ b/core/net/errors_windows.odin
@@ -1,5 +1,5 @@
package net
-// +build windows
+#+build windows
/*
Package net implements cross-platform Berkeley Sockets, DNS resolution and associated procedures.
diff --git a/core/net/interface.odin b/core/net/interface.odin
index 90444fb63..775a812f3 100644
--- a/core/net/interface.odin
+++ b/core/net/interface.odin
@@ -1,4 +1,4 @@
-// +build windows, linux, darwin, freebsd
+#+build windows, linux, darwin, freebsd
package net
/*
diff --git a/core/net/interface_darwin.odin b/core/net/interface_darwin.odin
index 7a33682de..6931f5188 100644
--- a/core/net/interface_darwin.odin
+++ b/core/net/interface_darwin.odin
@@ -1,5 +1,5 @@
package net
-//+build darwin
+#+build darwin
/*
Package net implements cross-platform Berkeley Sockets, DNS resolution and associated procedures.
diff --git a/core/net/interface_freebsd.odin b/core/net/interface_freebsd.odin
index a9a125299..50e2d1a96 100644
--- a/core/net/interface_freebsd.odin
+++ b/core/net/interface_freebsd.odin
@@ -1,4 +1,4 @@
-//+build freebsd
+#+build freebsd
package net
/*
diff --git a/core/net/interface_linux.odin b/core/net/interface_linux.odin
index c6df8f0a2..85bbfd43b 100644
--- a/core/net/interface_linux.odin
+++ b/core/net/interface_linux.odin
@@ -1,5 +1,5 @@
package net
-//+build linux
+#+build linux
/*
Package net implements cross-platform Berkeley Sockets, DNS resolution and associated procedures.
diff --git a/core/net/interface_windows.odin b/core/net/interface_windows.odin
index 67da6d034..02b936b0a 100644
--- a/core/net/interface_windows.odin
+++ b/core/net/interface_windows.odin
@@ -1,5 +1,5 @@
package net
-//+build windows
+#+build windows
/*
Package net implements cross-platform Berkeley Sockets, DNS resolution and associated procedures.
diff --git a/core/net/socket.odin b/core/net/socket.odin
index e36c67d21..83a9f0168 100644
--- a/core/net/socket.odin
+++ b/core/net/socket.odin
@@ -1,4 +1,4 @@
-// +build windows, linux, darwin, freebsd
+#+build windows, linux, darwin, freebsd
package net
/*
diff --git a/core/net/socket_darwin.odin b/core/net/socket_darwin.odin
index a56d36de6..c7b5b2761 100644
--- a/core/net/socket_darwin.odin
+++ b/core/net/socket_darwin.odin
@@ -1,5 +1,5 @@
package net
-// +build darwin
+#+build darwin
/*
Package net implements cross-platform Berkeley Sockets, DNS resolution and associated procedures.
diff --git a/core/net/socket_freebsd.odin b/core/net/socket_freebsd.odin
index 00da5ec06..8ac69907f 100644
--- a/core/net/socket_freebsd.odin
+++ b/core/net/socket_freebsd.odin
@@ -1,4 +1,4 @@
-//+build freebsd
+#+build freebsd
package net
/*
diff --git a/core/net/socket_linux.odin b/core/net/socket_linux.odin
index 52f328814..1800a4a89 100644
--- a/core/net/socket_linux.odin
+++ b/core/net/socket_linux.odin
@@ -1,5 +1,5 @@
package net
-// +build linux
+#+build linux
/*
Package net implements cross-platform Berkeley Sockets, DNS resolution and associated procedures.
diff --git a/core/net/socket_windows.odin b/core/net/socket_windows.odin
index 8ee75bc3b..d67f5ada1 100644
--- a/core/net/socket_windows.odin
+++ b/core/net/socket_windows.odin
@@ -1,5 +1,5 @@
package net
-// +build windows
+#+build windows
/*
Package net implements cross-platform Berkeley Sockets, DNS resolution and associated procedures.