Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetHTTPListeners (0.12 sec)

  1. pilot/pkg/xds/lds_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// 7071 (inbound), 2001 (service - also as http proxy), 18010 (fortio)
    		if len(adscon.GetHTTPListeners()) != 3 {
    			t.Error("HTTP listeners, expecting 3 got", len(adscon.GetHTTPListeners()), xdstest.MapKeys(adscon.GetHTTPListeners()))
    		}
    
    		// s1tcp:2000 outbound, bind=true (to reach other instances of the service)
    		// s1:5005 outbound, bind=true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. pkg/adsc/adsc.go

    		ResponseNonce: msg.Nonce,
    		TypeUrl:       msg.TypeUrl,
    		Node:          a.node(),
    		VersionInfo:   msg.VersionInfo,
    		ResourceNames: resources,
    	})
    }
    
    // GetHTTPListeners returns all the http listeners.
    func (a *ADSC) GetHTTPListeners() map[string]*listener.Listener {
    	a.mutex.Lock()
    	defer a.mutex.Unlock()
    	return a.httpListeners
    }
    
    // GetTCPListeners returns all the tcp listeners.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
Back to top