Black Lives Matter. Support the Equal Justice Initiative.

Source file src/net/sock_stub.go

Documentation: net

     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  
     5  //go:build aix || (js && wasm) || solaris
     6  // +build aix js,wasm solaris
     7  
     8  package net
     9  
    10  import "syscall"
    11  
    12  func maxListenerBacklog() int {
    13  	// TODO: Implement this
    14  	// NOTE: Never return a number bigger than 1<<16 - 1. See issue 5030.
    15  	return syscall.SOMAXCONN
    16  }
    17  

View as plain text