diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-01-27 22:55:48 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-01-27 22:55:48 +0100 |
| commit | 8998d74a926f52ef02a8f77936922dae3da6085f (patch) | |
| tree | 8a58020f914c2c20791b9b818f99587659e7e4a2 /core/net/common.odin | |
| parent | d85c2c1ca7d73c5f0513c731a13c80116124b9e4 (diff) | |
Add mDNS for *nix.
Diffstat (limited to 'core/net/common.odin')
| -rw-r--r-- | core/net/common.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/net/common.odin b/core/net/common.odin index 64155313d..12add8225 100644 --- a/core/net/common.odin +++ b/core/net/common.odin @@ -149,6 +149,7 @@ IP4_Any := IP4_Address{} IP6_Any := IP6_Address{} IP4_mDNS_Broadcast := Endpoint{address=IP4_Address{224, 0, 0, 251}, port=5353} +IP6_mDNS_Broadcast := Endpoint{address=IP6_Address{65282, 0, 0, 0, 0, 0, 0, 251}, port = 5353} Endpoint :: struct { address: Address, |