Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for tcpListeners (0.21 sec)

  1. internal/http/listener.go

    	}
    
    	if len(tcpListeners) == 0 {
    		// No listeners initialized, no need to continue
    		return
    	}
    
    	listener = &httpListener{
    		tcpListeners: tcpListeners,
    		acceptCh:     make(chan acceptResult, len(tcpListeners)),
    		opts:         opts,
    	}
    	listener.ctx, listener.ctxCanceler = context.WithCancel(ctx)
    	if opts.Trace != nil {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Mar 01 16:00:42 GMT 2024
    - 5.8K bytes
    - Viewed (0)
Back to top