Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
admin: { | |
address: socket_address: { | |
address: "::1" | |
port_value: 9090 | |
} | |
} | |
static_resources: { | |
clusters: [{ | |
connect_timeout: "0.5s" | |
lb_policy: "ROUND_ROBIN" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
admin: | |
address: | |
socket_address: | |
address: ::1 | |
port_value: 9090 | |
static_resources: | |
clusters: | |
- connect_timeout: 0.5s | |
lb_policy: ROUND_ROBIN | |
load_assignment: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
admin: | |
access_log: | |
- name: envoy.access_loggers.file | |
typed_config: | |
'@type': type.googleapis.com/envoy.extensions.access_loggers.file.v3.FileAccessLog | |
path: /tmp/admin_access.log | |
address: | |
socket_address: | |
address: ::0 | |
ipv4_compat: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
admin: | |
access_log: | |
- name: envoy.access_loggers.file | |
typed_config: | |
'@type': type.googleapis.com/envoy.extensions.access_loggers.file.v3.FileAccessLog | |
path: /tmp/admin_access.log | |
address: | |
socket_address: | |
address: ::0 | |
ipv4_compat: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
QUIC servers | |
MUST send FLOW_CONTROL_ERROR if a STREAM frame with a large offset is received [Transport 4.1] | |
MUST send TRANSPORT_PARAMETER_ERROR if initial_source_connection_id is missing [Transport 7.3] | |
MUST send TRANSPORT_PARAMETER_ERROR if original_destination_connection_id is received [Transport 18.2] | |
MUST send TRANSPORT_PARAMETER_ERROR if preferred_address, is received [Transport 18.2] | |
MUST send TRANSPORT_PARAMETER_ERROR if retry_source_connection_id is received [Transport 18.2] | |
MUST send TRANSPORT_PARAMETER_ERROR if stateless_reset_token is received [Transport 18.2] | |
MUST send TRANSPORT_PARAMETER_ERROR if max_udp_payload_size < 1200 [Transport 7.4 and 18.2] | |
MUST send TRANSPORT_PARAMETER_ERROR if ack_delay_exponen > 20 [Transport 7.4 and 18.2] | |
MUST send TRANSPORT_PARAMETER_ERROR if max_ack_delay >= 2^14 [Transport 7.4 and 18.2] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hyperfine --ignore-failure --warmup 5 --runs 100 \ | |
'~/rust/curl/src/curl --silent --alt-svc ~/.altsvc.cache https://x1.local:4433/get' \ | |
'~/rust/h3/target/x86_64-unknown-linux-musl/release/examples/client https://x1.local:4433/get' \ | |
'~/proxygen/proxygen/_build/proxygen/httpserver/hq -logdir=/tmp -mode=client -early_data=true -connect_udp=true -draft-version=29 -port=4433 -host=x1.local -path=/get' \ | |
'~/istio/pkg/test/echo/cmd/client/client --http3 https://x1.local:4433/get' \ | |
'~/rust/neqo/target/release/neqo-client --output-read-data --resume --alpn h3-29 https://x1.local:4433/get' \ | |
'~/rust/quiche/tools/apps/target/x86_64-unknown-linux-musl/release/quiche-client https://x1.local:4433/get' \ | |
'~/rust/quinn/target/x86_64-unknown-linux-musl/release/examples/h3_client https://x1.local:4433/get' | |
Benchmark #1: ~/rust/curl/src/curl --silent --alt-svc ~/.altsvc.cache https://x1.local:4433/get |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<opml version="1.0"> | |
<head> | |
<title>Envoy dependencies</title> | |
</head> | |
<body> | |
<outline text="software" title="software"> | |
<outline type="rss" text="Recent Commits to abseil-cpp:master" title="Recent Commits to abseil-cpp:master" xmlUrl="https://github.com/abseil/abseil-cpp/commits/master.atom" htmlUrl="https://github.com/abseil/abseil-cpp/commits/master"/> | |
<outline type="rss" text="Recent Commits to cel-cpp:master" title="Recent Commits to cel-cpp:master" xmlUrl="https://github.com/google/cel-cpp/commits/master.atom" htmlUrl="https://github.com/google/cel-cpp/commits/master"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Declare static groups of users beyond those in the identity service | |
Groups: "group:eng": ["[email protected]", "[email protected]"] | |
// Declare convenient hostname aliases to use in place of IP addresses | |
Hosts: h222: "100.2.2.2" | |
// Access control list | |
ACLs: [{ | |
Action: "accept" | |
// Match any of several users | |
Users: ["[email protected]", "[email protected]"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cargo run --release --verbose --example tlsserver -- --certs ~/Library/letsencrypt/cert.pem --key ~/Library/letsencrypt/rsa_key.pem --verbose -p 10443 http | |
Fresh cfg-if v0.1.2 | |
Fresh safemem v0.2.0 | |
Fresh utf8-ranges v1.0.0 | |
Fresh slab v0.3.0 | |
Fresh libc v0.2.26 | |
Fresh scopeguard v0.3.2 | |
Fresh byteorder v1.1.0 | |
Fresh log v0.3.8 | |
Fresh time v0.1.38 |
NewerOlder