Retro68/gcc/libgo/go/net/sock_stub.go

16 lines
375 B
Go
Raw Normal View History

// Copyright 2009 The Go Authors. All rights reserved.
2015-08-28 15:33:40 +00:00
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2018-12-28 15:30:48 +00:00
// +build aix nacl solaris
2015-08-28 15:33:40 +00:00
package net
import "syscall"
func maxListenerBacklog() int {
// TODO: Implement this
// NOTE: Never return a number bigger than 1<<16 - 1. See issue 5030.
return syscall.SOMAXCONN
}