Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for isProxy (0.39 sec)

  1. pilot/pkg/xds/statusgen.go

    			break
    		}
    		res = dumpRes
    	}
    	return res, model.DefaultXdsLogDetails, nil
    }
    
    // isSidecar ad-hoc method to see if connection represents a sidecar
    func isProxy(con *Connection) bool {
    	return con != nil &&
    		con.proxy != nil &&
    		con.proxy.Metadata != nil &&
    		con.proxy.Metadata.ProxyConfig != nil
    }
    
    func isZtunnel(con *Connection) bool {
    	return con != nil &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 23:30:28 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    			d.Authenticate = auth.Authenticate
    		}
    		if _, err := d.DialWithConn(ctx, conn, "tcp", cm.targetAddr); err != nil {
    			conn.Close()
    			return nil, err
    		}
    	case cm.targetScheme == "http":
    		pconn.isProxy = true
    		if pa := cm.proxyAuth(); pa != "" {
    			pconn.mutateHeaderFunc = func(h Header) {
    				h.Set("Proxy-Authorization", pa)
    			}
    		}
    	case cm.targetScheme == "https":
    		conn := pconn.conn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/config.go

    	return len(c.Subsets) > 0 && c.Subsets[0].Annotations != nil && strings.HasPrefix(c.Subsets[0].Annotations[annotation.InjectTemplates.Name], "grpc-")
    }
    
    func (c Config) IsTProxy() bool {
    	// TODO this could be HasCustomInjectionMode
    	return len(c.Subsets) > 0 && c.Subsets[0].Annotations != nil && c.Subsets[0].Annotations[annotation.SidecarInterceptionMode.Name] == "TPROXY"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/match/matchers.go

    	return i.Config().IsProxylessGRPC()
    }
    
    // NotProxylessGRPC is equivalent to Not(ProxylessGRPC)
    var NotProxylessGRPC = Not(ProxylessGRPC)
    
    var TProxy Matcher = func(i echo.Instance) bool {
    	return i.Config().IsTProxy()
    }
    
    var NotTProxy = Not(TProxy)
    
    var ServiceAddressedWaypoint Matcher = func(i echo.Instance) bool {
    	return i.Config().HasServiceAddressedWaypointProxy()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. go.mod

    	github.com/lufia/plan9stats v0.0.0-20240513124658-fba389f38bae // indirect
    	github.com/mailru/easyjson v0.7.7 // indirect
    	github.com/mattn/go-colorable v0.1.13 // indirect
    	github.com/mattn/go-ieproxy v0.0.12 // indirect
    	github.com/mattn/go-isatty v0.0.20 // indirect
    	github.com/mattn/go-localereader v0.0.1 // indirect
    	github.com/mattn/go-runewidth v0.0.15 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    		{
    			name:            "dual-stack host: defaultEndpoint set to 127.0.0.1:7073",
    			proxy:           &dsProxy,
    			defaultEndpoint: "127.0.0.1:7073",
    			expectedAddr:    "127.0.0.1",
    			expectedPort:    7073,
    		},
    		{
    			name:            "dual-stack host: defaultEndpoint set to [::1]:7073",
    			proxy:           &dsProxy,
    			defaultEndpoint: "[::1]:7073",
    			expectedAddr:    "::1",
    			expectedPort:    7073,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. go.sum

    github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg=
    github.com/mattn/go-ieproxy v0.0.1/go.mod h1:pYabZ6IHcRpFh7vIaLfK7rdcWgFEb3SFJ6/gNWuh88E=
    github.com/mattn/go-ieproxy v0.0.12 h1:OZkUFJC3ESNZPQ+6LzC3VJIFSnreeFLQyqvBWtvfL2M=
    github.com/mattn/go-ieproxy v0.0.12/go.mod h1:Vn+N61199DAnVeTgaF8eoB9PvLO8P3OBnG95ENh7B7c=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/mattn/go-colorable,v0.1.4,h1:snbPLB8fVfU9iwbbo30TPtbLRzwWu6aJS6Xh4eaaviA=,02ad42bc54adf7c52030b6ab903277af8fb7163aad4f7f8d8703ecfdc62597de
    github.com/mattn/go-ieproxy,v0.0.0-20190805055040-f9202b1cfdeb,h1:hXqqXzQtJbENrsb+rsIqkVqcg4FUJL0SQFGw08Dgivw=,5914c18852b0be63008f7ccaf1bd3a8214a82fae78f8afe2e7d774ff96a410ff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
  9. CREDITS

    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    SOFTWARE.
    
    ================================================================
    
    github.com/mattn/go-ieproxy
    https://github.com/mattn/go-ieproxy
    ----------------------------------------------------------------
    MIT License
    
    Copyright (c) 2014 mattn
    Copyright (c) 2017 oliverpool
    Copyright (c) 2019 Adele Reed
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
Back to top