sock_stub.go 398 B

123456789101112131415
  1. // Copyright 2009 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build aix || hurd || (js && wasm) || solaris
  5. package net
  6. import "syscall"
  7. func maxListenerBacklog() int {
  8. // TODO: Implement this
  9. // NOTE: Never return a number bigger than 1<<16 - 1. See issue 5030.
  10. return syscall.SOMAXCONN
  11. }