diff options
author | Aaron Brady <[email protected]> | 2024-01-06 05:09:20 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2024-01-06 05:09:20 -0500 |
commit | 76611fa15079b755ddf3c859ae2ea0ad2123223f (patch) | |
tree | 74535e7f59392868ea38c78ab145156fdb916587 /listen_unix_setopt.go | |
parent | 8a50f191bf3e4e60fdd51753f54604735f9787e4 (diff) | |
download | caddy-76611fa15079b755ddf3c859ae2ea0ad2123223f.tar.gz caddy-76611fa15079b755ddf3c859ae2ea0ad2123223f.zip |
Switch Solaris-derivatives away from listen_unix (#6021)
Solaris 10 and Illumos are missing SO_REUSEPORT. Treat them more like
Windows (i.e. use the listener pool).
Diffstat (limited to 'listen_unix_setopt.go')
-rw-r--r-- | listen_unix_setopt.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/listen_unix_setopt.go b/listen_unix_setopt.go index c9675f928..13ee7b830 100644 --- a/listen_unix_setopt.go +++ b/listen_unix_setopt.go @@ -1,4 +1,4 @@ -//go:build unix && !freebsd +//go:build unix && !freebsd && !solaris package caddy |