type net.TCPListener

18 uses

	net (current package)
		file_unix.go#L96: 		return &TCPListener{fd: fd}, nil
		mptcpsock_linux.go#L70: func (sl *sysListener) listenMPTCP(ctx context.Context, laddr *TCPAddr) (*TCPListener, error) {
		tcpsock.go#L279: type TCPListener struct {
		tcpsock.go#L289: func (l *TCPListener) SyscallConn() (syscall.RawConn, error) {
		tcpsock.go#L298: func (l *TCPListener) AcceptTCP() (*TCPConn, error) {
		tcpsock.go#L311: func (l *TCPListener) Accept() (Conn, error) {
		tcpsock.go#L324: func (l *TCPListener) Close() error {
		tcpsock.go#L337: func (l *TCPListener) Addr() Addr { return l.fd.laddr }
		tcpsock.go#L341: func (l *TCPListener) SetDeadline(t time.Time) error {
		tcpsock.go#L358: func (l *TCPListener) File() (f *os.File, err error) {
		tcpsock.go#L378: func ListenTCP(network string, laddr *TCPAddr) (*TCPListener, error) {
		tcpsock_posix.go#L149: func (ln *TCPListener) ok() bool { return ln != nil && ln.fd != nil }
		tcpsock_posix.go#L151: func (ln *TCPListener) accept() (*TCPConn, error) {
		tcpsock_posix.go#L159: func (ln *TCPListener) close() error {
		tcpsock_posix.go#L163: func (ln *TCPListener) file() (*os.File, error) {
		tcpsock_posix.go#L171: func (sl *sysListener) listenTCP(ctx context.Context, laddr *TCPAddr) (*TCPListener, error) {
		tcpsock_posix.go#L175: func (sl *sysListener) listenTCPProto(ctx context.Context, laddr *TCPAddr, proto int) (*TCPListener, error) {
		tcpsock_posix.go#L186: 	return &TCPListener{fd: fd, lc: sl.ListenConfig}, nil