Replace default_tcp_options with constant (#5056)

Replace `default_tcp_options` with constant
This commit is contained in:
Jeroen van Rijn
2025-04-19 14:32:59 +02:00
committed by GitHub
parent d10cb91e3f
commit bc86b50392
6 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -107,7 +107,7 @@ TCP_Options :: struct {
no_delay: bool,
}
default_tcp_options := TCP_Options {
DEFAULT_TCP_OPTIONS :: TCP_Options {
no_delay = ODIN_NET_TCP_NODELAY_DEFAULT,
}