Skip to content

Commit 76611fa

Browse files
authored
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).
1 parent 8a50f19 commit 76611fa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

listen.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
//go:build !unix
15+
//go:build !unix || solaris
1616

1717
package caddy
1818

listen_unix.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// Even though the filename ends in _unix.go, we still have to specify the
1616
// build constraint here, because the filename convention only works for
1717
// literal GOOS values, and "unix" is a shortcut unique to build tags.
18-
//go:build unix
18+
//go:build unix && !solaris
1919

2020
package caddy
2121

listen_unix_setopt.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//go:build unix && !freebsd
1+
//go:build unix && !freebsd && !solaris
22

33
package caddy
44

0 commit comments

Comments
 (0)