diff --git a/zero-rtt-blob-service/.DS_Store b/zero-rtt-blob-service/.DS_Store new file mode 100644 index 0000000..a773755 Binary files /dev/null and b/zero-rtt-blob-service/.DS_Store differ diff --git a/zero-rtt-blob-service/Cargo.lock b/zero-rtt-blob-service/Cargo.lock new file mode 100644 index 0000000..de3973d --- /dev/null +++ b/zero-rtt-blob-service/Cargo.lock @@ -0,0 +1,4420 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "aead" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" +dependencies = [ + "crypto-common 0.1.7", + "generic-array", +] + +[[package]] +name = "aes" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" +dependencies = [ + "cfg-if", + "cipher", + "cpufeatures 0.2.17", +] + +[[package]] +name = "aes-gcm" +version = "0.10.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" +dependencies = [ + "aead", + "aes", + "cipher", + "ctr", + "ghash", + "subtle", +] + +[[package]] +name = "aho-corasick" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" +dependencies = [ + "memchr", +] + +[[package]] +name = "allocator-api2" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "anstream" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" + +[[package]] +name = "anstyle-parse" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "anstyle-wincon" +version = "3.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" +dependencies = [ + "anstyle", + "once_cell_polyfill", + "windows-sys 0.61.2", +] + +[[package]] +name = "anyhow" +version = "1.0.102" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" + +[[package]] +name = "arc-swap" +version = "1.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207" +dependencies = [ + "rustversion", +] + +[[package]] +name = "arrayref" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" + +[[package]] +name = "arrayvec" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" + +[[package]] +name = "async-trait" +version = "0.1.89" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "async_io_stream" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6d7b9decdf35d8908a7e3ef02f64c5e9b1695e230154c0e8de3969142d9b94c" +dependencies = [ + "futures", + "pharos", + "rustc_version", +] + +[[package]] +name = "atomic-polyfill" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4" +dependencies = [ + "critical-section", +] + +[[package]] +name = "atomic-waker" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" + +[[package]] +name = "attohttpc" +version = "0.30.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16e2cdb6d5ed835199484bb92bb8b3edd526effe995c61732580439c1a67e2e9" +dependencies = [ + "base64", + "http", + "log", + "url", +] + +[[package]] +name = "autocfg" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53" + +[[package]] +name = "backon" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cffb0e931875b666fc4fcb20fee52e9bbd1ef836fd9e9e04ec21555f9f85f7ef" +dependencies = [ + "fastrand", + "gloo-timers", + "tokio", +] + +[[package]] +name = "base16ct" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd307490d624467aa6f74b0eabb77633d1f758a7b25f12bceb0b22e08d9726f6" + +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +[[package]] +name = "base64ct" +version = "1.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" + +[[package]] +name = "bitflags" +version = "2.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84d7ced0ae9557296835c32bf1b1e02b44c746701f898460fb000d7eaa84f00a" + +[[package]] +name = "blake3" +version = "1.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce" +dependencies = [ + "arrayref", + "arrayvec", + "cc", + "cfg-if", + "constant_time_eq", + "cpufeatures 0.3.0", +] + +[[package]] +name = "block-buffer" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be" +dependencies = [ + "hybrid-array", +] + +[[package]] +name = "block2" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5" +dependencies = [ + "objc2", +] + +[[package]] +name = "bumpalo" +version = "3.20.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "bytes" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" + +[[package]] +name = "cc" +version = "1.2.63" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f" +dependencies = [ + "find-msvc-tools", + "shlex", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "cfg_aliases" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" + +[[package]] +name = "chacha20" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601" +dependencies = [ + "cfg-if", + "cpufeatures 0.3.0", + "rand_core", +] + +[[package]] +name = "chrono" +version = "0.4.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327" +dependencies = [ + "iana-time-zone", + "num-traits", + "serde", + "windows-link", +] + +[[package]] +name = "cipher" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" +dependencies = [ + "crypto-common 0.1.7", + "inout", +] + +[[package]] +name = "clap" +version = "4.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51" +dependencies = [ + "clap_builder", + "clap_derive", +] + +[[package]] +name = "clap_builder" +version = "4.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f" +dependencies = [ + "anstream", + "anstyle", + "clap_lex", + "strsim", +] + +[[package]] +name = "clap_derive" +version = "4.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "clap_lex" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" + +[[package]] +name = "cmov" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a" + +[[package]] +name = "cobs" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1" +dependencies = [ + "thiserror", +] + +[[package]] +name = "colorchoice" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" + +[[package]] +name = "combine" +version = "4.6.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" +dependencies = [ + "bytes", + "memchr", +] + +[[package]] +name = "const-oid" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c" + +[[package]] +name = "constant_time_eq" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b" + +[[package]] +name = "convert_case" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9" +dependencies = [ + "unicode-segmentation", +] + +[[package]] +name = "cordyceps" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "688d7fbb8092b8de775ef2536f36c8c31f2bc4006ece2e8d8ad2d17d00ce0a2a" +dependencies = [ + "loom", + "tracing", +] + +[[package]] +name = "core-foundation" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" + +[[package]] +name = "cpufeatures" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" +dependencies = [ + "libc", +] + +[[package]] +name = "cpufeatures" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201" +dependencies = [ + "libc", +] + +[[package]] +name = "critical-section" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" + +[[package]] +name = "crossbeam-channel" +version = "0.5.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" + +[[package]] +name = "crypto-common" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "crypto-common" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453" +dependencies = [ + "hybrid-array", +] + +[[package]] +name = "ctr" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" +dependencies = [ + "cipher", +] + +[[package]] +name = "ctutils" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e" +dependencies = [ + "cmov", +] + +[[package]] +name = "curve25519-dalek" +version = "5.0.0-pre.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "335f1947f241137a14106b6f5acc5918a5ede29c9d71d3f2cb1678d5075d9fc3" +dependencies = [ + "cfg-if", + "cpufeatures 0.2.17", + "curve25519-dalek-derive", + "digest", + "fiat-crypto", + "rand_core", + "rustc_version", + "serde", + "subtle", + "zeroize", +] + +[[package]] +name = "curve25519-dalek-derive" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "darling" +version = "0.20.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" +dependencies = [ + "darling_core 0.20.11", + "darling_macro 0.20.11", +] + +[[package]] +name = "darling" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d" +dependencies = [ + "darling_core 0.23.0", + "darling_macro 0.23.0", +] + +[[package]] +name = "darling_core" +version = "0.20.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn", +] + +[[package]] +name = "darling_core" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0" +dependencies = [ + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn", +] + +[[package]] +name = "darling_macro" +version = "0.20.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" +dependencies = [ + "darling_core 0.20.11", + "quote", + "syn", +] + +[[package]] +name = "darling_macro" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d" +dependencies = [ + "darling_core 0.23.0", + "quote", + "syn", +] + +[[package]] +name = "data-encoding" +version = "2.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8" + +[[package]] +name = "data-encoding-macro" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3259c913752a86488b501ed8680446a5ed2d5aeac6e596cb23ba3800768ea32c" +dependencies = [ + "data-encoding", + "data-encoding-macro-internal", +] + +[[package]] +name = "data-encoding-macro-internal" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccc2776f0c61eca1ca32528f85548abd1a4be8fb53d1b21c013e4f18da1e7090" +dependencies = [ + "data-encoding", + "syn", +] + +[[package]] +name = "der" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b" +dependencies = [ + "const-oid", + "pem-rfc7468", + "zeroize", +] + +[[package]] +name = "deranged" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" +dependencies = [ + "powerfmt", +] + +[[package]] +name = "derive_builder" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947" +dependencies = [ + "derive_builder_macro", +] + +[[package]] +name = "derive_builder_core" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8" +dependencies = [ + "darling 0.20.11", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "derive_builder_macro" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c" +dependencies = [ + "derive_builder_core", + "syn", +] + +[[package]] +name = "derive_more" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134" +dependencies = [ + "derive_more-impl", +] + +[[package]] +name = "derive_more-impl" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb" +dependencies = [ + "convert_case", + "proc-macro2", + "quote", + "rustc_version", + "syn", + "unicode-xid", +] + +[[package]] +name = "diatomic-waker" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab03c107fafeb3ee9f5925686dbb7a73bc76e3932abb0d2b365cb64b169cf04c" + +[[package]] +name = "digest" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2" +dependencies = [ + "block-buffer", + "const-oid", + "crypto-common 0.2.2", +] + +[[package]] +name = "dispatch2" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38" +dependencies = [ + "bitflags", + "block2", + "libc", + "objc2", +] + +[[package]] +name = "displaydoc" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "dlopen2" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4" +dependencies = [ + "libc", + "once_cell", + "winapi", +] + +[[package]] +name = "ed25519" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29fcf32e6c73d1079f83ab4d782de2d81620346a5f38c6237a86a22f8368980a" +dependencies = [ + "pkcs8", + "serdect", + "signature", +] + +[[package]] +name = "ed25519-dalek" +version = "3.0.0-pre.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20449acd54b660981ae5caa2bcb56d1fe7f25f2e37a38ec507400fab034d4bb6" +dependencies = [ + "curve25519-dalek", + "ed25519", + "rand_core", + "serde", + "sha2", + "signature", + "subtle", + "zeroize", +] + +[[package]] +name = "either" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e" + +[[package]] +name = "embedded-io" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" + +[[package]] +name = "embedded-io" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" + +[[package]] +name = "enum-assoc" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ed8956bd5c1f0415200516e78ff07ec9e16415ade83c056c230d7b7ea0d55b7" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "errno" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "fastbloom" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef975e30683b2d965054bb0a836f8973857c4ebf6acf274fe46617cd285060d8" +dependencies = [ + "foldhash 0.2.0", + "libm", + "portable-atomic", + "siphasher", +] + +[[package]] +name = "fastrand" +version = "2.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6" + +[[package]] +name = "fiat-crypto" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64cd1e32ddd350061ae6edb1b082d7c54915b5c672c389143b9a63403a109f24" + +[[package]] +name = "find-msvc-tools" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + +[[package]] +name = "foldhash" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" + +[[package]] +name = "form_urlencoded" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "futures" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-buffered" +version = "0.2.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4421cb78ee172b6b06080093479d3c50f058e7c81b7d577bbb8d118d551d4cd5" +dependencies = [ + "cordyceps", + "diatomic-waker", + "futures-core", + "pin-project-lite", + "spin 0.10.0", +] + +[[package]] +name = "futures-channel" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" + +[[package]] +name = "futures-executor" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" + +[[package]] +name = "futures-lite" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" +dependencies = [ + "fastrand", + "futures-core", + "futures-io", + "parking", + "pin-project-lite", +] + +[[package]] +name = "futures-macro" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "futures-sink" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" + +[[package]] +name = "futures-task" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" + +[[package]] +name = "futures-util" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "slab", +] + +[[package]] +name = "generator" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b3b854b0e584ead1a33f18b2fcad7cf7be18b3875c78816b753639aa501513ae" +dependencies = [ + "cc", + "cfg-if", + "libc", + "log", + "rustversion", + "windows-link", + "windows-result", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "getrandom" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" +dependencies = [ + "cfg-if", + "js-sys", + "libc", + "wasi", + "wasm-bindgen", +] + +[[package]] +name = "getrandom" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" +dependencies = [ + "cfg-if", + "js-sys", + "libc", + "r-efi", + "rand_core", + "wasip2", + "wasip3", + "wasm-bindgen", +] + +[[package]] +name = "ghash" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" +dependencies = [ + "opaque-debug", + "polyval", +] + +[[package]] +name = "gloo-timers" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994" +dependencies = [ + "futures-channel", + "futures-core", + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "h2" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733" +dependencies = [ + "atomic-waker", + "bytes", + "fnv", + "futures-core", + "futures-sink", + "http", + "indexmap", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "hash32" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67" +dependencies = [ + "byteorder", +] + +[[package]] +name = "hashbrown" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ + "foldhash 0.1.5", +] + +[[package]] +name = "hashbrown" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash 0.2.0", +] + +[[package]] +name = "heapless" +version = "0.7.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f" +dependencies = [ + "atomic-polyfill", + "hash32", + "rustc_version", + "serde", + "spin 0.9.8", + "stable_deref_trait", +] + +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "hickory-net" +version = "0.26.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2295ed2f9c31e471e1428a8f88a3f0e1f4b27c15049592138d1eebe9c35b183" +dependencies = [ + "async-trait", + "bytes", + "cfg-if", + "data-encoding", + "futures-channel", + "futures-io", + "futures-util", + "h2", + "hickory-proto", + "http", + "idna", + "ipnet", + "jni", + "rand", + "rustls", + "thiserror", + "tinyvec", + "tokio", + "tokio-rustls", + "tracing", + "url", +] + +[[package]] +name = "hickory-proto" +version = "0.26.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bab31817bfb44672a252e97fe81cd0c18d1b2cf892108922f6818820df8c643" +dependencies = [ + "data-encoding", + "idna", + "ipnet", + "jni", + "once_cell", + "prefix-trie", + "rand", + "ring", + "thiserror", + "tinyvec", + "tracing", + "url", +] + +[[package]] +name = "hickory-resolver" +version = "0.26.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0d58d28879ceecde6607729660c2667a081ccdc082e082675042793960f178c" +dependencies = [ + "cfg-if", + "futures-util", + "hickory-net", + "hickory-proto", + "ipconfig", + "ipnet", + "jni", + "moka", + "ndk-context", + "once_cell", + "parking_lot", + "rand", + "resolv-conf", + "rustls", + "smallvec", + "system-configuration", + "thiserror", + "tokio", + "tokio-rustls", + "tracing", +] + +[[package]] +name = "http" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0" +dependencies = [ + "bytes", + "itoa", +] + +[[package]] +name = "http-body" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http", +] + +[[package]] +name = "http-body-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" +dependencies = [ + "bytes", + "futures-core", + "http", + "http-body", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" + +[[package]] +name = "httpdate" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" + +[[package]] +name = "hybrid-array" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da" +dependencies = [ + "typenum", +] + +[[package]] +name = "hyper" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498" +dependencies = [ + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "h2", + "http", + "http-body", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "smallvec", + "tokio", + "want", +] + +[[package]] +name = "hyper-rustls" +version = "0.27.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f" +dependencies = [ + "http", + "hyper", + "hyper-util", + "rustls", + "tokio", + "tokio-rustls", + "tower-service", +] + +[[package]] +name = "hyper-util" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" +dependencies = [ + "base64", + "bytes", + "futures-channel", + "futures-util", + "http", + "http-body", + "hyper", + "ipnet", + "libc", + "percent-encoding", + "pin-project-lite", + "socket2", + "tokio", + "tower-service", + "tracing", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.65" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "log", + "wasm-bindgen", + "windows-core", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "icu_collections" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" +dependencies = [ + "displaydoc", + "potential_utf", + "utf8_iter", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_locale_core" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" +dependencies = [ + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", +] + +[[package]] +name = "icu_normalizer" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" +dependencies = [ + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", +] + +[[package]] +name = "icu_normalizer_data" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" + +[[package]] +name = "icu_properties" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" +dependencies = [ + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", +] + +[[package]] +name = "icu_properties_data" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" + +[[package]] +name = "icu_provider" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" +dependencies = [ + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", +] + +[[package]] +name = "id-arena" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" + +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + +[[package]] +name = "identity-hash" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dfdd7caa900436d8f13b2346fe10257e0c05c1f1f9e351f4f5d57c03bd5f45da" + +[[package]] +name = "idna" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" +dependencies = [ + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714" +dependencies = [ + "icu_normalizer", + "icu_properties", +] + +[[package]] +name = "igd-next" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de7238d487a9aff61f81b5ab41c0a841532a115a398b5fa92a2fadd0885e2581" +dependencies = [ + "attohttpc", + "bytes", + "futures", + "http", + "http-body-util", + "hyper", + "hyper-util", + "log", + "rand", + "tokio", + "url", + "xmltree", +] + +[[package]] +name = "indexmap" +version = "2.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9" +dependencies = [ + "equivalent", + "hashbrown 0.17.1", + "serde", + "serde_core", +] + +[[package]] +name = "inout" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" +dependencies = [ + "generic-array", +] + +[[package]] +name = "ipconfig" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d40460c0ce33d6ce4b0630ad68ff63d6661961c48b6dba35e5a4d81cfb48222" +dependencies = [ + "socket2", + "widestring", + "windows-registry", + "windows-result", + "windows-sys 0.61.2", +] + +[[package]] +name = "ipnet" +version = "2.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" +dependencies = [ + "serde", +] + +[[package]] +name = "iroh" +version = "1.0.0-rc.1" +source = "git+https://github.com/n0-computer/iroh?branch=persistent-token-store#fc1044a0ec6b501f3fa4fe36261a5f8c074b9195" +dependencies = [ + "backon", + "blake3", + "bytes", + "cfg_aliases", + "ctutils", + "data-encoding", + "derive_more", + "ed25519-dalek", + "futures-util", + "getrandom 0.4.2", + "hickory-resolver", + "http", + "ipnet", + "iroh-base", + "iroh-dns", + "iroh-metrics", + "iroh-relay", + "n0-error", + "n0-future", + "n0-watcher", + "netwatch", + "noq", + "noq-proto", + "noq-udp", + "papaya", + "pin-project", + "portable-atomic", + "portmapper", + "rand", + "reqwest", + "rustc-hash", + "rustls", + "rustls-pki-types", + "rustls-webpki", + "serde", + "smallvec", + "strum", + "time", + "tokio", + "tokio-stream", + "tokio-util", + "tracing", + "url", + "wasm-bindgen-futures", + "webpki-roots", +] + +[[package]] +name = "iroh-base" +version = "1.0.0-rc.1" +source = "git+https://github.com/n0-computer/iroh?branch=persistent-token-store#fc1044a0ec6b501f3fa4fe36261a5f8c074b9195" +dependencies = [ + "curve25519-dalek", + "data-encoding", + "data-encoding-macro", + "derive_more", + "digest", + "ed25519-dalek", + "getrandom 0.4.2", + "n0-error", + "rand", + "serde", + "sha2", + "url", + "zeroize", + "zeroize_derive", +] + +[[package]] +name = "iroh-dns" +version = "1.0.0-rc.1" +source = "git+https://github.com/n0-computer/iroh?branch=persistent-token-store#fc1044a0ec6b501f3fa4fe36261a5f8c074b9195" +dependencies = [ + "arc-swap", + "cfg_aliases", + "derive_more", + "hickory-resolver", + "iroh-base", + "n0-error", + "n0-future", + "ndk-context", + "rand", + "reqwest", + "rustls", + "simple-dns", + "strum", + "tokio", + "tracing", + "url", +] + +[[package]] +name = "iroh-metrics" +version = "1.0.0-rc.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d102597d0ee523f17fdb672c532395e634dbe945429284c811430d63bacc0d8a" +dependencies = [ + "iroh-metrics-derive", + "itoa", + "n0-error", + "portable-atomic", + "ryu", + "serde", + "tracing", +] + +[[package]] +name = "iroh-metrics-derive" +version = "1.0.0-rc.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91c8e0c97f1dc787107f388433c349397c565572fe6406d600ff7bb7b7fe3b30" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "iroh-relay" +version = "1.0.0-rc.1" +source = "git+https://github.com/n0-computer/iroh?branch=persistent-token-store#fc1044a0ec6b501f3fa4fe36261a5f8c074b9195" +dependencies = [ + "blake3", + "bytes", + "cfg_aliases", + "data-encoding", + "derive_more", + "getrandom 0.4.2", + "hickory-resolver", + "http", + "http-body-util", + "hyper", + "hyper-util", + "iroh-base", + "iroh-dns", + "iroh-metrics", + "lru", + "n0-error", + "n0-future", + "noq", + "noq-proto", + "num_enum", + "pin-project", + "postcard", + "rand", + "reqwest", + "rustls", + "rustls-pki-types", + "serde", + "serde_bytes", + "strum", + "tokio", + "tokio-rustls", + "tokio-util", + "tokio-websockets", + "tracing", + "url", + "vergen-gitcl", + "webpki-roots", + "ws_stream_wasm", +] + +[[package]] +name = "iroh-tickets" +version = "1.0.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b5d4051ac9825cd834d88377dab71c1d9d483b65e9740029b2d624cc17ac58d" +dependencies = [ + "data-encoding", + "derive_more", + "iroh-base", + "n0-error", + "postcard", + "serde", +] + +[[package]] +name = "is_terminal_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" + +[[package]] +name = "itoa" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" + +[[package]] +name = "jni" +version = "0.22.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498" +dependencies = [ + "cfg-if", + "combine", + "jni-macros", + "jni-sys", + "log", + "simd_cesu8", + "thiserror", + "walkdir", + "windows-link", +] + +[[package]] +name = "jni-macros" +version = "0.22.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3" +dependencies = [ + "proc-macro2", + "quote", + "rustc_version", + "simd_cesu8", + "syn", +] + +[[package]] +name = "jni-sys" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2" +dependencies = [ + "jni-sys-macros", +] + +[[package]] +name = "jni-sys-macros" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264" +dependencies = [ + "quote", + "syn", +] + +[[package]] +name = "js-sys" +version = "0.3.99" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11" +dependencies = [ + "cfg-if", + "futures-util", + "once_cell", + "wasm-bindgen", +] + +[[package]] +name = "lazy_static" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" + +[[package]] +name = "leb128fmt" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" + +[[package]] +name = "libc" +version = "0.2.186" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" + +[[package]] +name = "libm" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" + +[[package]] +name = "litemap" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" + +[[package]] +name = "lock_api" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" +dependencies = [ + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a" + +[[package]] +name = "loom" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" +dependencies = [ + "cfg-if", + "generator", + "scoped-tls", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "lru" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a860605968fce16869fd239cf4237a82f3ac470723415db603b0e8b6c8d4fb9" +dependencies = [ + "hashbrown 0.17.1", +] + +[[package]] +name = "lru-slab" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" + +[[package]] +name = "mac-addr" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3d25b0e0b648a86960ac23b7ad4abb9717601dec6f66c165f5b037f3f03065f" + +[[package]] +name = "matchers" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" +dependencies = [ + "regex-automata", +] + +[[package]] +name = "memchr" +version = "2.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8" + +[[package]] +name = "mio" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda" +dependencies = [ + "libc", + "wasi", + "windows-sys 0.61.2", +] + +[[package]] +name = "moka" +version = "0.12.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046" +dependencies = [ + "crossbeam-channel", + "crossbeam-epoch", + "crossbeam-utils", + "equivalent", + "parking_lot", + "portable-atomic", + "smallvec", + "tagptr", + "uuid", +] + +[[package]] +name = "n0-error" +version = "1.0.0-rc.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "223e946a84aa91644507a6b7865cfebbb9a231ace499041c747ab0fd30408212" +dependencies = [ + "n0-error-macros", + "spez", +] + +[[package]] +name = "n0-error-macros" +version = "1.0.0-rc.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "565305a21e6b3bf26640ad98f05a0fda12d3ab4315394566b52a7bddb8b34828" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "n0-future" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2ab99dfb861450e68853d34ae665243a88b8c493d01ba957321a1e9b2312bbe" +dependencies = [ + "cfg_aliases", + "derive_more", + "futures-buffered", + "futures-lite", + "futures-util", + "js-sys", + "pin-project", + "send_wrapper", + "tokio", + "tokio-util", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-time", +] + +[[package]] +name = "n0-qlog" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04fd2af7d4c68cd5c31fa69e64644e0a778bd1656bb8dfb86f9852f7d02a112e" +dependencies = [ + "serde", + "serde_json", + "serde_with", + "smallvec", + "strum", +] + +[[package]] +name = "n0-watcher" +version = "1.0.0-rc.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "928d8039a66cce5efcfd35e88b32d3defc8eba630b3ac451522997f563956a52" +dependencies = [ + "derive_more", + "n0-error", + "n0-future", +] + +[[package]] +name = "ndk-context" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" + +[[package]] +name = "netdev" +version = "0.43.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57bacaf873ee4eab5646f99b381b271ec75e716902a67cf962c0f328c5eb5bfb" +dependencies = [ + "block2", + "dispatch2", + "dlopen2", + "ipnet", + "libc", + "mac-addr", + "netlink-packet-core", + "netlink-packet-route 0.29.0", + "netlink-sys", + "objc2-core-foundation", + "objc2-core-wlan", + "objc2-foundation", + "objc2-system-configuration", + "once_cell", + "plist", + "windows-sys 0.61.2", +] + +[[package]] +name = "netlink-packet-core" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3463cbb78394cb0141e2c926b93fc2197e473394b761986eca3b9da2c63ae0f4" +dependencies = [ + "paste", +] + +[[package]] +name = "netlink-packet-route" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df9854ea6ad14e3f4698a7f03b65bce0833dd2d81d594a0e4a984170537146b6" +dependencies = [ + "bitflags", + "libc", + "log", + "netlink-packet-core", +] + +[[package]] +name = "netlink-packet-route" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be8919612f6028ab4eacbbfe1234a9a43e3722c6e0915e7ff519066991905092" +dependencies = [ + "bitflags", + "libc", + "log", + "netlink-packet-core", +] + +[[package]] +name = "netlink-proto" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b65d130ee111430e47eed7896ea43ca693c387f097dd97376bffafbf25812128" +dependencies = [ + "bytes", + "futures", + "log", + "netlink-packet-core", + "netlink-sys", + "thiserror", +] + +[[package]] +name = "netlink-sys" +version = "0.8.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd6c30ed10fa69cc491d491b85cc971f6bdeb8e7367b7cde2ee6cc878d583fae" +dependencies = [ + "bytes", + "futures-util", + "libc", + "log", + "tokio", +] + +[[package]] +name = "netwatch" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2071e0c2b5b229622c459096b84f1ad51afa150cdeeefdad491ef3704e581d91" +dependencies = [ + "atomic-waker", + "bytes", + "cfg_aliases", + "derive_more", + "js-sys", + "libc", + "n0-error", + "n0-future", + "n0-watcher", + "netdev", + "netlink-packet-core", + "netlink-packet-route 0.30.0", + "netlink-proto", + "netlink-sys", + "noq-udp", + "objc2-core-foundation", + "objc2-system-configuration", + "pin-project-lite", + "serde", + "socket2", + "time", + "tokio", + "tokio-util", + "tracing", + "web-sys", + "windows", + "windows-result", + "wmi", +] + +[[package]] +name = "noq" +version = "1.0.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "198b99fc085a5db1f7d259edb5ede8311e59f28cdd2687920b4313613d21a73f" +dependencies = [ + "bytes", + "cfg_aliases", + "derive_more", + "noq-proto", + "noq-udp", + "pin-project-lite", + "rustc-hash", + "rustls", + "socket2", + "thiserror", + "tokio", + "tokio-stream", + "tracing", + "web-time", +] + +[[package]] +name = "noq-proto" +version = "1.0.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ab0ac774795ce1e42a7e61266e71f3be8110210630441169ac8dda403dd23f1" +dependencies = [ + "aes-gcm", + "bytes", + "derive_more", + "enum-assoc", + "fastbloom", + "getrandom 0.4.2", + "identity-hash", + "lru-slab", + "n0-qlog", + "rand", + "rand_pcg", + "ring", + "rustc-hash", + "rustls", + "rustls-pki-types", + "slab", + "sorted-index-buffer", + "thiserror", + "tinyvec", + "tracing", + "web-time", +] + +[[package]] +name = "noq-udp" +version = "1.0.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b3c1520eacd33fd6b009e2e70116b05508ade51db5e0d315ff8bf6b702148c2b" +dependencies = [ + "cfg_aliases", + "libc", + "socket2", + "tracing", + "windows-sys 0.61.2", +] + +[[package]] +name = "nu-ansi-term" +version = "0.50.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "num-conv" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441" + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", +] + +[[package]] +name = "num_enum" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26" +dependencies = [ + "num_enum_derive", + "rustversion", +] + +[[package]] +name = "num_enum_derive" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8" +dependencies = [ + "proc-macro-crate", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "num_threads" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" +dependencies = [ + "libc", +] + +[[package]] +name = "objc2" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f" +dependencies = [ + "objc2-encode", +] + +[[package]] +name = "objc2-core-foundation" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536" +dependencies = [ + "bitflags", + "block2", + "dispatch2", + "libc", + "objc2", +] + +[[package]] +name = "objc2-core-wlan" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c71e34919aba0d701380d911702455038a8a3587467fe0141d6a71501e7ffe48" +dependencies = [ + "bitflags", + "objc2", + "objc2-core-foundation", + "objc2-foundation", + "objc2-security", + "objc2-security-foundation", +] + +[[package]] +name = "objc2-encode" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" + +[[package]] +name = "objc2-foundation" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272" +dependencies = [ + "bitflags", + "block2", + "libc", + "objc2", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-security" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "709fe137109bd1e8b5a99390f77a7d8b2961dafc1a1c5db8f2e60329ad6d895a" +dependencies = [ + "bitflags", + "objc2", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-security-foundation" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef76382e9cedd18123099f17638715cc3d81dba3637d4c0d39ab69df2ef345a5" +dependencies = [ + "objc2", + "objc2-foundation", +] + +[[package]] +name = "objc2-system-configuration" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396" +dependencies = [ + "bitflags", + "dispatch2", + "libc", + "objc2", + "objc2-core-foundation", + "objc2-security", +] + +[[package]] +name = "once_cell" +version = "1.21.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" +dependencies = [ + "critical-section", + "portable-atomic", +] + +[[package]] +name = "once_cell_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" + +[[package]] +name = "opaque-debug" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" + +[[package]] +name = "openssl-probe" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" + +[[package]] +name = "papaya" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "997ee03cd38c01469a7046643714f0ad28880bcb9e6679ff0666e24817ca19b7" +dependencies = [ + "equivalent", + "seize", +] + +[[package]] +name = "parking" +version = "2.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" + +[[package]] +name = "parking_lot" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-link", +] + +[[package]] +name = "paste" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" + +[[package]] +name = "pem-rfc7468" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9" +dependencies = [ + "base64ct", +] + +[[package]] +name = "percent-encoding" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" + +[[package]] +name = "pharos" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9567389417feee6ce15dd6527a8a1ecac205ef62c2932bcf3d9f6fc5b78b414" +dependencies = [ + "futures", + "rustc_version", +] + +[[package]] +name = "pin-project" +version = "1.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924" +dependencies = [ + "pin-project-internal", +] + +[[package]] +name = "pin-project-internal" +version = "1.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" + +[[package]] +name = "pkcs8" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7" +dependencies = [ + "der", + "spki", +] + +[[package]] +name = "plist" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "092791278e026273c1b65bbdcfbba3a300f2994c896bd01ab01da613c29c46f1" +dependencies = [ + "base64", + "indexmap", + "quick-xml", + "serde", + "time", +] + +[[package]] +name = "polyval" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" +dependencies = [ + "cfg-if", + "cpufeatures 0.2.17", + "opaque-debug", + "universal-hash", +] + +[[package]] +name = "portable-atomic" +version = "1.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" +dependencies = [ + "serde", +] + +[[package]] +name = "portmapper" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64959cbabf952c8ffcbaea13745308508f1f825922f4068353f3de08d42cf214" +dependencies = [ + "base64", + "bytes", + "derive_more", + "hyper-util", + "igd-next", + "iroh-metrics", + "libc", + "n0-error", + "n0-future", + "netwatch", + "num_enum", + "rand", + "serde", + "smallvec", + "socket2", + "time", + "tokio", + "tokio-util", + "tower-layer", + "tracing", + "url", +] + +[[package]] +name = "postcard" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24" +dependencies = [ + "cobs", + "embedded-io 0.4.0", + "embedded-io 0.6.1", + "heapless", + "postcard-derive", + "serde", +] + +[[package]] +name = "postcard-derive" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0232bd009a197ceec9cc881ba46f727fcd8060a2d8d6a9dde7a69030a6fe2bb" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "potential_utf" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" +dependencies = [ + "zerovec", +] + +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] +name = "prefix-trie" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cf6e3177f0684016a5c209b00882e15f8bdd3f3bb48f0491df10cd102d0c6e7" +dependencies = [ + "either", + "ipnet", + "num-traits", +] + +[[package]] +name = "prettyplease" +version = "0.2.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" +dependencies = [ + "proc-macro2", + "syn", +] + +[[package]] +name = "proc-macro-crate" +version = "3.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" +dependencies = [ + "toml_edit", +] + +[[package]] +name = "proc-macro2" +version = "1.0.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quick-xml" +version = "0.39.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdcc8dd4e2f670d309a5f0e83fe36dfdc05af317008fea29144da1a2ac858e5e" +dependencies = [ + "memchr", +] + +[[package]] +name = "quote" +version = "1.0.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "r-efi" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" + +[[package]] +name = "rand" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207" +dependencies = [ + "chacha20", + "getrandom 0.4.2", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" + +[[package]] +name = "rand_pcg" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a" +dependencies = [ + "rand_core", +] + +[[package]] +name = "redox_syscall" +version = "0.5.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" +dependencies = [ + "bitflags", +] + +[[package]] +name = "regex-automata" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" + +[[package]] +name = "reqwest" +version = "0.13.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3" +dependencies = [ + "base64", + "bytes", + "futures-core", + "futures-util", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-rustls", + "hyper-util", + "js-sys", + "log", + "percent-encoding", + "pin-project-lite", + "rustls", + "rustls-pki-types", + "rustls-platform-verifier", + "sync_wrapper", + "tokio", + "tokio-rustls", + "tokio-util", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams", + "web-sys", +] + +[[package]] +name = "resolv-conf" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7" + +[[package]] +name = "ring" +version = "0.17.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" +dependencies = [ + "cc", + "cfg-if", + "getrandom 0.2.17", + "libc", + "untrusted", + "windows-sys 0.52.0", +] + +[[package]] +name = "rustc-hash" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe" + +[[package]] +name = "rustc_version" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" +dependencies = [ + "semver", +] + +[[package]] +name = "rustls" +version = "0.23.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b" +dependencies = [ + "log", + "once_cell", + "ring", + "rustls-pki-types", + "rustls-webpki", + "subtle", + "zeroize", +] + +[[package]] +name = "rustls-native-certs" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d" +dependencies = [ + "openssl-probe", + "rustls-pki-types", + "schannel", + "security-framework", +] + +[[package]] +name = "rustls-pki-types" +version = "1.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9" +dependencies = [ + "web-time", + "zeroize", +] + +[[package]] +name = "rustls-platform-verifier" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0" +dependencies = [ + "core-foundation 0.10.1", + "core-foundation-sys", + "jni", + "log", + "once_cell", + "rustls", + "rustls-native-certs", + "rustls-platform-verifier-android", + "rustls-webpki", + "security-framework", + "security-framework-sys", + "webpki-root-certs", + "windows-sys 0.61.2", +] + +[[package]] +name = "rustls-platform-verifier-android" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f" + +[[package]] +name = "rustls-webpki" +version = "0.103.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e" +dependencies = [ + "ring", + "rustls-pki-types", + "untrusted", +] + +[[package]] +name = "rustversion" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" + +[[package]] +name = "ryu" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" + +[[package]] +name = "same-file" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "schannel" +version = "0.1.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "scoped-tls" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "security-framework" +version = "3.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" +dependencies = [ + "bitflags", + "core-foundation 0.10.1", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "seize" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b55fb86dfd3a2f5f76ea78310a88f96c4ea21a3031f8d212443d56123fd0521" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "semver" +version = "1.0.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" + +[[package]] +name = "send_wrapper" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" + +[[package]] +name = "serde" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde_bytes" +version = "0.11.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8" +dependencies = [ + "serde", + "serde_core", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.150" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9" +dependencies = [ + "indexmap", + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", +] + +[[package]] +name = "serde_with" +version = "3.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e72c1c2cb7b223fafb600a619537a871c2818583d619401b785e7c0b746ccde2" +dependencies = [ + "serde_core", + "serde_with_macros", +] + +[[package]] +name = "serde_with_macros" +version = "3.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b90c488738ecb4fb0262f41f43bc40efc5868d9fb744319ddf5f5317f417bfac" +dependencies = [ + "darling 0.23.0", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serdect" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "66cf8fedced2fcf12406bcb34223dffb92eaf34908ede12fed414c82b7f00b3e" +dependencies = [ + "base16ct", + "serde", +] + +[[package]] +name = "sha1_smol" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d" + +[[package]] +name = "sha2" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4" +dependencies = [ + "cfg-if", + "cpufeatures 0.3.0", + "digest", +] + +[[package]] +name = "sharded-slab" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" +dependencies = [ + "lazy_static", +] + +[[package]] +name = "shlex" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" + +[[package]] +name = "signal-hook-registry" +version = "1.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" +dependencies = [ + "errno", + "libc", +] + +[[package]] +name = "signature" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28d567dcbaf0049cb8ac2608a76cd95ff9e4412e1899d389ee400918ca7537f5" + +[[package]] +name = "simd_cesu8" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33" +dependencies = [ + "rustc_version", + "simdutf8", +] + +[[package]] +name = "simdutf8" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" + +[[package]] +name = "simple-dns" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a75cbde1bf934313596a004973e462f9a82caa814dcf1a5f507bdf51597eeb4" +dependencies = [ + "bitflags", +] + +[[package]] +name = "siphasher" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649" + +[[package]] +name = "slab" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" + +[[package]] +name = "smallvec" +version = "1.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" +dependencies = [ + "serde", +] + +[[package]] +name = "socket2" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "sorted-index-buffer" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea06cc588e43c632923a55450401b8f25e628131571d4e1baea1bdfdb2b5ed06" + +[[package]] +name = "spez" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c87e960f4dca2788eeb86bbdde8dd246be8948790b7618d656e68f9b720a86e8" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "spin" +version = "0.9.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" +dependencies = [ + "lock_api", +] + +[[package]] +name = "spin" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591" + +[[package]] +name = "spki" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d9efca8738c78ee9484207732f728b1ef517bbb1833d6fc0879ca898a522f6f" +dependencies = [ + "base64ct", + "der", +] + +[[package]] +name = "stable_deref_trait" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "strum" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd" +dependencies = [ + "strum_macros", +] + +[[package]] +name = "strum_macros" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "syn" +version = "2.0.117" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "sync_wrapper" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" +dependencies = [ + "futures-core", +] + +[[package]] +name = "synstructure" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "system-configuration" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b" +dependencies = [ + "bitflags", + "core-foundation 0.9.4", + "system-configuration-sys", +] + +[[package]] +name = "system-configuration-sys" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "tagptr" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" + +[[package]] +name = "thiserror" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "thread_local" +version = "1.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "time" +version = "0.3.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c" +dependencies = [ + "deranged", + "itoa", + "js-sys", + "libc", + "num-conv", + "num_threads", + "powerfmt", + "serde_core", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" + +[[package]] +name = "time-macros" +version = "0.2.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215" +dependencies = [ + "num-conv", + "time-core", +] + +[[package]] +name = "tinystr" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" +dependencies = [ + "displaydoc", + "zerovec", +] + +[[package]] +name = "tinyvec" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "tokio" +version = "1.52.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe" +dependencies = [ + "bytes", + "libc", + "mio", + "parking_lot", + "pin-project-lite", + "signal-hook-registry", + "socket2", + "tokio-macros", + "windows-sys 0.61.2", +] + +[[package]] +name = "tokio-macros" +version = "2.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tokio-rustls" +version = "0.26.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" +dependencies = [ + "rustls", + "tokio", +] + +[[package]] +name = "tokio-stream" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" +dependencies = [ + "futures-core", + "pin-project-lite", + "tokio", + "tokio-util", +] + +[[package]] +name = "tokio-util" +version = "0.7.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "futures-util", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "tokio-websockets" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dad543404f98bfc969aeb71994105c592acfc6c43323fddcd016bb208d1c65cb" +dependencies = [ + "base64", + "bytes", + "futures-core", + "futures-sink", + "getrandom 0.4.2", + "http", + "httparse", + "rand", + "ring", + "rustls-pki-types", + "sha1_smol", + "simdutf8", + "tokio", + "tokio-rustls", + "tokio-util", +] + +[[package]] +name = "toml_datetime" +version = "1.1.1+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7" +dependencies = [ + "serde_core", +] + +[[package]] +name = "toml_edit" +version = "0.25.12+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2153edc6955a6c354fad8f5efd38b6a8769bdccf9fe50f8e1329f81b0baa5d7" +dependencies = [ + "indexmap", + "toml_datetime", + "toml_parser", + "winnow", +] + +[[package]] +name = "toml_parser" +version = "1.1.2+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526" +dependencies = [ + "winnow", +] + +[[package]] +name = "tower" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper", + "tokio", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-http" +version = "0.6.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" +dependencies = [ + "bitflags", + "bytes", + "futures-util", + "http", + "http-body", + "pin-project-lite", + "tower", + "tower-layer", + "tower-service", + "url", +] + +[[package]] +name = "tower-layer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" + +[[package]] +name = "tower-service" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" + +[[package]] +name = "tracing" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" +dependencies = [ + "log", + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tracing-core" +version = "0.1.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" +dependencies = [ + "once_cell", + "valuable", +] + +[[package]] +name = "tracing-log" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" +dependencies = [ + "log", + "once_cell", + "tracing-core", +] + +[[package]] +name = "tracing-subscriber" +version = "0.3.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319" +dependencies = [ + "matchers", + "nu-ansi-term", + "once_cell", + "regex-automata", + "sharded-slab", + "smallvec", + "thread_local", + "tracing", + "tracing-core", + "tracing-log", +] + +[[package]] +name = "try-lock" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + +[[package]] +name = "typenum" +version = "1.20.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20" + +[[package]] +name = "unicode-ident" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" + +[[package]] +name = "unicode-segmentation" +version = "1.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8" + +[[package]] +name = "unicode-xid" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" + +[[package]] +name = "universal-hash" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" +dependencies = [ + "crypto-common 0.1.7", + "subtle", +] + +[[package]] +name = "untrusted" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + +[[package]] +name = "url" +version = "2.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", + "serde_derive", +] + +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + +[[package]] +name = "utf8parse" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" + +[[package]] +name = "uuid" +version = "1.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d258b83ceec21034727ecee8c382cfa6c3e133699b0742c64571814fb420c9f7" +dependencies = [ + "getrandom 0.4.2", + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "valuable" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" + +[[package]] +name = "vergen" +version = "9.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b849a1f6d8639e8de261e81ee0fc881e3e3620db1af9f2e0da015d4382ceaf75" +dependencies = [ + "anyhow", + "derive_builder", + "rustversion", + "vergen-lib", +] + +[[package]] +name = "vergen-gitcl" +version = "9.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ff3b5300a085d6bcd8fc96a507f706a28ae3814693236c9b409db71a1d15b9" +dependencies = [ + "anyhow", + "derive_builder", + "rustversion", + "time", + "vergen", + "vergen-lib", +] + +[[package]] +name = "vergen-lib" +version = "9.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b34a29ba7e9c59e62f229ae1932fb1b8fb8a6fdcc99215a641913f5f5a59a569" +dependencies = [ + "anyhow", + "derive_builder", + "rustversion", +] + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "walkdir" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" +dependencies = [ + "same-file", + "winapi-util", +] + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasip2" +version = "1.0.3+wasi-0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6" +dependencies = [ + "wit-bindgen 0.57.1", +] + +[[package]] +name = "wasip3" +version = "0.4.0+wasi-0.3.0-rc-2026-01-06" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" +dependencies = [ + "wit-bindgen 0.51.0", +] + +[[package]] +name = "wasm-bindgen" +version = "0.2.122" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409" +dependencies = [ + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.72" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.122" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.122" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e" +dependencies = [ + "bumpalo", + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.122" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "wasm-encoder" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" +dependencies = [ + "leb128fmt", + "wasmparser", +] + +[[package]] +name = "wasm-metadata" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" +dependencies = [ + "anyhow", + "indexmap", + "wasm-encoder", + "wasmparser", +] + +[[package]] +name = "wasm-streams" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb" +dependencies = [ + "futures-util", + "js-sys", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "wasmparser" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" +dependencies = [ + "bitflags", + "hashbrown 0.15.5", + "indexmap", + "semver", +] + +[[package]] +name = "web-sys" +version = "0.3.99" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "web-time" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "webpki-root-certs" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c" +dependencies = [ + "rustls-pki-types", +] + +[[package]] +name = "webpki-roots" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d" +dependencies = [ + "rustls-pki-types", +] + +[[package]] +name = "widestring" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471" + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows" +version = "0.62.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580" +dependencies = [ + "windows-collections", + "windows-core", + "windows-future", + "windows-numerics", +] + +[[package]] +name = "windows-collections" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610" +dependencies = [ + "windows-core", +] + +[[package]] +name = "windows-core" +version = "0.62.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-link", + "windows-result", + "windows-strings", +] + +[[package]] +name = "windows-future" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb" +dependencies = [ + "windows-core", + "windows-link", + "windows-threading", +] + +[[package]] +name = "windows-implement" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "windows-interface" +version = "0.59.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + +[[package]] +name = "windows-numerics" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26" +dependencies = [ + "windows-core", + "windows-link", +] + +[[package]] +name = "windows-registry" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" +dependencies = [ + "windows-link", + "windows-result", + "windows-strings", +] + +[[package]] +name = "windows-result" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-strings" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets", +] + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_gnullvm", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", +] + +[[package]] +name = "windows-threading" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "winnow" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1" +dependencies = [ + "memchr", +] + +[[package]] +name = "wit-bindgen" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" +dependencies = [ + "wit-bindgen-rust-macro", +] + +[[package]] +name = "wit-bindgen" +version = "0.57.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e" + +[[package]] +name = "wit-bindgen-core" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" +dependencies = [ + "anyhow", + "heck", + "wit-parser", +] + +[[package]] +name = "wit-bindgen-rust" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" +dependencies = [ + "anyhow", + "heck", + "indexmap", + "prettyplease", + "syn", + "wasm-metadata", + "wit-bindgen-core", + "wit-component", +] + +[[package]] +name = "wit-bindgen-rust-macro" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" +dependencies = [ + "anyhow", + "prettyplease", + "proc-macro2", + "quote", + "syn", + "wit-bindgen-core", + "wit-bindgen-rust", +] + +[[package]] +name = "wit-component" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" +dependencies = [ + "anyhow", + "bitflags", + "indexmap", + "log", + "serde", + "serde_derive", + "serde_json", + "wasm-encoder", + "wasm-metadata", + "wasmparser", + "wit-parser", +] + +[[package]] +name = "wit-parser" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" +dependencies = [ + "anyhow", + "id-arena", + "indexmap", + "log", + "semver", + "serde", + "serde_derive", + "serde_json", + "unicode-xid", + "wasmparser", +] + +[[package]] +name = "wmi" +version = "0.18.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c81b85c57a57500e56669586496bf2abd5cf082b9d32995251185d105208b64" +dependencies = [ + "chrono", + "futures", + "log", + "serde", + "thiserror", + "windows", + "windows-core", +] + +[[package]] +name = "writeable" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" + +[[package]] +name = "ws_stream_wasm" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c173014acad22e83f16403ee360115b38846fe754e735c5d9d3803fe70c6abc" +dependencies = [ + "async_io_stream", + "futures", + "js-sys", + "log", + "pharos", + "rustc_version", + "send_wrapper", + "thiserror", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "xml-rs" +version = "0.8.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f" + +[[package]] +name = "xmltree" +version = "0.10.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7d8a75eaf6557bb84a65ace8609883db44a29951042ada9b393151532e41fcb" +dependencies = [ + "xml-rs", +] + +[[package]] +name = "yoke" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5" +dependencies = [ + "stable_deref_trait", + "yoke-derive", + "zerofrom", +] + +[[package]] +name = "yoke-derive" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", +] + +[[package]] +name = "zero-rtt-blob-service" +version = "0.1.0" +dependencies = [ + "blake3", + "bytes", + "clap", + "data-encoding", + "iroh", + "iroh-tickets", + "n0-error", + "noq-proto", + "papaya", + "tokio", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "zerofrom" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272" +dependencies = [ + "zerofrom-derive", +] + +[[package]] +name = "zerofrom-derive" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", +] + +[[package]] +name = "zeroize" +version = "1.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" +dependencies = [ + "zeroize_derive", +] + +[[package]] +name = "zeroize_derive" +version = "1.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "zerotrie" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" +dependencies = [ + "displaydoc", + "yoke", + "zerofrom", +] + +[[package]] +name = "zerovec" +version = "0.11.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" +dependencies = [ + "yoke", + "zerofrom", + "zerovec-derive", +] + +[[package]] +name = "zerovec-derive" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "zmij" +version = "1.0.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" diff --git a/zero-rtt-blob-service/Cargo.toml b/zero-rtt-blob-service/Cargo.toml new file mode 100644 index 0000000..c7d2e99 --- /dev/null +++ b/zero-rtt-blob-service/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "zero-rtt-blob-service" +version = "0.1.0" +edition = "2024" + +[dependencies] +blake3 = "1" +bytes = "1" +clap = { version = "4", features = ["derive"] } +data-encoding = "2" +iroh = { version = "=1.0.0-rc.1", features = ["qlog"] } +iroh-tickets = "=1.0.0-rc.1" +n0-error = "=1.0.0-rc.0" +noq-proto = { version = "=1.0.0-rc.1", default-features = false, features = ["bloom"] } +papaya = "0.2" +tokio = { version = "1", features = ["full"] } +tracing = "0.1" +tracing-subscriber = "0.3" + +# iroh branch with the shared client-side QUIC token store fix: NEW_TOKEN +# address-validation tokens now survive across connections (the default minted a +# fresh, empty store per connection). iroh-base is patched too so iroh-tickets +# (still from crates.io) resolves the same iroh-base as the patched iroh. +[patch.crates-io] +iroh = { git = "https://github.com/n0-computer/iroh", branch = "persistent-token-store" } +iroh-base = { git = "https://github.com/n0-computer/iroh", branch = "persistent-token-store" } diff --git a/zero-rtt-blob-service/client/zero-rtt-blob-service-client-1780660628454-8b8114180e7164900b19ac2a4eab7d8e564644a8-client.qlog b/zero-rtt-blob-service/client/zero-rtt-blob-service-client-1780660628454-8b8114180e7164900b19ac2a4eab7d8e564644a8-client.qlog new file mode 100644 index 0000000..cef35c3 --- /dev/null +++ b/zero-rtt-blob-service/client/zero-rtt-blob-service-client-1780660628454-8b8114180e7164900b19ac2a4eab7d8e564644a8-client.qlog @@ -0,0 +1,218 @@ +{"file_schema":"urn:ietf:params:qlog:file:sequential","serialization_format":"JSON-SEQ","trace":{"common_fields":{"group_id":"8b8114180e7164900b19ac2a4eab7d8e564644a8","reference_time":{"clock_type":"","epoch":"","wall_clock_time":null}},"vantage_point":{"type":"client"},"event_schemas":[]}} +{"time":0.0,"name":"quic:connection_started","data":{"local":{"connection_ids":["b6576b2f39de457e"]},"remote":{"ip_v6":"fd15:70a:510b::1","port_v6":12345,"connection_ids":["8b8114180e7164900b19ac2a4eab7d8e564644a8"]}}} +{"time":0.0,"name":"quic:parameters_set","data":{"initiator":"local","initial_source_connection_id":"b6576b2f39de457e","disable_active_migration":false,"max_idle_timeout":30000,"max_udp_payload_size":1472,"ack_delay_exponent":3,"max_ack_delay":25,"active_connection_id_limit":5,"initial_max_data":4611686018427387903,"initial_max_stream_data_bidi_local":1250000,"initial_max_stream_data_bidi_remote":1250000,"initial_max_stream_data_uni":1250000,"initial_max_streams_bidi":100,"initial_max_streams_uni":100,"min_ack_delay":1000,"initial_max_path_id":7,"max_remote_nat_traversal_addresses":32,"unknown_parameters":[],"max_datagram_frame_size":65535,"grease_quic_bit":false}} +{"time":0.0,"name":"quic:tuple_assigned","data":{"tuple_id":"p0","tuple_remote":{"ip_v6":"fd15:70a:510b::1","port_v6":12345}}} +{"time":1.822292,"name":"quic:packet_sent","data":{"header":{"packet_type":"initial","packet_number":0,"path_id":0,"length":1200,"scid":"b6576b2f39de457e","dcid":"8b8114180e7164900b19ac2a4eab7d8e564644a8"},"frames":[{"frame_type":"crypto","offset":0,"raw":{"length":373}},{"frame_type":"padding","raw":{"length":768,"payload_length":768}}]},"tuple":"p0"} +{"time":1.822292,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":1.822292,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":1.822292,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":999.0}} +{"time":1.822292,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":333.0,"smoothed_rtt":333.0,"latest_rtt":333.0,"rtt_variance":166.5,"pto_count":0,"congestion_window":12000,"bytes_in_flight":1200,"ssthresh":18446744073709551615,"packets_in_flight":1}} +{"time":5.6385,"name":"quic:tuple_assigned","data":{"tuple_id":"p0","tuple_remote":{"ip_v6":"::ffff:192.168.178.188","port_v6":60719},"tuple_local":{"ip_v4":"192.168.178.188"}}} +{"time":5.6385,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":5.6385,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":5.6385,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":11.448624}} +{"time":5.6385,"name":"quic:packet_received","data":{"header":{"packet_type":"initial","packet_number":0,"path_id":0,"length":146,"scid":"2855c5ea3aa336bc","dcid":"b6576b2f39de457e"},"frames":[{"frame_type":"ack","ack_delay":346.0,"acked_ranges":[[0,1]],"ect1":0,"ect0":1,"ce":0},{"frame_type":"crypto","offset":0,"raw":{"length":90}}]},"tuple":"p0"} +{"time":5.6385,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":5.6385,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":5.6385,"name":"quic:parameters_set","data":{"initiator":"remote","original_destination_connection_id":"8b8114180e7164900b19ac2a4eab7d8e564644a8","initial_source_connection_id":"2855c5ea3aa336bc","stateless_reset_token":"526d39771bf3275c82a5ff85e11651d3","disable_active_migration":false,"max_idle_timeout":30000,"max_udp_payload_size":1472,"ack_delay_exponent":3,"max_ack_delay":25,"active_connection_id_limit":5,"initial_max_data":4611686018427387903,"initial_max_stream_data_bidi_local":1250000,"initial_max_stream_data_bidi_remote":1250000,"initial_max_stream_data_uni":1250000,"initial_max_streams_bidi":100,"initial_max_streams_uni":100,"min_ack_delay":1000,"initial_max_path_id":7,"max_remote_nat_traversal_addresses":32,"unknown_parameters":[],"max_datagram_frame_size":65535,"grease_quic_bit":false}} +{"time":5.6385,"name":"quic:packet_received","data":{"header":{"packet_type":"handshake","packet_number":0,"path_id":0,"length":1054,"scid":"2855c5ea3aa336bc","dcid":"b6576b2f39de457e"},"frames":[{"frame_type":"crypto","offset":0,"raw":{"length":398}},{"frame_type":"padding","raw":{"length":610,"payload_length":610}}]},"tuple":"p0"} +{"time":5.6385,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":3.816,"smoothed_rtt":3.816,"latest_rtt":3.816,"rtt_variance":1.908,"bytes_in_flight":0,"packets_in_flight":0}} +{"time":7.220334,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":7.220334,"name":"quic:packet_sent","data":{"header":{"packet_type":"initial","packet_number":1,"path_id":0,"length":52,"scid":"b6576b2f39de457e","dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"ack","ack_delay":197.0,"acked_ranges":[[0,1]],"ect1":0,"ect0":1,"ce":0}]},"tuple":"p0"} +{"time":7.220334,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":7.220334,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":7.220334,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":11.448624}} +{"time":7.220334,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":7.220334,"name":"quic:packet_sent","data":{"header":{"packet_type":"handshake","packet_number":0,"path_id":0,"length":1148,"scid":"b6576b2f39de457e","dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"ack","ack_delay":197.0,"acked_ranges":[[0,1]],"ect1":0,"ect0":1,"ce":0},{"frame_type":"crypto","offset":0,"raw":{"length":181}},{"frame_type":"padding","raw":{"length":912,"payload_length":912}}]},"tuple":"p0"} +{"time":7.220334,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":7.220334,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":7.220334,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":7.220334,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":7.220334,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":11.448624}} +{"time":7.220334,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":1148,"packets_in_flight":1}} +{"time":7.220334,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":0,"path_id":0,"length":1326,"dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1298,"payload_length":1298}}]},"tuple":"p0"} +{"time":7.220334,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":7.220334,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":7.220334,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":11.448624}} +{"time":7.769625,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":1,"path_id":0,"length":1170,"dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"path_status_backup","path_id":0,"path_status_sequence_number":1},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"b4206c5c604ecf02","stateless_reset_token":"3201c0d8005c3c583d6c8c545392bbf2"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"246f8999d91c54a9","stateless_reset_token":"68f3269f3f9f1c20ceb4d3c7b75cb6bd"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"523861f914be35ee","stateless_reset_token":"21fce017b271e752e3ebc9da83c87e26"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"c3d69d535e27d24f","stateless_reset_token":"b3b7471fef08505c300b41b094717ee4"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"7ead763344d3f8a3","stateless_reset_token":"f4f9a9e3d92f5972cb50fe8e910119ed"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"af08c4b59e0b0f60","stateless_reset_token":"bd99179a1d9b7e9410336ac77c09bc05"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"f0cd41d2947e5d5b","stateless_reset_token":"4737c32bd43215553a121313a20de72f"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"96e480a84ef6f774","stateless_reset_token":"c0781aa4c5932400faccdcf21112a0c7"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"b1ddf088afa0559a","stateless_reset_token":"105f80ee3c6c5c3acc35007ca3998e94"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"3ed29fe9dcc74748","stateless_reset_token":"1bec9c5b82d94a7620e8cfc724c67c3f"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"13829a67ad0645f5","stateless_reset_token":"dc9b6d9a61d7ca476bd28eb8f2c420bd"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"734578908efbe90a","stateless_reset_token":"32738186c6c1beb63c9d6a541a0068a7"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"10702fc1a4a79061","stateless_reset_token":"ea6d8196a3bf912ce8940b7efb4f92e9"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"45751168f9cee1c5","stateless_reset_token":"713f01d7646a2b67848fb27318868a49"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"4217db69d05cf7b1","stateless_reset_token":"ae858f019a49d0339204cbe0a2230b9e"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"04e3e97118dbc27d","stateless_reset_token":"cdf3cbaf497bb84eb2123d93512aba4f"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"2fd609070aad6f25","stateless_reset_token":"1fcb7d4174d39670e552836be00a2d89"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"52d528f640785eb9","stateless_reset_token":"f2651f6bab58493308944795af452cf6"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"0401da697d89419a","stateless_reset_token":"36158fb87463f4ef7066efa25478ac55"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"50efa097be9e766a","stateless_reset_token":"aa94f657ccd6c181d9f09f8c683420ac"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"77b2483fdd4a5ff1","stateless_reset_token":"76607246d297e8a2619539783db4f70d"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e24808f5e8b2d6b6","stateless_reset_token":"e46edcbd0929d69136325ee2483c0323"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e409316dc5ffe0ee","stateless_reset_token":"2532a26e0bb7275a77b4e24fbdf1fa8e"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"36d2eb2c8a0a4fd0","stateless_reset_token":"4f87dda4b1a1c47c59ce6a4005db4968"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"b865ca0977e6ef44","stateless_reset_token":"c9853244659906a3d11d9cc04e21e873"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"f58175582124b99d","stateless_reset_token":"49dc65f5f7e081fae68d3f15a1e2215b"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"6bed4ce1b31e3e5c","stateless_reset_token":"16faad3e3ea8b5ec9a937a86244d023c"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"06b6033b95f54778","stateless_reset_token":"a35d214e755dbcb2f6cd4761c7ec0422"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"8dab3be2ee38906d","stateless_reset_token":"672f148c30a566a6fad479c8dd07e345"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"72c004fc45adc154","stateless_reset_token":"ea10849589c8b6951d5247c6e8644b50"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"62adcfa85b8e6fe8","stateless_reset_token":"46e43b5a8d03f75a3ab0c2e3455c6b79"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"4453e23ecf9345a7","stateless_reset_token":"9267f8f5ce2df1af7eab3747a3db73df"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"a30eebb9d1611398","stateless_reset_token":"62c4ef2fa1a0e07637122d4081c18bf1"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"05383e436a8231ca","stateless_reset_token":"f8e5f1f304d041ffdfc0fcd64b0c805c"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"3d05044cf286c8e1","stateless_reset_token":"687149b4b93d44b91ec23efba587dd71"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"46a8750253c45f7a","stateless_reset_token":"09bc542bc5294fb0f7c13d93ff22e6f0"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"9dd5693ea523b8a0","stateless_reset_token":"b09232052bd734f710d1e08a674ab647"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"9f99a1e96f6743c8","stateless_reset_token":"32192eb12843f02fe737b64e7da85e62"}]},"tuple":"p0"} +{"time":7.769625,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":7.769625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":7.769625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":10.899333}} +{"time":7.769625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"set","delta":0.297664}} +{"time":7.769625,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":3644,"packets_in_flight":3}} +{"time":7.769625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"set","delta":0.297664}} +{"time":8.532375,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":2,"path_id":0,"length":56,"dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"232e0510fff39b98","stateless_reset_token":"fe9e32a43d83610d2eb11cb2b31dafe3"}]},"tuple":"p0"} +{"time":8.532375,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":8.532375,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":8.532375,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":10.136583}} +{"time":8.532375,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":3700,"packets_in_flight":4}} +{"time":8.651375,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"expired"}} +{"time":8.713625,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":8.713625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":8.713625,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":8.713625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":8.713625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":36.267376}} +{"time":8.713625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":36.39182}} +{"time":8.713625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"set","delta":25.0}} +{"time":8.713625,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":0,"path_id":0,"length":461,"dcid":"b6576b2f39de457e"},"frames":[{"frame_type":"handshake_done"},{"frame_type":"path_ack","path_id":0,"ack_delay":103.0,"acked_ranges":[[0,1]],"ect1":0,"ect0":1,"ce":0},{"frame_type":"crypto","offset":0,"raw":{"length":178}},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"29aa2a2c5abcc2be","stateless_reset_token":"17ca73608529e5933a404ee55cd9ffb6"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"65b29b405cf74546","stateless_reset_token":"7ed0a262d2430eb76c50e39f2c6acbce"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"52ee0f9b11d143ac","stateless_reset_token":"215558cf317a8e84826d44d808aa0d30"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"6150bbb443ed17cb","stateless_reset_token":"3952b1314464213ed45328013f1fe3f5"},{"frame_type":"new_token","token":{"type":"retry","raw":{"length":59,"data":"327edc9b2591ef14f09ee02c9b80cd0b004e7981efc080f5b824166b5cbdcdc8c42d114237d1a30170747e85de5d1fdf9d54d673aa0116434b42e4"}}},{"frame_type":"new_token","token":{"type":"retry","raw":{"length":59,"data":"dcc09c67de66865e665228b310e940fc6eccec43ca4c2b4a289a8a6f3786790e0695725333efd9f547932395b7c613ef5914e2c0fb5efb3aefc7c7"}}}]},"tuple":"p0"} +{"time":8.713625,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":1.493,"smoothed_rtt":3.525,"latest_rtt":1.493,"rtt_variance":2.011,"bytes_in_flight":1226,"packets_in_flight":2}} +{"time":8.759999,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":8.759999,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":8.759999,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":8.759999,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":8.759999,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":1,"path_id":0,"length":1326,"dcid":"b6576b2f39de457e"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1298,"payload_length":1298}}]},"tuple":"p0"} +{"time":9.208917,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":9.208917,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":9.208917,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":9.208917,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":9.208917,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"cancelled"}} +{"time":9.208917,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":2,"path_id":0,"length":1089,"dcid":"b4206c5c604ecf02"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":8.0,"acked_ranges":[[0,3]],"ect1":0,"ect0":3,"ce":0},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"b5ae84dad8e786af","stateless_reset_token":"6d2386882834f8b9cab63cb9b3d92f2d"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"b4c41bcdf3d58f20","stateless_reset_token":"222c4f0d646a6b6dcd0ab2fc8a88b229"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"4c5aea171fec2f75","stateless_reset_token":"0c34c807ef5c96c6edc4c5535d54cc95"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"3ad51d26866208a6","stateless_reset_token":"1ebc41395516e76304b34bd41e587658"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"69eadbc1ce081b0e","stateless_reset_token":"5a393da1bf13a7df52f925690bd9bcd2"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"7dc821e7836b4702","stateless_reset_token":"776c7a0b90930db438f71b30e2a000e5"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"cc3666f79d10270b","stateless_reset_token":"ac32fc93680593fe07c285f5962c9be9"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"a86f0c977b3dce2e","stateless_reset_token":"4f50b37b3a87ad4f4766174134b21590"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"6fac73e00b075032","stateless_reset_token":"b2d1bafcff20739037915376d65fef8c"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"69ae8b491cfac9dd","stateless_reset_token":"6fafd20ef1189da0edcc430c9efeeb19"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"267ab0a621391663","stateless_reset_token":"5d71c0db720fe2d2602e50afef18fdf2"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"979956369f71e789","stateless_reset_token":"e42647f55a5dd64fd0e617b25a0cb4ff"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e02cf4fee6351cec","stateless_reset_token":"068172035155d560508a4e9d68c0a4e2"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"4a347dc2dc76b3e8","stateless_reset_token":"64f058b7c2acc7f3f4fa891c159348a1"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"b759f077714f6c94","stateless_reset_token":"fd01a02e84a2a117334e969031390430"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e3fb46dfca343fb0","stateless_reset_token":"3383e866ad7ba91e8b23fea499ee1516"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"9a6e38c3540e0fb2","stateless_reset_token":"44844f14a8af1a66fb2d6eb4858bf51d"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"bddf63403c536b3c","stateless_reset_token":"ae05fead880c68c8b2021be3a7c0352d"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"0d0e85a2ca182de4","stateless_reset_token":"d5e7971ba768143670bc4757ece2c482"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"563a900950f8b56d","stateless_reset_token":"d0d49a6fd8be24b09f10987a07b4cd4a"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"161626235c0054b6","stateless_reset_token":"d0a11866568303be4d753552e0728ce4"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"ccebacb051377ce7","stateless_reset_token":"8e395f8fd46adb86385efd9d3a4e7708"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"1091d2d9123d7ca4","stateless_reset_token":"3a766aa319365909ad2da026d7c27e00"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"c96aa68c81fa0699","stateless_reset_token":"67506a780b18025157c28de36e808a5b"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"f433c6f84f820671","stateless_reset_token":"5b411dad846e9083dd80a02cda472470"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"4e82e81648b0faf2","stateless_reset_token":"65b8335fa70d78f221611f6ca751c0c6"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"9a77cd4e4916eb20","stateless_reset_token":"faf91604e912760b800848a2f21921b9"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"64506b8aaaa32327","stateless_reset_token":"b098f218c3f66eb630f3966f37255f15"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"c0fb92faa3c864dd","stateless_reset_token":"8a3acb565a15c6c8f85986a15d356b88"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"602725f4733eb6a6","stateless_reset_token":"5ef984441a0dae82f8cfa7b5a34200f5"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"4d2eafe3daab441b","stateless_reset_token":"d37b118340d5f1f186aeadef455c6c46"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e552908ec2c79eec","stateless_reset_token":"254ae1ed7d5bb5e9797c4e0887ddfbde"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"04319b741df1c1cd","stateless_reset_token":"2f42cf8baf2710f11d8a560a04087c67"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"c68553f4810657df","stateless_reset_token":"c65b76ed2f2ffff49318dee8bc26e970"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"f0808bb439c8bf8e","stateless_reset_token":"82a7d7854f731a34583a1517c150fed8"},{"frame_type":"path_retire_connection_id","path_id":0,"sequence_number":0}]},"tuple":"p0"} +{"time":9.208917,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":0.676,"smoothed_rtt":3.169,"latest_rtt":0.676,"rtt_variance":2.221,"bytes_in_flight":0,"packets_in_flight":0}} +{"time":9.765584,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":9.765584,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":3,"path_id":0,"length":51,"dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":69.0,"acked_ranges":[[0,3]],"ect1":0,"ect0":3,"ce":0},{"frame_type":"reach_out","round":1,"ip_v4":"192.168.178.188","port":49624},{"frame_type":"path_status_available","path_id":0,"path_status_sequence_number":2}]},"tuple":"p0"} +{"time":9.765584,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":9.765584,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":9.765584,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":9.765584,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":9.765584,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":37.0544}} +{"time":9.765584,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":51,"packets_in_flight":1}} +{"time":9.765584,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":4,"path_id":0,"length":1389,"dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1361,"payload_length":1361}}]},"tuple":"p0"} +{"time":9.765584,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":9.765584,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":9.765584,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":37.0544}} +{"time":10.147834,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":5,"path_id":0,"length":1326,"dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":5,"retire_prior_to":0,"connection_id_length":8,"connection_id":"9b9a1ea5d8bf763b","stateless_reset_token":"03783123d23862f8d47054d16fdd064e"},{"frame_type":"stream","stream_id":0,"offset":0,"fin":false,"raw":{"length":1268}}]},"tuple":"p0"} +{"time":10.147834,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":10.147834,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":10.147834,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":37.0544}} +{"time":10.147834,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":2766,"packets_in_flight":3}} +{"time":10.147834,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":6,"path_id":0,"length":1326,"dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"stream","stream_id":0,"offset":1268,"fin":false,"raw":{"length":1296}}]},"tuple":"p0"} +{"time":10.147834,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":10.147834,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":10.147834,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":37.0544}} +{"time":10.147834,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":4092,"packets_in_flight":4}} +{"time":10.147834,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":7,"path_id":0,"length":1326,"dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"stream","stream_id":0,"offset":2564,"fin":false,"raw":{"length":1296}}]},"tuple":"p0"} +{"time":10.147834,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":10.147834,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":10.147834,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":37.0544}} +{"time":10.147834,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":5418,"packets_in_flight":5}} +{"time":10.147834,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":8,"path_id":0,"length":1326,"dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"stream","stream_id":0,"offset":3860,"fin":false,"raw":{"length":1296}}]},"tuple":"p0"} +{"time":10.147834,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":10.147834,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":10.147834,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":37.0544}} +{"time":10.147834,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":6744,"packets_in_flight":6}} +{"time":10.147834,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":9,"path_id":0,"length":1326,"dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"stream","stream_id":0,"offset":5156,"fin":false,"raw":{"length":1296}}]},"tuple":"p0"} +{"time":10.147834,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":10.147834,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":10.147834,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":37.0544}} +{"time":10.147834,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"set","delta":2.65006}} +{"time":10.147834,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":8070,"packets_in_flight":7}} +{"time":10.147834,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"set","delta":2.65006}} +{"time":10.410792,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":10.410792,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":10.410792,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":10.410792,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":10.410792,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"set","delta":25.0}} +{"time":10.410792,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":3,"path_id":0,"length":35,"dcid":"b4206c5c604ecf02"},"frames":[{"frame_type":"path_challenge","data":"PATH_CHALLENGE(610e3e85a050ebaa)"}]},"tuple":"p0"} +{"time":10.471917,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":10.471917,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":10.471917,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":10.471917,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":10.471917,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":36.664562}} +{"time":10.471917,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":4,"path_id":0,"length":35,"dcid":"b4206c5c604ecf02"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":19.0,"acked_ranges":[[3,5]],"ect1":0,"ect0":5,"ce":0}]},"tuple":"p0"} +{"time":10.471917,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"smoothed_rtt":2.861,"latest_rtt":0.706,"rtt_variance":2.281,"congestion_window":13440,"bytes_in_flight":6630,"packets_in_flight":5}} +{"time":10.531542,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":10.531542,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":10.531542,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":10.531542,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":10.531542,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":5,"path_id":0,"length":1389,"dcid":"b4206c5c604ecf02"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1361,"payload_length":1361}}]},"tuple":"p0"} +{"time":10.874792,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":10.874792,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":10.874792,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":10.874792,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":10.874792,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":35.875916}} +{"time":10.874792,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":6,"path_id":0,"length":35,"dcid":"b4206c5c604ecf02"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":4.0,"acked_ranges":[[3,7]],"ect1":0,"ect0":7,"ce":0}]},"tuple":"p0"} +{"time":10.874792,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"smoothed_rtt":2.59,"latest_rtt":0.726,"rtt_variance":2.252,"congestion_window":16092,"bytes_in_flight":3978,"packets_in_flight":3}} +{"time":11.299167,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":11.299167,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":10,"path_id":0,"length":1389,"dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"immediate_ack"},{"frame_type":"path_ack","path_id":0,"ack_delay":53.0,"acked_ranges":[[3,7]],"ect1":0,"ect0":6,"ce":0},{"frame_type":"path_response","data":"PATH_RESPONSE(610e3e85a050ebaa)"},{"frame_type":"stream","stream_id":0,"offset":6452,"fin":false,"raw":{"length":1340}}]},"tuple":"p0"} +{"time":11.299167,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":11.299167,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":11.299167,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":11.299167,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":11.299167,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":36.602875}} +{"time":11.299167,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":5367,"packets_in_flight":4}} +{"time":11.299167,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":11,"path_id":0,"length":1389,"dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"stream","stream_id":0,"offset":7792,"fin":false,"raw":{"length":1359}}]},"tuple":"p0"} +{"time":11.299167,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":11.299167,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":11.299167,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":36.602875}} +{"time":11.299167,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":6756,"packets_in_flight":5}} +{"time":11.299167,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":12,"path_id":0,"length":882,"dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"stream","stream_id":0,"offset":9151,"fin":true,"raw":{"length":850}}]},"tuple":"p0"} +{"time":11.299167,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":11.299167,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":11.299167,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":36.602875}} +{"time":11.299167,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":7638,"packets_in_flight":6}} +{"time":11.299167,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":13,"path_id":0,"length":1420,"dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1392,"payload_length":1392}}]},"tuple":"p0"} +{"time":11.299167,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":11.299167,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":11.299167,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":36.602875}} +{"time":11.489125,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":11.489125,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":11.489125,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":11.489125,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":11.489125,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":35.28134}} +{"time":11.489125,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":7,"path_id":0,"length":35,"dcid":"b4206c5c604ecf02"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":4.0,"acked_ranges":[[3,9]],"ect1":0,"ect0":9,"ce":0}]},"tuple":"p0"} +{"time":11.489125,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"smoothed_rtt":2.43,"latest_rtt":1.341,"rtt_variance":2.01,"bytes_in_flight":6406,"packets_in_flight":5}} +{"time":11.727084,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":11.727084,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":11.727084,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":11.727084,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":11.727084,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":34.78567}} +{"time":11.727084,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":8,"path_id":0,"length":35,"dcid":"b4206c5c604ecf02"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":6.0,"acked_ranges":[[7,11]],"ect1":0,"ect0":11,"ce":0}]},"tuple":"p0"} +{"time":11.727084,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":0.427,"smoothed_rtt":2.18,"latest_rtt":0.427,"rtt_variance":2.008,"bytes_in_flight":3691,"packets_in_flight":3}} +{"time":11.895542,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":11.895542,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":11.895542,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":11.895542,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":11.895542,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":9,"path_id":0,"length":1420,"dcid":"b4206c5c604ecf02"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1392,"payload_length":1392}}]},"tuple":"p0"} +{"time":12.093208,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":12.093208,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":14,"path_id":0,"length":35,"dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":24.0,"acked_ranges":[[7,10]],"ect1":0,"ect0":9,"ce":0}]},"tuple":"p0"} +{"time":12.093208,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":12.093208,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":12.238999,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":12.238999,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":12.238999,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":12.238999,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":12.238999,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"cancelled"}} +{"time":12.238999,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":10,"path_id":0,"length":35,"dcid":"b4206c5c604ecf02"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":40.0,"acked_ranges":[[7,14]],"ect1":0,"ect0":14,"ce":0}]},"tuple":"p0"} +{"time":12.238999,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"smoothed_rtt":1.985,"latest_rtt":0.939,"rtt_variance":1.896,"bytes_in_flight":0,"packets_in_flight":0}} +{"time":12.350167,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":15,"path_id":0,"length":1452,"dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1424,"payload_length":1424}}]},"tuple":"p0"} +{"time":12.350167,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":12.350167,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":12.350167,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":12.350167,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":12.350167,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":34.57074}} +{"time":12.475542,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":12.475542,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":12.475542,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":12.475542,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":12.475542,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":11,"path_id":0,"length":1452,"dcid":"b4206c5c604ecf02"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1424,"payload_length":1424}}]},"tuple":"p0"} +{"time":12.475542,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":1452,"packets_in_flight":1}} +{"time":12.683043,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":12.683043,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":12.683043,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":12.683043,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":12.683043,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":12,"path_id":0,"length":61,"dcid":"b4206c5c604ecf02"},"frames":[{"frame_type":"stream","stream_id":0,"offset":0,"fin":true,"raw":{"length":32}}]},"tuple":"p0"} +{"time":12.776834,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":12.776834,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":16,"path_id":0,"length":35,"dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":11.0,"acked_ranges":[[7,13]],"ect1":0,"ect0":12,"ce":0}]},"tuple":"p0"} +{"time":12.776834,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":12.776834,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":12.909625,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":12.909625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":12.909625,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":12.909625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":12.909625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"cancelled"}} +{"time":12.909625,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":13,"path_id":0,"length":35,"dcid":"b4206c5c604ecf02"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":27.0,"acked_ranges":[[11,16]],"ect1":0,"ect0":16,"ce":0}]},"tuple":"p0"} +{"time":12.909625,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"smoothed_rtt":1.807,"latest_rtt":0.559,"rtt_variance":1.778,"bytes_in_flight":0,"packets_in_flight":0}} +{"time":14.104375,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"expired"}} +{"time":17.526749,"name":"quic:timer_updated","data":{"timer_type":"close","event_type":"set","delta":101.765945}} +{"time":17.561377,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":17,"path_id":0,"length":39,"dcid":"2855c5ea3aa336bc"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":581.0,"acked_ranges":[[10,14]],"ect1":0,"ect0":13,"ce":0},{"frame_type":"connection_close","error_space":"application_error","error_code":0,"reason":""}]},"tuple":"p0"} +{"time":18.01167,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":14,"path_id":0,"length":39,"dcid":"b4206c5c604ecf02"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":9.0,"acked_ranges":[[16,18]],"ect1":0,"ect0":18,"ce":0},{"frame_type":"connection_close","error_space":"transport_error","error":"no_error","reason":""}]},"tuple":"p0"} diff --git a/zero-rtt-blob-service/client/zero-rtt-blob-service-client-1780660628467-f4319b3d1716fd34a6439bc903a65c403f61a3b5-client.qlog b/zero-rtt-blob-service/client/zero-rtt-blob-service-client-1780660628467-f4319b3d1716fd34a6439bc903a65c403f61a3b5-client.qlog new file mode 100644 index 0000000..6fbda69 --- /dev/null +++ b/zero-rtt-blob-service/client/zero-rtt-blob-service-client-1780660628467-f4319b3d1716fd34a6439bc903a65c403f61a3b5-client.qlog @@ -0,0 +1,120 @@ +{"file_schema":"urn:ietf:params:qlog:file:sequential","serialization_format":"JSON-SEQ","trace":{"common_fields":{"group_id":"f4319b3d1716fd34a6439bc903a65c403f61a3b5","reference_time":{"clock_type":"","epoch":"","wall_clock_time":null}},"vantage_point":{"type":"client"},"event_schemas":[]}} +{"time":0.0,"name":"quic:connection_started","data":{"local":{"connection_ids":["db267428e7a0e043"]},"remote":{"ip_v6":"fd15:70a:510b::1","port_v6":12345,"connection_ids":["f4319b3d1716fd34a6439bc903a65c403f61a3b5"]}}} +{"time":0.0,"name":"quic:parameters_set","data":{"initiator":"local","initial_source_connection_id":"db267428e7a0e043","disable_active_migration":false,"max_idle_timeout":30000,"max_udp_payload_size":1472,"ack_delay_exponent":3,"max_ack_delay":25,"active_connection_id_limit":5,"initial_max_data":4611686018427387903,"initial_max_stream_data_bidi_local":1250000,"initial_max_stream_data_bidi_remote":1250000,"initial_max_stream_data_uni":1250000,"initial_max_streams_bidi":100,"initial_max_streams_uni":100,"min_ack_delay":1000,"initial_max_path_id":7,"max_remote_nat_traversal_addresses":32,"unknown_parameters":[],"max_datagram_frame_size":65535,"grease_quic_bit":false}} +{"time":0.0,"name":"quic:parameters_restored","data":{"disable_active_migration":false,"max_idle_timeout":30000,"max_udp_payload_size":1472,"active_connection_id_limit":5,"initial_max_data":4611686018427387903,"initial_max_stream_data_bidi_local":1250000,"initial_max_stream_data_bidi_remote":1250000,"initial_max_stream_data_uni":1250000,"initial_max_streams_bidi":100,"initial_max_streams_uni":100,"max_datagram_frame_size":65535,"grease_quic_bit":false}} +{"time":0.0,"name":"quic:tuple_assigned","data":{"tuple_id":"p0","tuple_remote":{"ip_v6":"fd15:70a:510b::1","port_v6":12345}}} +{"time":0.98324996,"name":"quic:packet_sent","data":{"header":{"packet_type":"initial","packet_number":0,"path_id":0,"length":526,"scid":"db267428e7a0e043","dcid":"f4319b3d1716fd34a6439bc903a65c403f61a3b5"},"frames":[{"frame_type":"crypto","offset":0,"raw":{"length":467}}]},"tuple":"p0"} +{"time":0.98324996,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":0.98324996,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":0.98324996,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":999.0}} +{"time":0.98324996,"name":"quic:packet_sent","data":{"header":{"packet_type":"0RTT","packet_number":0,"path_id":0,"length":674,"scid":"db267428e7a0e043","dcid":"f4319b3d1716fd34a6439bc903a65c403f61a3b5"},"frames":[{"frame_type":"stream","stream_id":0,"offset":0,"fin":true,"raw":{"length":33}},{"frame_type":"padding","raw":{"length":584,"payload_length":584}}]},"tuple":"p0"} +{"time":0.98324996,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":999.0}} +{"time":0.98324996,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":333.0,"smoothed_rtt":333.0,"latest_rtt":333.0,"rtt_variance":166.5,"pto_count":0,"congestion_window":12000,"bytes_in_flight":1200,"ssthresh":18446744073709551615,"packets_in_flight":2}} +{"time":3.160833,"name":"quic:tuple_assigned","data":{"tuple_id":"p0","tuple_remote":{"ip_v6":"::ffff:192.168.178.188","port_v6":60719},"tuple_local":{"ip_v4":"192.168.178.188"}}} +{"time":3.160833,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":3.160833,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":3.160833,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"cancelled"}} +{"time":3.160833,"name":"quic:packet_received","data":{"header":{"packet_type":"initial","packet_number":0,"path_id":0,"length":152,"scid":"b0a7d93fc5db4958","dcid":"db267428e7a0e043"},"frames":[{"frame_type":"ack","ack_delay":198.0,"acked_ranges":[[0,1]],"ect1":0,"ect0":1,"ce":0},{"frame_type":"crypto","offset":0,"raw":{"length":96}}]},"tuple":"p0"} +{"time":3.160833,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":3.160833,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":3.160833,"name":"quic:parameters_set","data":{"initiator":"remote","original_destination_connection_id":"f4319b3d1716fd34a6439bc903a65c403f61a3b5","initial_source_connection_id":"b0a7d93fc5db4958","stateless_reset_token":"b1842782fa179cf1a7ff4a2432fa6822","disable_active_migration":false,"max_idle_timeout":30000,"max_udp_payload_size":1472,"ack_delay_exponent":3,"max_ack_delay":25,"active_connection_id_limit":5,"initial_max_data":4611686018427387903,"initial_max_stream_data_bidi_local":1250000,"initial_max_stream_data_bidi_remote":1250000,"initial_max_stream_data_uni":1250000,"initial_max_streams_bidi":100,"initial_max_streams_uni":100,"min_ack_delay":1000,"initial_max_path_id":7,"max_remote_nat_traversal_addresses":32,"unknown_parameters":[],"max_datagram_frame_size":65535,"grease_quic_bit":false}} +{"time":3.160833,"name":"quic:packet_received","data":{"header":{"packet_type":"handshake","packet_number":0,"path_id":0,"length":1048,"scid":"b0a7d93fc5db4958","dcid":"db267428e7a0e043"},"frames":[{"frame_type":"crypto","offset":0,"raw":{"length":253}},{"frame_type":"padding","raw":{"length":749,"payload_length":749}}]},"tuple":"p0"} +{"time":3.160833,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":2.177,"smoothed_rtt":2.177,"latest_rtt":2.177,"rtt_variance":1.088,"bytes_in_flight":674,"packets_in_flight":1}} +{"time":4.233416,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":4.233416,"name":"quic:packet_sent","data":{"header":{"packet_type":"initial","packet_number":1,"path_id":0,"length":52,"scid":"db267428e7a0e043","dcid":"b0a7d93fc5db4958"},"frames":[{"frame_type":"ack","ack_delay":134.0,"acked_ranges":[[0,1]],"ect1":0,"ect0":1,"ce":0}]},"tuple":"p0"} +{"time":4.233416,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":4.233416,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":4.233416,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"cancelled"}} +{"time":4.233416,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":4.233416,"name":"quic:packet_sent","data":{"header":{"packet_type":"handshake","packet_number":0,"path_id":0,"length":1148,"scid":"db267428e7a0e043","dcid":"b0a7d93fc5db4958"},"frames":[{"frame_type":"ack","ack_delay":134.0,"acked_ranges":[[0,1]],"ect1":0,"ect0":1,"ce":0},{"frame_type":"crypto","offset":0,"raw":{"length":52}},{"frame_type":"padding","raw":{"length":1042,"payload_length":1042}}]},"tuple":"p0"} +{"time":4.233416,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":4.233416,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":4.233416,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":4.233416,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":4.233416,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":6.532747}} +{"time":4.233416,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":1822,"packets_in_flight":2}} +{"time":4.233416,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":1,"path_id":0,"length":1326,"dcid":"b0a7d93fc5db4958"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1298,"payload_length":1298}}]},"tuple":"p0"} +{"time":4.233416,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":4.233416,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":4.233416,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":6.532747}} +{"time":5.033041,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":2,"path_id":0,"length":1170,"dcid":"b0a7d93fc5db4958"},"frames":[{"frame_type":"path_status_available","path_id":0,"path_status_sequence_number":2},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"988e230caa12b7db","stateless_reset_token":"7026c22232c21640adde8e978d17d359"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"ff37f3c3d199e730","stateless_reset_token":"ae869cd46961f972e98f335bb84ab0ae"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"53a2f45f01fcc441","stateless_reset_token":"faf1ee7346f29019d381711539e9df62"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"83372c9a4c897e35","stateless_reset_token":"2bd871ac1968a9e71cee030043159593"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"db7800399fad5e5b","stateless_reset_token":"a1013324c857a0c3653150fb21fd5de1"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"90d9d34eba1f0d1c","stateless_reset_token":"3f5e1f4a5a4e9290d5c3967365742074"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"32ab9d2f8a9309b5","stateless_reset_token":"5505fbb8e7f3763f6711e883daf7741a"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"49e08100ee093af2","stateless_reset_token":"4b201b63d9d5827a06c6b00878e002ac"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"4cfe725d0c980331","stateless_reset_token":"c70ffd9fa595fb04f6cbbe4dbe0264b0"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"d837b78f8764b219","stateless_reset_token":"754b2fc58dd6c916619e5596e575c688"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"a54143e767a3b593","stateless_reset_token":"9f7ee9b0c8dde731a0fb9d09d5571f35"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"057ba0dac703b583","stateless_reset_token":"fba27e9f0ef76b19d346adeafeef75d1"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"5e8115de44381a4d","stateless_reset_token":"f3b583c8ee577b5c26e620f818595f09"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"1a4efd4e22bddc42","stateless_reset_token":"c9c564e178f8ab3989cacaf4b45342a8"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"3979e3e70cc126a5","stateless_reset_token":"0a35380336de4700d52055f2077cff15"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"a76140e1d728288e","stateless_reset_token":"1a1876ba9d3ce27111eff1e7f59c1b56"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"789f0babe9f231b1","stateless_reset_token":"6370509f3b3ad89605c72ba4dbbbaadf"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"3cf2ec54690540db","stateless_reset_token":"6d215fe79aece7446e816e0661184704"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"d6b4e1bba4293be0","stateless_reset_token":"4909cade28d16abe443b3597d6add8ae"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"5d3c5d22d22b7ac4","stateless_reset_token":"da86a7a38f9ca01a6e83a124ed8b5d03"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e5535dabe8a87229","stateless_reset_token":"7727390df159c96e9ad6ec75ea071c72"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"d467dc0911c09e42","stateless_reset_token":"510b5057dccf1a40e3cb05411042298b"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"7981c71e96950487","stateless_reset_token":"882ba487aa4c778d046128658b983189"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"efcd441a31fa2f2f","stateless_reset_token":"dd4f89bbb541c6fd443532edb7b955c0"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"047a07181fd486dd","stateless_reset_token":"cf5e7bbb74e30602b2e38464979ed104"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"5999a4d155641183","stateless_reset_token":"b9a7d02742b683527673bd2b2744afbb"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"d488c32fe87ec34a","stateless_reset_token":"90887cf13eed0c768cf608122d31d772"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"5255e04fa8168cb4","stateless_reset_token":"cbec4489fd4e7f28b8688a12854848a4"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"1d2d1d118d49445d","stateless_reset_token":"3136f7bdf69bcc9f1857d7ae51ec04ec"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"6b423f20174b1e1b","stateless_reset_token":"284b3aa0cf5c1f5b51ab1d8bba6a2e93"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"439c2fe99f3773b3","stateless_reset_token":"819ecb0c7616cfc97bab37e2337f55fb"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"ca816c6e4a6743ad","stateless_reset_token":"f85e21c6895b04a65ceda41e12d105ba"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"043427c04913c1c0","stateless_reset_token":"ca11c6f097e3ac210cc418cb241ba93b"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e5c19291d0fdc110","stateless_reset_token":"e48324401c292910afe41060682604a3"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"a475d5529da166ae","stateless_reset_token":"872ed6bea47283bd85469de79f78e59a"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"b10f3c0989a26590","stateless_reset_token":"55bf79f6c7e25c58053efcd2ff70a158"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e2318c0ce5e4c96c","stateless_reset_token":"399a8001f4347174b4b9793c76fbe065"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"194c96e96b0321ff","stateless_reset_token":"1b1836a6f4ac13a5d800d0c6fac7c34d"}]},"tuple":"p0"} +{"time":5.033041,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":5.033041,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":5.033041,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":5.7331223}} +{"time":5.033041,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"set","delta":0.16984801}} +{"time":5.033041,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":4318,"packets_in_flight":4}} +{"time":5.033041,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"set","delta":0.16984801}} +{"time":5.2047076,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":5.2047076,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":5.2047076,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":5.2047076,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":5.2047076,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":31.36108}} +{"time":5.2047076,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":31.327791}} +{"time":5.2047076,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"set","delta":25.0}} +{"time":5.2047076,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":0,"path_id":0,"length":1200,"dcid":"db267428e7a0e043"},"frames":[{"frame_type":"handshake_done"},{"frame_type":"path_ack","path_id":0,"ack_delay":23.0,"acked_ranges":[[0,2]],"ect1":0,"ect0":2,"ce":0},{"frame_type":"crypto","offset":0,"raw":{"length":178}},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"9cc4cbe10f3c45a1","stateless_reset_token":"61864a075e8c801616ede277581c87b5"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e1e6b9b14a4469d6","stateless_reset_token":"6ac618e7352a15b0db82acb0e3c03ce5"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"51ff46859834af46","stateless_reset_token":"100dea7dcf03550c6d92c9a0d0e7c487"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e15c3da2e98a63bb","stateless_reset_token":"b2350aca9dd905b88f76587b39369a48"},{"frame_type":"new_token","token":{"type":"retry","raw":{"length":59,"data":"297d336d01b3b9fd13c47d7255a6be40670df13e1c93396bbd8d8aa81877ab438d966abff5d58b6068933d055352f94fc3e148de02d547750648d2"}}},{"frame_type":"new_token","token":{"type":"retry","raw":{"length":59,"data":"ed57bee5d973b95e95b1fcfe5c55ce0358d9f3178a92f9ecbdb6f5d717dc45f725d994da4a1bd26dc5d73dd7c2156feb672a827bc14ef88e9c3c74"}}},{"frame_type":"stream","stream_id":0,"offset":0,"fin":false,"raw":{"length":738}}]},"tuple":"p0"} +{"time":5.2047076,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":0.971,"smoothed_rtt":2.026,"latest_rtt":0.971,"rtt_variance":1.118,"congestion_window":14000,"bytes_in_flight":1170,"packets_in_flight":1}} +{"time":5.330708,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":5.330708,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":5.330708,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":5.330708,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":5.330708,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":1,"path_id":0,"length":1200,"dcid":"db267428e7a0e043"},"frames":[{"frame_type":"stream","stream_id":0,"offset":738,"fin":false,"raw":{"length":1170}}]},"tuple":"p0"} +{"time":5.356166,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":5.356166,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":5.356166,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":5.356166,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":5.356166,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":2,"path_id":0,"length":1200,"dcid":"db267428e7a0e043"},"frames":[{"frame_type":"stream","stream_id":0,"offset":1908,"fin":false,"raw":{"length":1170}}]},"tuple":"p0"} +{"time":5.3718333,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":5.3718333,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":5.3718333,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":5.3718333,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":5.3718333,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":3,"path_id":0,"length":1200,"dcid":"db267428e7a0e043"},"frames":[{"frame_type":"stream","stream_id":0,"offset":3078,"fin":false,"raw":{"length":1170}}]},"tuple":"p0"} +{"time":5.460416,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":5.460416,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":5.460416,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":5.460416,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":5.460416,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":4,"path_id":0,"length":1200,"dcid":"db267428e7a0e043"},"frames":[{"frame_type":"stream","stream_id":0,"offset":4248,"fin":false,"raw":{"length":1170}}]},"tuple":"p0"} +{"time":5.477208,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":5.477208,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":5.477208,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":5.477208,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":5.477208,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":5,"path_id":0,"length":1200,"dcid":"db267428e7a0e043"},"frames":[{"frame_type":"stream","stream_id":0,"offset":5418,"fin":false,"raw":{"length":1170}}]},"tuple":"p0"} +{"time":5.5576253,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":5.5576253,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":5.5576253,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":5.5576253,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":5.5576253,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":6,"path_id":0,"length":1200,"dcid":"db267428e7a0e043"},"frames":[{"frame_type":"stream","stream_id":0,"offset":6588,"fin":false,"raw":{"length":1170}}]},"tuple":"p0"} +{"time":5.5715,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":5.5715,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":5.5715,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":5.5715,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":5.5715,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":7,"path_id":0,"length":1200,"dcid":"db267428e7a0e043"},"frames":[{"frame_type":"stream","stream_id":0,"offset":7758,"fin":false,"raw":{"length":1170}}]},"tuple":"p0"} +{"time":5.735166,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":5.735166,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":5.735166,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":5.735166,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":5.735166,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":8,"path_id":0,"length":1104,"dcid":"db267428e7a0e043"},"frames":[{"frame_type":"stream","stream_id":0,"offset":8928,"fin":true,"raw":{"length":1072}}]},"tuple":"p0"} +{"time":5.75625,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":5.75625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":5.75625,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":5.75625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":5.75625,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":9,"path_id":0,"length":1326,"dcid":"db267428e7a0e043"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1298,"payload_length":1298}}]},"tuple":"p0"} +{"time":6.6581664,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":6.6581664,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":3,"path_id":0,"length":66,"dcid":"b0a7d93fc5db4958"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":112.0,"acked_ranges":[[0,10]],"ect1":0,"ect0":10,"ce":0},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"d482b2b8c5716954","stateless_reset_token":"897dc37b2cb047dddae3e05a97f039c3"}]},"tuple":"p0"} +{"time":6.6581664,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":6.6581664,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":6.6581664,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":6.6581664,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":6.6581664,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":31.49946}} +{"time":6.6581664,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":1236,"packets_in_flight":2}} +{"time":6.6581664,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":4,"path_id":0,"length":1389,"dcid":"b0a7d93fc5db4958"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1361,"payload_length":1361}}]},"tuple":"p0"} +{"time":6.6581664,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":6.6581664,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":6.6581664,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":31.49946}} +{"time":6.923708,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"expired"}} +{"time":7.1365,"name":"quic:timer_updated","data":{"timer_type":"close","event_type":"set","delta":94.49838}} +{"time":7.16325,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":5,"path_id":0,"length":39,"dcid":"b0a7d93fc5db4958"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":175.0,"acked_ranges":[[0,10]],"ect1":0,"ect0":10,"ce":0},{"frame_type":"connection_close","error_space":"application_error","error_code":0,"reason":""}]},"tuple":"p0"} +{"time":7.16325,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":2625,"packets_in_flight":3}} +{"time":7.316,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":10,"path_id":0,"length":1089,"dcid":"988e230caa12b7db"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":9.0,"acked_ranges":[[2,4]],"ect1":0,"ect0":4,"ce":0},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"50ffdf957c443d57","stateless_reset_token":"39dbd7b094a3fa524b0b072db898943e"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e4ea6d0f244a106d","stateless_reset_token":"a239796c359830ea1a0cfbb702e3b171"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"071e4429a0829144","stateless_reset_token":"6636633fbdc9444867169accbaf9f54a"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"c8dbd05bd59035d5","stateless_reset_token":"c304606d5a77921e0c21e42b43d538a2"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"67fc40ef460f88d3","stateless_reset_token":"9cc38e8c37b63d004100f09790bc0236"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"3f4305c3ebb52cfa","stateless_reset_token":"961ce71bceecced30a70ca07b4c5c143"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"ca2900dc7f4e9ad9","stateless_reset_token":"40652f92d97ad6c9b37d9fbc9aafee69"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"9fbe5b5548220379","stateless_reset_token":"0ca77398945c672bdd8d056768cfd6aa"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"c3282e52b3d6aceb","stateless_reset_token":"9dfb8e2fe70a420c16de44f11bb00e27"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"f60c3be3deca3134","stateless_reset_token":"9f27e660ab961e5d65c9d274f26b15a6"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"8625c0685417f6b8","stateless_reset_token":"64d0d09fd0c7d984a05651fea28202c3"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"34c5eb965190b1b4","stateless_reset_token":"731ba1adfa9faa32d25a99b3f1b24c4b"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"4837efc9c82c8ed2","stateless_reset_token":"b3c057391daa058eecfd6c753c7f2d43"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e4a17bed674104b7","stateless_reset_token":"5eb5944e58f4ed5c54bd55329e2c46ec"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"11c63c2bbbe17ae3","stateless_reset_token":"a7e508796d2c6cd48df9ab1a2156976b"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"7efeb528a2e1e2ea","stateless_reset_token":"de260152ace7f572bc5cb4f77c495d11"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"ffa34c75c8fa4f98","stateless_reset_token":"a352f4ae1a113db944da3db26e71b67e"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"95da81a599ff0c1e","stateless_reset_token":"696b970cd9d4bfcbe115c6eb8aaba374"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"da5adb4fb47b69dc","stateless_reset_token":"09dc951633ba801ce784fbee4337ade2"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"140bfcf32e9e499a","stateless_reset_token":"6c482fc12418eea5c4b33d1d2e282766"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"d0f8cd46cd02655d","stateless_reset_token":"2da1e35b3c2216e08d367ab47e795bc5"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"960d16fa4dd4162c","stateless_reset_token":"388c8987357e5daa365aa66c33c0c4eb"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"79a5c97accbba981","stateless_reset_token":"443fde0c6825f72b79df5d38c2cbc637"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"053c798d78c9afd8","stateless_reset_token":"9a792b1bf3ba0699833aa73af988763d"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"512d402ebc9dced8","stateless_reset_token":"dabd73f693b885fd12cf9cbc2013e7d6"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"84341242f303e18e","stateless_reset_token":"ee81520b0c65d665ed16f1a483c43202"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"1994ddda506cbf0f","stateless_reset_token":"b39ca4d77ec4c3ea44ceec6e78c93e59"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"a6c490b705301214","stateless_reset_token":"5921fbe8c62bc64b2ed26f15e4cee87d"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"d32426c325b3f052","stateless_reset_token":"8c460132bfb60be4741ed4e41f6e9a08"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"b9b1652f6bc5077a","stateless_reset_token":"545d771c2c7e53bc4295db5158aa9271"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"413f3bf031e54a67","stateless_reset_token":"94358da211da110772316dcc771cc9ea"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"877cecd13379359a","stateless_reset_token":"815283400e0caee57819e20285023a69"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"a83355bb9db951c4","stateless_reset_token":"ed659f80ee62c111ac5ee05a6e3a34ec"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"ce0f0c8b40233e74","stateless_reset_token":"4f92245de13a9a32c45c46823c324304"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"6c83a70dbfa61f25","stateless_reset_token":"353b86d41c82fc2bc36b216c5b950406"},{"frame_type":"path_retire_connection_id","path_id":0,"sequence_number":0}]},"tuple":"p0"} +{"time":7.352333,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":11,"path_id":0,"length":1389,"dcid":"988e230caa12b7db"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1361,"payload_length":1361}}]},"tuple":"p0"} +{"time":7.517791,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":12,"path_id":0,"length":39,"dcid":"988e230caa12b7db"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":8.0,"acked_ranges":[[2,6]],"ect1":0,"ect0":6,"ce":0},{"frame_type":"connection_close","error_space":"transport_error","error":"no_error","reason":""}]},"tuple":"p0"} +{"time":7.9796247,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":6,"path_id":0,"length":40,"dcid":"b0a7d93fc5db4958"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":277.0,"acked_ranges":[[0,10]],"ect1":0,"ect0":10,"ce":0},{"frame_type":"connection_close","error_space":"transport_error","error":"no_error","reason":""}]},"tuple":"p0"} diff --git a/zero-rtt-blob-service/client/zero-rtt-blob-service-client-1780661128119-27e23aabcf5dc538bebe9b0dc528494bacb1499e-client.qlog b/zero-rtt-blob-service/client/zero-rtt-blob-service-client-1780661128119-27e23aabcf5dc538bebe9b0dc528494bacb1499e-client.qlog new file mode 100644 index 0000000..3170310 --- /dev/null +++ b/zero-rtt-blob-service/client/zero-rtt-blob-service-client-1780661128119-27e23aabcf5dc538bebe9b0dc528494bacb1499e-client.qlog @@ -0,0 +1,219 @@ +{"file_schema":"urn:ietf:params:qlog:file:sequential","serialization_format":"JSON-SEQ","trace":{"common_fields":{"group_id":"27e23aabcf5dc538bebe9b0dc528494bacb1499e","reference_time":{"clock_type":"","epoch":"","wall_clock_time":null}},"vantage_point":{"type":"client"},"event_schemas":[]}} +{"time":0.0,"name":"quic:connection_started","data":{"local":{"connection_ids":["5d4213178e8281ca"]},"remote":{"ip_v6":"fd15:70a:510b::1","port_v6":12345,"connection_ids":["27e23aabcf5dc538bebe9b0dc528494bacb1499e"]}}} +{"time":0.0,"name":"quic:parameters_set","data":{"initiator":"local","initial_source_connection_id":"5d4213178e8281ca","disable_active_migration":false,"max_idle_timeout":30000,"max_udp_payload_size":1472,"ack_delay_exponent":3,"max_ack_delay":25,"active_connection_id_limit":5,"initial_max_data":4611686018427387903,"initial_max_stream_data_bidi_local":1250000,"initial_max_stream_data_bidi_remote":1250000,"initial_max_stream_data_uni":1250000,"initial_max_streams_bidi":100,"initial_max_streams_uni":100,"min_ack_delay":1000,"initial_max_path_id":7,"max_remote_nat_traversal_addresses":32,"unknown_parameters":[],"max_datagram_frame_size":65535,"grease_quic_bit":false}} +{"time":0.0,"name":"quic:tuple_assigned","data":{"tuple_id":"p0","tuple_remote":{"ip_v6":"fd15:70a:510b::1","port_v6":12345}}} +{"time":2.5228329,"name":"quic:packet_sent","data":{"header":{"packet_type":"initial","packet_number":0,"path_id":0,"length":1200,"scid":"5d4213178e8281ca","dcid":"27e23aabcf5dc538bebe9b0dc528494bacb1499e"},"frames":[{"frame_type":"crypto","offset":0,"raw":{"length":370}},{"frame_type":"padding","raw":{"length":771,"payload_length":771}}]},"tuple":"p0"} +{"time":2.5228329,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":2.5228329,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":2.5228329,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":999.0}} +{"time":2.5228329,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":333.0,"smoothed_rtt":333.0,"latest_rtt":333.0,"rtt_variance":166.5,"pto_count":0,"congestion_window":12000,"bytes_in_flight":1200,"ssthresh":18446744073709551615,"packets_in_flight":1}} +{"time":7.420541,"name":"quic:tuple_assigned","data":{"tuple_id":"p0","tuple_remote":{"ip_v6":"::ffff:192.168.178.188","port_v6":57928},"tuple_local":{"ip_v4":"192.168.178.188"}}} +{"time":7.420541,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":7.420541,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":7.420541,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":14.693124}} +{"time":7.420541,"name":"quic:packet_received","data":{"header":{"packet_type":"initial","packet_number":0,"path_id":0,"length":146,"scid":"a077955ae4e510db","dcid":"5d4213178e8281ca"},"frames":[{"frame_type":"ack","ack_delay":445.0,"acked_ranges":[[0,1]],"ect1":0,"ect0":1,"ce":0},{"frame_type":"crypto","offset":0,"raw":{"length":90}}]},"tuple":"p0"} +{"time":7.420541,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":7.420541,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":7.420541,"name":"quic:parameters_set","data":{"initiator":"remote","original_destination_connection_id":"27e23aabcf5dc538bebe9b0dc528494bacb1499e","initial_source_connection_id":"a077955ae4e510db","stateless_reset_token":"ebc019071333ea35ec435b5a9b421d16","disable_active_migration":false,"max_idle_timeout":30000,"max_udp_payload_size":1472,"ack_delay_exponent":3,"max_ack_delay":25,"active_connection_id_limit":5,"initial_max_data":4611686018427387903,"initial_max_stream_data_bidi_local":1250000,"initial_max_stream_data_bidi_remote":1250000,"initial_max_stream_data_uni":1250000,"initial_max_streams_bidi":100,"initial_max_streams_uni":100,"min_ack_delay":1000,"initial_max_path_id":7,"max_remote_nat_traversal_addresses":32,"unknown_parameters":[],"max_datagram_frame_size":65535,"grease_quic_bit":false}} +{"time":7.420541,"name":"quic:packet_received","data":{"header":{"packet_type":"handshake","packet_number":0,"path_id":0,"length":1054,"scid":"a077955ae4e510db","dcid":"5d4213178e8281ca"},"frames":[{"frame_type":"crypto","offset":0,"raw":{"length":392}},{"frame_type":"padding","raw":{"length":616,"payload_length":616}}]},"tuple":"p0"} +{"time":7.420541,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":4.897,"smoothed_rtt":4.897,"latest_rtt":4.897,"rtt_variance":2.448,"bytes_in_flight":0,"packets_in_flight":0}} +{"time":9.483874,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":9.483874,"name":"quic:packet_sent","data":{"header":{"packet_type":"initial","packet_number":1,"path_id":0,"length":52,"scid":"5d4213178e8281ca","dcid":"a077955ae4e510db"},"frames":[{"frame_type":"ack","ack_delay":257.0,"acked_ranges":[[0,1]],"ect1":0,"ect0":1,"ce":0}]},"tuple":"p0"} +{"time":9.483874,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":9.483874,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":9.483874,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":14.693124}} +{"time":9.483874,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":9.483874,"name":"quic:packet_sent","data":{"header":{"packet_type":"handshake","packet_number":0,"path_id":0,"length":1148,"scid":"5d4213178e8281ca","dcid":"a077955ae4e510db"},"frames":[{"frame_type":"ack","ack_delay":257.0,"acked_ranges":[[0,1]],"ect1":0,"ect0":1,"ce":0},{"frame_type":"crypto","offset":0,"raw":{"length":181}},{"frame_type":"padding","raw":{"length":912,"payload_length":912}}]},"tuple":"p0"} +{"time":9.483874,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":9.483874,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":9.483874,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":9.483874,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":9.483874,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":14.693124}} +{"time":9.483874,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":1148,"packets_in_flight":1}} +{"time":9.483874,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":0,"path_id":0,"length":1326,"dcid":"a077955ae4e510db"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1298,"payload_length":1298}}]},"tuple":"p0"} +{"time":9.483874,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":9.483874,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":9.483874,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":14.693124}} +{"time":10.211083,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":1,"path_id":0,"length":1151,"dcid":"a077955ae4e510db"},"frames":[{"frame_type":"reach_out","round":1,"ip_v4":"192.168.178.188","port":59887},{"frame_type":"path_status_backup","path_id":0,"path_status_sequence_number":1},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"3df8b3fc3c05d3e5","stateless_reset_token":"f5f4f66ce413c72b0db5c2555a785d64"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e5fa497a3d3cdbb4","stateless_reset_token":"b66ca5c1697330e03fb5f3ab69cbbed7"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"ea4998d07b357955","stateless_reset_token":"b13c5968e77b0211116bd8e054c752b6"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"9a844b7309fb9759","stateless_reset_token":"4a1c77e9a3c981e75399be27403aac02"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"9ae4279975fc4cb4","stateless_reset_token":"60f4d3ac8d92a7bc247929ef8196e66e"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"dd5bf973fe476b88","stateless_reset_token":"a6c59443856d703a66d0df35de87842a"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"2ce90585ff0cd1a9","stateless_reset_token":"8690d01814874e13faad28fcfa7f01db"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"69a57323e4126269","stateless_reset_token":"c2cf0471aed062e631221bbb61c33c14"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"120ea26b024404c9","stateless_reset_token":"dcbd88a80b65bc5e80baca785c7b600c"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"22d51ce619d8ff6e","stateless_reset_token":"ec7fc3831c224e8ce722b6f82722c7ac"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"a7af0ca140f079e8","stateless_reset_token":"8e42a89d1e9c2935e8de8746a59cb66e"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"00ba2f603436cc93","stateless_reset_token":"5009b92f47a920c1a1591debb43fe549"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"d815958a9445b513","stateless_reset_token":"80be61dd9f53b53b9fe1db2227821534"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"7592fa1d4f78bcc1","stateless_reset_token":"df2cbcb11419d21b241c8a08053d3170"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"408c3032f3a57125","stateless_reset_token":"84b117d6d3d4bc3529b477902aca97cf"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"cb9c67b867a4c980","stateless_reset_token":"599b96723d5fdee553eb5e5964f6675c"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"4dfc6a6b963d40c7","stateless_reset_token":"0f52d906e2b681c8767614c9b52a11ee"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"2c73590541965c10","stateless_reset_token":"852e74d218c9a9c890886281c0058623"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"524e5b534b5e1407","stateless_reset_token":"9a3ed53ddeb237db739d0600eee4fa42"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"30d00295095c7a2b","stateless_reset_token":"7fe7b7c8355785b675eec5376cd4fd16"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"76ebba61be0efa26","stateless_reset_token":"e576504f257dde82c0bcbd0392d7bb12"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"ab00a4debad4100a","stateless_reset_token":"2f39219c7767dbc57cb1c39650a52a9d"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"bf70e15c678fb17d","stateless_reset_token":"6a2b6338ed3661743bfd0518fa35dc9d"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"fcdd12457568c5b7","stateless_reset_token":"4c6756cef184ac776f80ffec2d4c3c46"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"7c707b4bcccb661b","stateless_reset_token":"65b29325b71acf45ef042899b4b0660c"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"895b1d07864fce94","stateless_reset_token":"5628c1e7102a56faff74d285672a9b3f"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"1bc005ff868ab6db","stateless_reset_token":"67ca2c37abd875dafee2c4ab11816b9a"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"addfeb06b97fd766","stateless_reset_token":"3728d32976e828bd5ddcbb09c30eed65"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"a977b63bc9b85262","stateless_reset_token":"453ab0fb59a8a52e16e7a619eece036a"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"0fdba8b8431909c7","stateless_reset_token":"1167638d49c004a420220ca59d21e199"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e6bd7067518a35f3","stateless_reset_token":"a117aedfef9bde1ea049e915d1e16eff"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"56f0a2fccbb2a0c2","stateless_reset_token":"2acc4e8fd0e76e575daa4df10fbcd5fc"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"c1a6a51928f0e7cf","stateless_reset_token":"c0a2357e8cbc12a1ebdbf79786299982"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e501b4ffe1fc3c9d","stateless_reset_token":"1875d1dd2c84a08dce4ed4d33c1bba90"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"736e20a96ae0e7fc","stateless_reset_token":"0bbce15baa5a2394227df560be4a7a45"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"924124e854a17390","stateless_reset_token":"fb9bf1b5b9e6650b26738aec4be9947d"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"5668c64550fb1df8","stateless_reset_token":"3df8adbd40697b0dd298164e879b53b0"}]},"tuple":"p0"} +{"time":10.211083,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":10.211083,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":10.211083,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":13.965916}} +{"time":10.211083,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"set","delta":0.375816}} +{"time":10.211083,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":3625,"packets_in_flight":3}} +{"time":10.211083,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"set","delta":0.375816}} +{"time":11.156708,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":2,"path_id":0,"length":90,"dcid":"a077955ae4e510db"},"frames":[{"frame_type":"path_status_available","path_id":0,"path_status_sequence_number":2},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"1edbcd4682eac1a1","stateless_reset_token":"1955d3aa036758306e7780f3a1cf3caa"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"288ddbbc954433ab","stateless_reset_token":"312a1b92ecb62ef1ad1056499bfd51f0"}]},"tuple":"p0"} +{"time":11.156708,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":11.156708,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":11.156708,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":13.020291}} +{"time":11.156708,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":3715,"packets_in_flight":4}} +{"time":11.329124,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"expired"}} +{"time":11.24325,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":11.24325,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":11.24325,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":11.24325,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":11.24325,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":39.606583}} +{"time":11.24325,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":39.903767}} +{"time":11.24325,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"set","delta":25.0}} +{"time":11.24325,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":0,"path_id":0,"length":461,"dcid":"5d4213178e8281ca"},"frames":[{"frame_type":"handshake_done"},{"frame_type":"path_ack","path_id":0,"ack_delay":122.0,"acked_ranges":[[0,1]],"ect1":0,"ect0":1,"ce":0},{"frame_type":"crypto","offset":0,"raw":{"length":178}},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"9e43a8e98684093e","stateless_reset_token":"816c77c21808b4cb8a0c5b896941764a"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"436dea8c0f61fc3d","stateless_reset_token":"3b76810374c3b5d21dd2a201b9fde55d"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"687cdda53465c47d","stateless_reset_token":"f64985ff8139b09c0e3a061536e8f00c"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"1b286eda9ad95087","stateless_reset_token":"ff447e4999c51cfe0174e95fe290db15"},{"frame_type":"new_token","token":{"type":"retry","raw":{"length":59,"data":"48f28b3125a79e739894f6f95ec4653b5de2e3ce0d9e67413efe12950595f607fec0b520822af4e2a005ec40a8ecabf30d6d77e63c37ac5b4600f2"}}},{"frame_type":"new_token","token":{"type":"retry","raw":{"length":59,"data":"7b45cecbf0b24ce66e6b878f51af66454b130be9f0caf26edd2f1111dc6843218bab78776d4f2ae9e8597ff07e622c8304254021521d3102fbae68"}}}]},"tuple":"p0"} +{"time":11.24325,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":1.759,"smoothed_rtt":4.505,"latest_rtt":1.759,"rtt_variance":2.621,"bytes_in_flight":1241,"packets_in_flight":2}} +{"time":11.271041,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":11.271041,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":11.271041,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":11.271041,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":11.271041,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":1,"path_id":0,"length":1326,"dcid":"5d4213178e8281ca"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1298,"payload_length":1298}}]},"tuple":"p0"} +{"time":11.676625,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":11.676625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":11.676625,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":11.676625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":11.676625,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":2,"path_id":0,"length":35,"dcid":"3df8b3fc3c05d3e5"},"frames":[{"frame_type":"path_challenge","data":"PATH_CHALLENGE(b0553aab9e208a8f)"}]},"tuple":"p0"} +{"time":11.865833,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":11.865833,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":11.865833,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":11.865833,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":11.865833,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"cancelled"}} +{"time":11.865833,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":3,"path_id":0,"length":1089,"dcid":"3df8b3fc3c05d3e5"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":6.0,"acked_ranges":[[0,3]],"ect1":0,"ect0":3,"ce":0},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"9d8cbd561896208f","stateless_reset_token":"7cb0b0d6dab8f748c09c36b625a80fc6"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"b6178689624214eb","stateless_reset_token":"59396eedc82058e268ed7b7530647813"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"10e61d093d18ef7d","stateless_reset_token":"d6a89f535f1e8d282349979dd94711cd"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"cc1d7a6a9f693ef2","stateless_reset_token":"7d99ff5372ee52f300546c1a9422a793"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"ee04910a003b6343","stateless_reset_token":"ece2c41c036358d78c06d2b28fc4f160"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"c872f2e9c875fa69","stateless_reset_token":"1e132d705197e4814e75531ce6005133"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"df1bdd3938b4a23d","stateless_reset_token":"5bdcc3c9dc3a19b84d8198e9af23d9d9"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"0ac568127824355d","stateless_reset_token":"686fd48ad8f5f5bca142557916ed0fd4"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"7e2debdc6cc3f787","stateless_reset_token":"dc5598c9ecb69e166f6424a19ff9e2c3"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e7a87215d59b51a5","stateless_reset_token":"41735b90f0e98d139fb4fd2327a8e064"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"4cd9f773cd6cb297","stateless_reset_token":"1162f94061540c9923540e34a881ee75"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"1736a658343dfa2e","stateless_reset_token":"6a4aec3ee80557a87281d7b9a8297b94"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"c468acfc2a169b6c","stateless_reset_token":"162ebd0a08af32867483b45f484ae1ca"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"b74e3956e56969db","stateless_reset_token":"a659a5c5b8a06536d8505e742d3955df"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e679550eb1e27655","stateless_reset_token":"3b1994e5ce2867122e12ea89bf78696f"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"38259086e9cc24aa","stateless_reset_token":"8895e42eca395937ca1c129c907795d0"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"a2f7ca4c38d4c702","stateless_reset_token":"d2b2f1f1e3c308867028e8cfb950fe3f"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"3e19146a25fd22b4","stateless_reset_token":"efc5fdc1dd61cccc696d275579e11c19"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"9568cde73158bc19","stateless_reset_token":"b11750bee90636f0593b37d959e89f16"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"5b36c2c7b19b3d4e","stateless_reset_token":"0c780f5cc81b114c4049000e6f895480"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"6f2849200fb3c855","stateless_reset_token":"4a2927be743680a0f5b484ae65b82556"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"7fad7d162517a265","stateless_reset_token":"544256e86ec42ece65e3cfa7220b3c3b"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"8bdc94745057b1a8","stateless_reset_token":"9f5e0c42f6ba1f995f7137865d02148c"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"620932cf37391337","stateless_reset_token":"91c4f16540dea4b13e66bc74237a1ba5"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"ef0b3a040a669297","stateless_reset_token":"7979d0cddeb0a3741055c5eb9b88db53"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e4ee40b89fbe3e6f","stateless_reset_token":"29e0e5d1780617ae9bfde78940a1f96f"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"7ae69e9da1b505f7","stateless_reset_token":"9b5cc15cc715bbb559ed756773d99580"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"9cef044a21e4bfe4","stateless_reset_token":"a1e189d853c6287d5b85e86866633879"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"f682092d6a349c32","stateless_reset_token":"5f90105c36aafb7dbb7d557e53292a89"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"1a015220f5fff142","stateless_reset_token":"c18f838634d48061f73c59b54d8a8f23"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"3b67f3551c8ea08e","stateless_reset_token":"5f80d7eed0c262457793907936790030"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"39bc8eab70d7da46","stateless_reset_token":"bd246778f1b203582f391c83d1988561"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"91a602bbd674a4b4","stateless_reset_token":"2ff2991d247148deda6525a2c48eb44c"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"eb72a460fdcef7d7","stateless_reset_token":"4f381f785781161bac44e5993659aa0b"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"9a3ff3dfc072c10a","stateless_reset_token":"03ba1efe9253675450bec143679524c2"},{"frame_type":"path_retire_connection_id","path_id":0,"sequence_number":0}]},"tuple":"p0"} +{"time":11.865833,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":0.709,"smoothed_rtt":4.03,"latest_rtt":0.709,"rtt_variance":2.914,"bytes_in_flight":0,"packets_in_flight":0}} +{"time":12.326166,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":12.326166,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":3,"path_id":0,"length":1200,"dcid":"a077955ae4e510db"},"frames":[{"frame_type":"immediate_ack"},{"frame_type":"path_ack","path_id":0,"ack_delay":57.0,"acked_ranges":[[0,4]],"ect1":0,"ect0":3,"ce":0},{"frame_type":"path_response","data":"PATH_RESPONSE(b0553aab9e208a8f)"},{"frame_type":"padding","raw":{"length":1155,"payload_length":1155}}]},"tuple":"p0"} +{"time":12.326166,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":12.326166,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":12.326166,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":12.326166,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":12.326166,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":40.690838}} +{"time":12.326166,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":1200,"packets_in_flight":1}} +{"time":12.326166,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":4,"path_id":0,"length":1389,"dcid":"a077955ae4e510db"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1361,"payload_length":1361}}]},"tuple":"p0"} +{"time":12.326166,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":12.326166,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":12.326166,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":40.690838}} +{"time":12.586625,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":5,"path_id":0,"length":1326,"dcid":"a077955ae4e510db"},"frames":[{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":5,"retire_prior_to":0,"connection_id_length":8,"connection_id":"abe5bd42050ee7be","stateless_reset_token":"32f59d0562fdd0d714fb4eb966781b3d"},{"frame_type":"stream","stream_id":0,"offset":0,"fin":false,"raw":{"length":1268}}]},"tuple":"p0"} +{"time":12.586625,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":12.586625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":12.586625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":40.690838}} +{"time":12.586625,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":3915,"packets_in_flight":3}} +{"time":12.586625,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":6,"path_id":0,"length":1326,"dcid":"a077955ae4e510db"},"frames":[{"frame_type":"stream","stream_id":0,"offset":1268,"fin":false,"raw":{"length":1296}}]},"tuple":"p0"} +{"time":12.586625,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":12.586625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":12.586625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":40.690838}} +{"time":12.586625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"set","delta":3.243512}} +{"time":12.586625,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":5241,"packets_in_flight":4}} +{"time":12.586625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"set","delta":3.243512}} +{"time":12.981874,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":12.981874,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":12.981874,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":12.981874,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":12.981874,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":40.56177}} +{"time":12.981874,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":4,"path_id":0,"length":35,"dcid":"3df8b3fc3c05d3e5"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":14.0,"acked_ranges":[[3,6]],"ect1":0,"ect0":6,"ce":0}]},"tuple":"p0"} +{"time":12.981874,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":0.395,"smoothed_rtt":3.576,"latest_rtt":0.395,"rtt_variance":3.095,"congestion_window":15915,"bytes_in_flight":1326,"packets_in_flight":1}} +{"time":13.029916,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":13.029916,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":13.029916,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":13.029916,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":13.029916,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":5,"path_id":0,"length":1389,"dcid":"3df8b3fc3c05d3e5"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1361,"payload_length":1361}}]},"tuple":"p0"} +{"time":13.258458,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":13.258458,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":7,"path_id":0,"length":1389,"dcid":"a077955ae4e510db"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":28.0,"acked_ranges":[[4,6]],"ect1":0,"ect0":5,"ce":0},{"frame_type":"stream","stream_id":0,"offset":2564,"fin":false,"raw":{"length":1350}}]},"tuple":"p0"} +{"time":13.258458,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":13.258458,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":13.258458,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":13.258458,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":13.258458,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":40.95702}} +{"time":13.258458,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":2715,"packets_in_flight":2}} +{"time":13.258458,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":8,"path_id":0,"length":1389,"dcid":"a077955ae4e510db"},"frames":[{"frame_type":"stream","stream_id":0,"offset":3914,"fin":false,"raw":{"length":1359}}]},"tuple":"p0"} +{"time":13.258458,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":13.258458,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":13.258458,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":40.95702}} +{"time":13.258458,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":4104,"packets_in_flight":3}} +{"time":13.258458,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":9,"path_id":0,"length":1389,"dcid":"a077955ae4e510db"},"frames":[{"frame_type":"stream","stream_id":0,"offset":5273,"fin":false,"raw":{"length":1359}}]},"tuple":"p0"} +{"time":13.258458,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":13.258458,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":13.258458,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":40.95702}} +{"time":13.258458,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"set","delta":2.36046}} +{"time":13.258458,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":5493,"packets_in_flight":4}} +{"time":13.258458,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"set","delta":2.36046}} +{"time":13.258458,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":10,"path_id":0,"length":1420,"dcid":"a077955ae4e510db"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1392,"payload_length":1392}}]},"tuple":"p0"} +{"time":13.258458,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":13.258458,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":13.258458,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":40.95702}} +{"time":13.258458,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"set","delta":2.4970918}} +{"time":13.258458,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":6913,"packets_in_flight":5}} +{"time":13.645875,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":13.645875,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":13.645875,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":13.645875,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":13.645875,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":40.264835}} +{"time":13.645875,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":6,"path_id":0,"length":35,"dcid":"3df8b3fc3c05d3e5"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":8.0,"acked_ranges":[[6,8]],"ect1":0,"ect0":8,"ce":0}]},"tuple":"p0"} +{"time":13.645875,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":0.387,"smoothed_rtt":3.177,"latest_rtt":0.387,"rtt_variance":3.118,"congestion_window":18630,"bytes_in_flight":4198,"packets_in_flight":3}} +{"time":13.686875,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":13.686875,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":13.686875,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":13.686875,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":13.686875,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":7,"path_id":0,"length":1420,"dcid":"3df8b3fc3c05d3e5"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1392,"payload_length":1392}}]},"tuple":"p0"} +{"time":13.86104,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":13.86104,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":13.86104,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":13.86104,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":13.86104,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":39.233368}} +{"time":13.86104,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":8,"path_id":0,"length":35,"dcid":"3df8b3fc3c05d3e5"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":7.0,"acked_ranges":[[6,10]],"ect1":0,"ect0":10,"ce":0}]},"tuple":"p0"} +{"time":13.86104,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"smoothed_rtt":2.848,"latest_rtt":0.602,"rtt_variance":2.996,"congestion_window":21408,"bytes_in_flight":1420,"packets_in_flight":1}} +{"time":14.063041,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":14.063041,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":14.063041,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":14.063041,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":14.063041,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"cancelled"}} +{"time":14.063041,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":9,"path_id":0,"length":35,"dcid":"3df8b3fc3c05d3e5"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":23.0,"acked_ranges":[[6,11]],"ect1":0,"ect0":11,"ce":0}]},"tuple":"p0"} +{"time":14.063041,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"smoothed_rtt":2.57,"latest_rtt":0.804,"rtt_variance":2.804,"congestion_window":22828,"bytes_in_flight":0,"packets_in_flight":0}} +{"time":14.164625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":14.164625,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":11,"path_id":0,"length":1420,"dcid":"a077955ae4e510db"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":12.0,"acked_ranges":[[6,10]],"ect1":0,"ect0":9,"ce":0},{"frame_type":"stream","stream_id":0,"offset":6632,"fin":false,"raw":{"length":1381}}]},"tuple":"p0"} +{"time":14.164625,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":14.164625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":14.164625,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":14.164625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":14.164625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":38.788956}} +{"time":14.164625,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":1420,"packets_in_flight":1}} +{"time":14.164625,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":12,"path_id":0,"length":1420,"dcid":"a077955ae4e510db"},"frames":[{"frame_type":"stream","stream_id":0,"offset":8013,"fin":false,"raw":{"length":1390}}]},"tuple":"p0"} +{"time":14.164625,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":14.164625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":14.164625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":38.788956}} +{"time":14.164625,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":2840,"packets_in_flight":2}} +{"time":14.164625,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":13,"path_id":0,"length":630,"dcid":"a077955ae4e510db"},"frames":[{"frame_type":"stream","stream_id":0,"offset":9403,"fin":true,"raw":{"length":598}}]},"tuple":"p0"} +{"time":14.164625,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":14.164625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":14.164625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":38.788956}} +{"time":14.164625,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":3470,"packets_in_flight":3}} +{"time":14.164625,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":14,"path_id":0,"length":1452,"dcid":"a077955ae4e510db"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1424,"payload_length":1424}}]},"tuple":"p0"} +{"time":14.164625,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":14.164625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":14.164625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":38.788956}} +{"time":14.48325,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":14.48325,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":14.48325,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":14.48325,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":14.48325,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":10,"path_id":0,"length":1452,"dcid":"3df8b3fc3c05d3e5"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1424,"payload_length":1424}}]},"tuple":"p0"} +{"time":14.48325,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":4922,"packets_in_flight":4}} +{"time":14.610333,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":14.610333,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":14.610333,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":14.610333,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":14.610333,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":37.397663}} +{"time":14.610333,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":11,"path_id":0,"length":35,"dcid":"3df8b3fc3c05d3e5"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":11.0,"acked_ranges":[[11,13]],"ect1":0,"ect0":13,"ce":0}]},"tuple":"p0"} +{"time":14.610333,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"smoothed_rtt":2.304,"latest_rtt":0.445,"rtt_variance":2.634,"bytes_in_flight":2082,"packets_in_flight":2}} +{"time":14.905125,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":14.905125,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":15,"path_id":0,"length":35,"dcid":"a077955ae4e510db"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":36.0,"acked_ranges":[[10,12]],"ect1":0,"ect0":11,"ce":0}]},"tuple":"p0"} +{"time":14.905125,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":14.905125,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":14.950334,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":14.950334,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":14.950334,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":14.950334,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":14.950334,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"cancelled"}} +{"time":14.950334,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":12,"path_id":0,"length":35,"dcid":"3df8b3fc3c05d3e5"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":20.0,"acked_ranges":[[11,15]],"ect1":0,"ect0":15,"ce":0}]},"tuple":"p0"} +{"time":14.950334,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"smoothed_rtt":2.094,"latest_rtt":0.785,"rtt_variance":2.395,"bytes_in_flight":0,"packets_in_flight":0}} +{"time":15.108708,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":15.108708,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":15.108708,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":15.108708,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":15.108708,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"set","delta":25.0}} +{"time":15.108708,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":13,"path_id":0,"length":61,"dcid":"3df8b3fc3c05d3e5"},"frames":[{"frame_type":"stream","stream_id":0,"offset":0,"fin":true,"raw":{"length":32}}]},"tuple":"p0"} +{"time":16.308666,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"expired"}} +{"time":20.150751,"name":"quic:timer_updated","data":{"timer_type":"close","event_type":"set","delta":110.033714}} +{"time":20.1905,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":16,"path_id":0,"length":39,"dcid":"a077955ae4e510db"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":635.0,"acked_ranges":[[10,14]],"ect1":0,"ect0":13,"ce":0},{"frame_type":"connection_close","error_space":"application_error","error_code":0,"reason":""}]},"tuple":"p0"} +{"time":20.514917,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":14,"path_id":0,"length":39,"dcid":"3df8b3fc3c05d3e5"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":8.0,"acked_ranges":[[15,17]],"ect1":0,"ect0":17,"ce":0},{"frame_type":"connection_close","error_space":"transport_error","error":"no_error","reason":""}]},"tuple":"p0"} diff --git a/zero-rtt-blob-service/client/zero-rtt-blob-service-client-1780661128134-d60456d9879e35a31a47a2f3b016b9bbcef3ed16-client.qlog b/zero-rtt-blob-service/client/zero-rtt-blob-service-client-1780661128134-d60456d9879e35a31a47a2f3b016b9bbcef3ed16-client.qlog new file mode 100644 index 0000000..0787b5e --- /dev/null +++ b/zero-rtt-blob-service/client/zero-rtt-blob-service-client-1780661128134-d60456d9879e35a31a47a2f3b016b9bbcef3ed16-client.qlog @@ -0,0 +1,182 @@ +{"file_schema":"urn:ietf:params:qlog:file:sequential","serialization_format":"JSON-SEQ","trace":{"common_fields":{"group_id":"d60456d9879e35a31a47a2f3b016b9bbcef3ed16","reference_time":{"clock_type":"","epoch":"","wall_clock_time":null}},"vantage_point":{"type":"client"},"event_schemas":[]}} +{"time":0.0,"name":"quic:connection_started","data":{"local":{"connection_ids":["7a656890043ac5b4"]},"remote":{"ip_v6":"fd15:70a:510b::1","port_v6":12345,"connection_ids":["d60456d9879e35a31a47a2f3b016b9bbcef3ed16"]}}} +{"time":0.0,"name":"quic:parameters_set","data":{"initiator":"local","initial_source_connection_id":"7a656890043ac5b4","disable_active_migration":false,"max_idle_timeout":30000,"max_udp_payload_size":1472,"ack_delay_exponent":3,"max_ack_delay":25,"active_connection_id_limit":5,"initial_max_data":4611686018427387903,"initial_max_stream_data_bidi_local":1250000,"initial_max_stream_data_bidi_remote":1250000,"initial_max_stream_data_uni":1250000,"initial_max_streams_bidi":100,"initial_max_streams_uni":100,"min_ack_delay":1000,"initial_max_path_id":7,"max_remote_nat_traversal_addresses":32,"unknown_parameters":[],"max_datagram_frame_size":65535,"grease_quic_bit":false}} +{"time":0.0,"name":"quic:parameters_restored","data":{"disable_active_migration":false,"max_idle_timeout":30000,"max_udp_payload_size":1472,"active_connection_id_limit":5,"initial_max_data":4611686018427387903,"initial_max_stream_data_bidi_local":1250000,"initial_max_stream_data_bidi_remote":1250000,"initial_max_stream_data_uni":1250000,"initial_max_streams_bidi":100,"initial_max_streams_uni":100,"max_datagram_frame_size":65535,"grease_quic_bit":false}} +{"time":0.0,"name":"quic:tuple_assigned","data":{"tuple_id":"p0","tuple_remote":{"ip_v6":"fd15:70a:510b::1","port_v6":12345}}} +{"time":0.778166,"name":"quic:packet_sent","data":{"header":{"packet_type":"initial","packet_number":0,"path_id":0,"length":532,"scid":"7a656890043ac5b4","dcid":"d60456d9879e35a31a47a2f3b016b9bbcef3ed16"},"frames":[{"frame_type":"crypto","offset":0,"raw":{"length":473}}]},"tuple":"p0"} +{"time":0.778166,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":0.778166,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":0.778166,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":999.0}} +{"time":0.778166,"name":"quic:packet_sent","data":{"header":{"packet_type":"0RTT","packet_number":0,"path_id":0,"length":668,"scid":"7a656890043ac5b4","dcid":"d60456d9879e35a31a47a2f3b016b9bbcef3ed16"},"frames":[{"frame_type":"stream","stream_id":0,"offset":0,"fin":true,"raw":{"length":33}},{"frame_type":"padding","raw":{"length":578,"payload_length":578}}]},"tuple":"p0"} +{"time":0.778166,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":999.0}} +{"time":0.778166,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":333.0,"smoothed_rtt":333.0,"latest_rtt":333.0,"rtt_variance":166.5,"pto_count":0,"congestion_window":12000,"bytes_in_flight":1200,"ssthresh":18446744073709551615,"packets_in_flight":2}} +{"time":2.771375,"name":"quic:tuple_assigned","data":{"tuple_id":"p0","tuple_remote":{"ip_v6":"::ffff:192.168.178.188","port_v6":57928},"tuple_local":{"ip_v4":"192.168.178.188"}}} +{"time":2.771375,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":2.771375,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":2.771375,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"cancelled"}} +{"time":2.771375,"name":"quic:packet_received","data":{"header":{"packet_type":"initial","packet_number":0,"path_id":0,"length":152,"scid":"1136b1bc3640bef0","dcid":"7a656890043ac5b4"},"frames":[{"frame_type":"ack","ack_delay":185.0,"acked_ranges":[[0,1]],"ect1":0,"ect0":1,"ce":0},{"frame_type":"crypto","offset":0,"raw":{"length":96}}]},"tuple":"p0"} +{"time":2.771375,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":2.771375,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":2.771375,"name":"quic:parameters_set","data":{"initiator":"remote","original_destination_connection_id":"d60456d9879e35a31a47a2f3b016b9bbcef3ed16","initial_source_connection_id":"1136b1bc3640bef0","stateless_reset_token":"02cf99268286732ecdd62111743873bc","disable_active_migration":false,"max_idle_timeout":30000,"max_udp_payload_size":1472,"ack_delay_exponent":3,"max_ack_delay":25,"active_connection_id_limit":5,"initial_max_data":4611686018427387903,"initial_max_stream_data_bidi_local":1250000,"initial_max_stream_data_bidi_remote":1250000,"initial_max_stream_data_uni":1250000,"initial_max_streams_bidi":100,"initial_max_streams_uni":100,"min_ack_delay":1000,"initial_max_path_id":7,"max_remote_nat_traversal_addresses":32,"unknown_parameters":[],"max_datagram_frame_size":65535,"grease_quic_bit":false}} +{"time":2.771375,"name":"quic:packet_received","data":{"header":{"packet_type":"handshake","packet_number":0,"path_id":0,"length":1048,"scid":"1136b1bc3640bef0","dcid":"7a656890043ac5b4"},"frames":[{"frame_type":"crypto","offset":0,"raw":{"length":257}},{"frame_type":"padding","raw":{"length":745,"payload_length":745}}]},"tuple":"p0"} +{"time":2.771375,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":1.993,"smoothed_rtt":1.993,"latest_rtt":1.993,"rtt_variance":0.996,"bytes_in_flight":668,"packets_in_flight":1}} +{"time":3.7245002,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":3.7245002,"name":"quic:packet_sent","data":{"header":{"packet_type":"initial","packet_number":1,"path_id":0,"length":52,"scid":"7a656890043ac5b4","dcid":"1136b1bc3640bef0"},"frames":[{"frame_type":"ack","ack_delay":119.0,"acked_ranges":[[0,1]],"ect1":0,"ect0":1,"ce":0}]},"tuple":"p0"} +{"time":3.7245002,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":3.7245002,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":3.7245002,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"cancelled"}} +{"time":3.7245002,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":3.7245002,"name":"quic:packet_sent","data":{"header":{"packet_type":"handshake","packet_number":0,"path_id":0,"length":1148,"scid":"7a656890043ac5b4","dcid":"1136b1bc3640bef0"},"frames":[{"frame_type":"ack","ack_delay":119.0,"acked_ranges":[[0,1]],"ect1":0,"ect0":1,"ce":0},{"frame_type":"crypto","offset":0,"raw":{"length":52}},{"frame_type":"padding","raw":{"length":1042,"payload_length":1042}}]},"tuple":"p0"} +{"time":3.7245002,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":3.7245002,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":3.7245002,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":3.7245002,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":3.7245002,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":5.979625}} +{"time":3.7245002,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":1816,"packets_in_flight":2}} +{"time":3.7245002,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":1,"path_id":0,"length":1326,"dcid":"1136b1bc3640bef0"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1298,"payload_length":1298}}]},"tuple":"p0"} +{"time":3.7245002,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":3.7245002,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":3.7245002,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":5.979625}} +{"time":4.394875,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":2,"path_id":0,"length":1166,"dcid":"1136b1bc3640bef0"},"frames":[{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"33bdd46b2d031aec","stateless_reset_token":"9bccaf8804f357c0d3cd4f41eafb6e33"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"402fcafa7486870f","stateless_reset_token":"74731fa4e9d56b9af89086bfb75ceb9d"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"31613345b4824338","stateless_reset_token":"bf759ec4b58894cb27879500a3eb907e"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e12d9b9f34fbdb34","stateless_reset_token":"2d61bd0c2997b3d7d0afdc2905eea5bd"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"797e5e9b44730141","stateless_reset_token":"e7428a8aebe062f3a659a0735cd0d865"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"0b123004e62becba","stateless_reset_token":"7fdd73a240b8fad4a73d27080d7e0032"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"4ba97d067d798ddc","stateless_reset_token":"dc1f24c829166b02d07e557dcb214c0d"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"8d8fb2175c902a53","stateless_reset_token":"fb57af1fe98b7f452d66ac4576ba32e6"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"6d02ea55e499ab11","stateless_reset_token":"013aac2c11b9253dc47ccb266659e3ff"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"c02f8b8c6b97fc03","stateless_reset_token":"b24af241a888dc8417410e01f6439f67"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"daabfe4b2c69b799","stateless_reset_token":"c051eb74c40d9c4d15c5acaa6cdf90f7"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"95f052a9f1a2e551","stateless_reset_token":"f98ca255ce4be0b7215413f19fb9dc3e"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"ad5976b1ffee7d69","stateless_reset_token":"f8d91c3282b4715f1ed6871ba7bc1437"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"d3417374ba68cfcb","stateless_reset_token":"ed47f3094fca0c4f2201bdae0340fbc3"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"65064be22afc4c35","stateless_reset_token":"281b9c8eaf4aec7a0d9b22152f7329c3"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"073c19ab18e0a6aa","stateless_reset_token":"cf3490acce2428a5f04225e8693dd9a8"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e3d6c1f88f4a3e5e","stateless_reset_token":"60845035d3c66aae4b0b5b831f4f4f6d"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"3d92841a8f84c85a","stateless_reset_token":"3798e35a236c6093075b1c6a33ece19d"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"755c0888e6a0447e","stateless_reset_token":"22646259006402b75ba5706dc9f1fb2c"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"4a080a799540be3c","stateless_reset_token":"609bb5489c0009a3660414772bf13158"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"ebf2ec64a75efba6","stateless_reset_token":"af6125181bc698777fdf05e176ae286f"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"84c8e08c0e683750","stateless_reset_token":"9019f550bba61ba3a3a6bfadbb66847a"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"78a3739e827c2d9b","stateless_reset_token":"d9cc7b2f67bdc4f166bf5627921ba806"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"65d4cf9583574d88","stateless_reset_token":"3b38c5c9a84544a999f3986cdf469e50"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"f52b3127e3948c1e","stateless_reset_token":"0bc36b0da0604418e3dc575bbced4ff3"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"48a67e1a69293e09","stateless_reset_token":"374db69dfb2ce2899100710a4197fda8"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"9c624ccfb6cdfc3f","stateless_reset_token":"264b2ff3b59666e7ee137eaa73c547c9"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"c51e837659b8abff","stateless_reset_token":"64b3098d5430d7987d7692d57c317afd"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"2fe312b659f54404","stateless_reset_token":"c0099513348a8fb703da7ebde7c414de"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"b5344a724dd25b4f","stateless_reset_token":"05688fc59a63d83ea9e66489f3148093"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"20ac3a4a872b0ca3","stateless_reset_token":"6e6211fad0bbd2e1ad4026560c8e6900"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"22091b688b1a9038","stateless_reset_token":"14351b7084b2a1f824ebffe819334737"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"31554f62e45f0ceb","stateless_reset_token":"9dcc57117d61ef68585aee79d8a3c758"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"603f08becc536e7e","stateless_reset_token":"f58b3bbdd07bc3688be7dd76f7c26593"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"63fbdf2ad734644f","stateless_reset_token":"4071c9211c13fbd27832437c340cc4bd"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"f2be1f3c16a4c4be","stateless_reset_token":"9dd7690bcfe1fbce812b39846ddbc49a"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"54985a06df7bf3b9","stateless_reset_token":"22f8d78ca2ca9afdaa76a0e51816fb2d"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"64296b5774d5dba4","stateless_reset_token":"31e07f5f4327e50441a3ca544be1f97e"}]},"tuple":"p0"} +{"time":4.394875,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":4.394875,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":4.394875,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":5.3092504}} +{"time":4.394875,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"set","delta":0.154936}} +{"time":4.394875,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":4308,"packets_in_flight":4}} +{"time":4.394875,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"set","delta":0.154936}} +{"time":4.9744997,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"pacing","event_type":"expired"}} +{"time":4.6183333,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":4.6183333,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":4.6183333,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":4.6183333,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":4.6183333,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":30.756168}} +{"time":4.6183333,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":30.721516}} +{"time":4.6183333,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"set","delta":25.0}} +{"time":4.6183333,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":0,"path_id":0,"length":1200,"dcid":"7a656890043ac5b4"},"frames":[{"frame_type":"handshake_done"},{"frame_type":"path_ack","path_id":0,"ack_delay":34.0,"acked_ranges":[[0,2]],"ect1":0,"ect0":2,"ce":0},{"frame_type":"crypto","offset":0,"raw":{"length":178}},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"fb4aa5dd41de71d2","stateless_reset_token":"517ffa620df36d43eccee5ec9c87b3db"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"9e78159a9db1e869","stateless_reset_token":"d80df69fc5498d680cfa7f76a0853521"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"715b439fa5a63f81","stateless_reset_token":"5cc2c43a3586e414e16d67d469c5c1c2"},{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"cd98ab0d3d67cf4c","stateless_reset_token":"85fb39bcb75aa5fcbeafa7b773263770"},{"frame_type":"new_token","token":{"type":"retry","raw":{"length":59,"data":"1b950d10873d8a8b64a369e4cb91b032705fbab8fcbc97adce3f5c02297beea68ac1767d4921a7760a5f1917248fb0db18326281ba70321aabdb00"}}},{"frame_type":"new_token","token":{"type":"retry","raw":{"length":59,"data":"631eb0d1102c87a77b2d71daf0c1ecbb368b05bd8e5f907b6e092a3b629e37b633c959b3e8635d0c6f728693bf859c78c78e00083f45f11b3504f0"}}},{"frame_type":"stream","stream_id":0,"offset":0,"fin":false,"raw":{"length":738}}]},"tuple":"p0"} +{"time":4.6183333,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":0.893,"smoothed_rtt":1.855,"latest_rtt":0.893,"rtt_variance":1.022,"congestion_window":13994,"bytes_in_flight":1166,"packets_in_flight":1}} +{"time":4.653375,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":4.653375,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":4.653375,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":4.653375,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":4.653375,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":1,"path_id":0,"length":1200,"dcid":"7a656890043ac5b4"},"frames":[{"frame_type":"stream","stream_id":0,"offset":738,"fin":false,"raw":{"length":1170}}]},"tuple":"p0"} +{"time":4.67275,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":4.67275,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":4.67275,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":4.67275,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":4.67275,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":2,"path_id":0,"length":1200,"dcid":"7a656890043ac5b4"},"frames":[{"frame_type":"stream","stream_id":0,"offset":1908,"fin":false,"raw":{"length":1170}}]},"tuple":"p0"} +{"time":4.777916,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":4.777916,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":4.777916,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":4.777916,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":4.777916,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":3,"path_id":0,"length":1200,"dcid":"7a656890043ac5b4"},"frames":[{"frame_type":"stream","stream_id":0,"offset":3078,"fin":false,"raw":{"length":1170}}]},"tuple":"p0"} +{"time":4.8006663,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":4.8006663,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":4.8006663,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":4.8006663,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":4.8006663,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":4,"path_id":0,"length":1200,"dcid":"7a656890043ac5b4"},"frames":[{"frame_type":"stream","stream_id":0,"offset":4248,"fin":false,"raw":{"length":1170}}]},"tuple":"p0"} +{"time":4.815916,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":4.815916,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":4.815916,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":4.815916,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":4.815916,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":5,"path_id":0,"length":1200,"dcid":"7a656890043ac5b4"},"frames":[{"frame_type":"stream","stream_id":0,"offset":5418,"fin":false,"raw":{"length":1170}}]},"tuple":"p0"} +{"time":4.905625,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":4.905625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":4.905625,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":4.905625,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":4.905625,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":6,"path_id":0,"length":1200,"dcid":"7a656890043ac5b4"},"frames":[{"frame_type":"stream","stream_id":0,"offset":6588,"fin":false,"raw":{"length":1170}}]},"tuple":"p0"} +{"time":4.942958,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":4.942958,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":4.942958,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":4.942958,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":4.942958,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":7,"path_id":0,"length":1200,"dcid":"7a656890043ac5b4"},"frames":[{"frame_type":"stream","stream_id":0,"offset":7758,"fin":false,"raw":{"length":1170}}]},"tuple":"p0"} +{"time":5.017208,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":5.017208,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":5.017208,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":5.017208,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":5.017208,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":8,"path_id":0,"length":1104,"dcid":"7a656890043ac5b4"},"frames":[{"frame_type":"stream","stream_id":0,"offset":8928,"fin":true,"raw":{"length":1072}}]},"tuple":"p0"} +{"time":5.1080832,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":5.1080832,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":5.1080832,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":5.1080832,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":5.1080832,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":9,"path_id":0,"length":1326,"dcid":"7a656890043ac5b4"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1298,"payload_length":1298}}]},"tuple":"p0"} +{"time":5.762125,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":5.762125,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":3,"path_id":0,"length":66,"dcid":"1136b1bc3640bef0"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":81.0,"acked_ranges":[[0,10]],"ect1":0,"ect0":10,"ce":0},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"2f53d1f81719c6e6","stateless_reset_token":"57844ec6fea115fdf2f3a45bc6c45316"}]},"tuple":"p0"} +{"time":5.762125,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":5.762125,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":5.762125,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":5.762125,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":5.762125,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":30.944975}} +{"time":5.762125,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":1232,"packets_in_flight":2}} +{"time":5.762125,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":4,"path_id":0,"length":1389,"dcid":"1136b1bc3640bef0"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1361,"payload_length":1361}}]},"tuple":"p0"} +{"time":5.762125,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":5.762125,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":5.762125,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":30.944975}} +{"time":6.423541,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":6.423541,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":6.423541,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":6.423541,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":6.423541,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"cancelled"}} +{"time":6.423541,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"set","delta":25.0}} +{"time":6.423541,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":10,"path_id":0,"length":1089,"dcid":"33bdd46b2d031aec"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":18.0,"acked_ranges":[[2,5]],"ect1":0,"ect0":5,"ce":0},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"d29c212b7eb55cfa","stateless_reset_token":"e1362420c3ba52b12abd471aa7fdb81c"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"125b6c807fc07194","stateless_reset_token":"6f0d1b8b09320675dcbb47f6239ad79f"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"defa285ef1940415","stateless_reset_token":"bdae9ca2c01e1c300afbf98e08990d1a"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e6d00773a35e93e0","stateless_reset_token":"089d2bb1c002b2604291aa235188f52b"},{"frame_type":"path_new_connection_id","path_id":1,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"5ca9a7b8181a8bf8","stateless_reset_token":"554fb0e24ba6fedd3b5745cccfe2c4ed"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e7f9aec860edc2cd","stateless_reset_token":"77c7bbf032e788400fb4188c78fed9e7"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"40c3a6d2463debfe","stateless_reset_token":"550df6e4b19892eadb6dee3dcd229b59"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"96215daa4898f980","stateless_reset_token":"6d2d9f3589c4a51dede5f38db65b3ba2"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"7aeded6db1401e39","stateless_reset_token":"eb48cd13d8ceaffb249a68f55075d094"},{"frame_type":"path_new_connection_id","path_id":2,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"cb1f664c6b88f818","stateless_reset_token":"78c4be0150bb4d8df86669670300ade9"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"5921fb00c05a2651","stateless_reset_token":"435b90b39c716311c387ade166e46265"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"9885379d1f0afc37","stateless_reset_token":"f2e38b44df0367ad9fea572260e5338d"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"ca6804b948fe42ba","stateless_reset_token":"80689ba1fc570bf1c453ebefb5a2a8a9"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"87e707f3212c60fd","stateless_reset_token":"e10eb76c96b9d2c0bb502a73ec078526"},{"frame_type":"path_new_connection_id","path_id":3,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"be1b17b2b5af615a","stateless_reset_token":"c84520661500cdd994186d4df9e7f9d0"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"f50954f8206283ff","stateless_reset_token":"31071c50682fe0bf7265dfb5e361b524"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"b9c405c8d3603b9f","stateless_reset_token":"bb53874dcebb95bc42c52b171d78a078"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"8684fc4f34990709","stateless_reset_token":"068c42e8fad552d53bf62a8f50847549"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"ca989c3d686cb4c7","stateless_reset_token":"c4b92fd0d730976696cb2264a6b58c4e"},{"frame_type":"path_new_connection_id","path_id":4,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"7f028722b39d6b30","stateless_reset_token":"fd0310fada5789f284b21f239fda110e"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"acdc77c548a6da6a","stateless_reset_token":"68c79c2b0611c36a33a6c78c20ec30c0"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"f205b719c334e005","stateless_reset_token":"7365d6af36ae25087c2de67314a9fa76"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"7fddf2d29ee4df02","stateless_reset_token":"7a503dd367821146b98d81bc6f705fca"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"3fa2fab595e93baa","stateless_reset_token":"54c87bc104d3b5d9e33ff4d044a7a7f8"},{"frame_type":"path_new_connection_id","path_id":5,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"1528fa2fc34debf7","stateless_reset_token":"b8a0c3502f1a20ad96fbc9167ae0ec83"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"899ed3aa2ed73219","stateless_reset_token":"40f602dcd9cc9545a4dcbad6352b395f"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"7ae92bd94ecd9b0d","stateless_reset_token":"43b954580addd98c69571a645e7ffbc2"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"feb9bb5cd8b3f2ae","stateless_reset_token":"5c9723172b20aa9c5b29a8e7a7467b04"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"cb5ea3f01de5a64a","stateless_reset_token":"cda73f27449b55653835892715b2c684"},{"frame_type":"path_new_connection_id","path_id":6,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"545c3013f1acf187","stateless_reset_token":"866ce1cd0b78b8b02db38febbae232ae"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":0,"retire_prior_to":0,"connection_id_length":8,"connection_id":"4d11d6c6ee567d54","stateless_reset_token":"20a838c8f790b2906882d4ce6b91d2f0"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":1,"retire_prior_to":0,"connection_id_length":8,"connection_id":"d42ac76efe264e05","stateless_reset_token":"1af18080d294ab1307e356f40063d5a6"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":2,"retire_prior_to":0,"connection_id_length":8,"connection_id":"93ab3f9b6e9a91c4","stateless_reset_token":"9ae26f8e5cbdd0820cb0f4cc9a8fa02c"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":3,"retire_prior_to":0,"connection_id_length":8,"connection_id":"56555e81f7ffef71","stateless_reset_token":"66eef0e633da5d005b982c52a9e448ca"},{"frame_type":"path_new_connection_id","path_id":7,"sequence_number":4,"retire_prior_to":0,"connection_id_length":8,"connection_id":"e5fd4ab5f0d4cf69","stateless_reset_token":"791059de29cdd464951a61176568c36e"},{"frame_type":"path_retire_connection_id","path_id":0,"sequence_number":0}]},"tuple":"p0"} +{"time":6.423541,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":0.661,"smoothed_rtt":1.706,"latest_rtt":0.661,"rtt_variance":1.065,"bytes_in_flight":0,"packets_in_flight":0}} +{"time":6.4645,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":6.4645,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":6.4645,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":6.4645,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":6.4645,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":11,"path_id":0,"length":1389,"dcid":"33bdd46b2d031aec"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1361,"payload_length":1361}}]},"tuple":"p0"} +{"time":7.113541,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":7.113541,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":5,"path_id":0,"length":36,"dcid":"1136b1bc3640bef0"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":81.0,"acked_ranges":[[10,12]],"ect1":0,"ect0":12,"ce":0}]},"tuple":"p0"} +{"time":7.113541,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":7.113541,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":7.113541,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":6,"path_id":0,"length":1420,"dcid":"1136b1bc3640bef0"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1392,"payload_length":1392}}]},"tuple":"p0"} +{"time":7.113541,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":7.113541,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":7.113541,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":7.113541,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":7.113541,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":30.96775}} +{"time":7.3487496,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":7,"path_id":0,"length":56,"dcid":"1136b1bc3640bef0"},"frames":[{"frame_type":"path_new_connection_id","path_id":0,"sequence_number":5,"retire_prior_to":0,"connection_id_length":8,"connection_id":"4931bb7c8a888262","stateless_reset_token":"bb6c267e14bc9c3a8a95d3ac054a0bd2"}]},"tuple":"p0"} +{"time":7.3487496,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":7.3487496,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":7.3487496,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":30.96775}} +{"time":7.3487496,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"bytes_in_flight":1476,"packets_in_flight":2}} +{"time":7.5794578,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":7.5794578,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":7.5794578,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":7.5794578,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":7.5794578,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":30.757227}} +{"time":7.5794578,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":12,"path_id":0,"length":35,"dcid":"33bdd46b2d031aec"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":17.0,"acked_ranges":[[5,7]],"ect1":0,"ect0":7,"ce":0}]},"tuple":"p0"} +{"time":7.5794578,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":0.465,"smoothed_rtt":1.551,"latest_rtt":0.465,"rtt_variance":1.109,"bytes_in_flight":56,"packets_in_flight":1}} +{"time":7.624166,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":7.624166,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":7.624166,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":7.624166,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":7.624166,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":13,"path_id":0,"length":1420,"dcid":"33bdd46b2d031aec"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1392,"payload_length":1392}}]},"tuple":"p0"} +{"time":7.858333,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":7.858333,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":8,"path_id":0,"length":35,"dcid":"1136b1bc3640bef0"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":29.0,"acked_ranges":[[12,14]],"ect1":0,"ect0":14,"ce":0}]},"tuple":"p0"} +{"time":7.858333,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":7.858333,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":7.858333,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":9,"path_id":0,"length":1452,"dcid":"1136b1bc3640bef0"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1424,"payload_length":1424}}]},"tuple":"p0"} +{"time":7.858333,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":7.858333,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":7.858333,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":7.858333,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":7.858333,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"set","delta":30.987934}} +{"time":8.286375,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":8.286375,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":8.286375,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":8.286375,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":8.286375,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"loss_timeout","event_type":"cancelled"}} +{"time":8.286375,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":14,"path_id":0,"length":35,"dcid":"33bdd46b2d031aec"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":17.0,"acked_ranges":[[7,10]],"ect1":0,"ect0":10,"ce":0}]},"tuple":"p0"} +{"time":8.286375,"name":"quic:recovery_metrics_updated","data":{"path_id":0,"min_rtt":0.428,"smoothed_rtt":1.41,"latest_rtt":0.428,"rtt_variance":1.112,"bytes_in_flight":0,"packets_in_flight":0}} +{"time":8.369125,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":8.369125,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":8.369125,"name":"quic:timer_updated","data":{"timer_type":"idle_timeout","event_type":"set","delta":30000.0}} +{"time":8.369125,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_idle","event_type":"set","delta":15000.0}} +{"time":8.369125,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":15,"path_id":0,"length":1452,"dcid":"33bdd46b2d031aec"},"frames":[{"frame_type":"ping"},{"frame_type":"immediate_ack"},{"frame_type":"padding","raw":{"length":1424,"payload_length":1424}}]},"tuple":"p0"} +{"time":8.590333,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"ack","event_type":"cancelled"}} +{"time":8.590333,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":10,"path_id":0,"length":35,"dcid":"1136b1bc3640bef0"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":27.0,"acked_ranges":[[14,16]],"ect1":0,"ect0":16,"ce":0}]},"tuple":"p0"} +{"time":8.590333,"name":"quic:timer_updated","data":{"timer_type":"keep_alive","event_type":"set","delta":5000.0}} +{"time":8.590333,"name":"quic:timer_updated","data":{"path_id":0,"timer_type":"path_keep_alive","event_type":"set","delta":5000.0}} +{"time":9.1433325,"name":"quic:timer_updated","data":{"timer_type":"close","event_type":"set","delta":92.585266}} +{"time":9.169125,"name":"quic:packet_sent","data":{"header":{"packet_type":"1RTT","packet_number":11,"path_id":0,"length":39,"dcid":"1136b1bc3640bef0"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":100.0,"acked_ranges":[[14,16]],"ect1":0,"ect0":16,"ce":0},{"frame_type":"connection_close","error_space":"application_error","error_code":0,"reason":""}]},"tuple":"p0"} +{"time":9.5737915,"name":"quic:packet_received","data":{"header":{"packet_type":"1RTT","packet_number":16,"path_id":0,"length":39,"dcid":"33bdd46b2d031aec"},"frames":[{"frame_type":"path_ack","path_id":0,"ack_delay":8.0,"acked_ranges":[[10,12]],"ect1":0,"ect0":12,"ce":0},{"frame_type":"connection_close","error_space":"transport_error","error":"no_error","reason":""}]},"tuple":"p0"} diff --git a/zero-rtt-blob-service/src/main.rs b/zero-rtt-blob-service/src/main.rs new file mode 100644 index 0000000..80bfc37 --- /dev/null +++ b/zero-rtt-blob-service/src/main.rs @@ -0,0 +1,528 @@ +//! A tiny content-addressed blob service over an iroh QUIC connection. +//! +//! Companion to the address-validation-tokens blog post — demonstrates how +//! `NEW_TOKEN` tokens, 0-RTT data, and the server's 3x anti-amplification +//! budget interact. +//! +//! Protocol on each bi-stream: +//! PUT (0x00) || data_bytes (<= 10 KiB) -> blake3(data) (32 bytes) +//! GET (0x01) || hash_32_bytes -> data_bytes (or empty) +//! +//! Storage: in-memory `HashMap`. Wiped on server restart. + +use std::{ + env, + str::FromStr, + sync::Arc, + time::{Duration, Instant}, +}; + +use blake3::Hash; +use bytes::Bytes; +use clap::{Parser, Subcommand}; +use data_encoding::HEXLOWER; +use iroh::{ + EndpointAddr, RelayMode, SecretKey, TransportAddr, + endpoint::{ + Connection, Endpoint, Incoming, PathId, QuicTransportConfig, RecvStream, SendStream, + ServerConfig, ValidationTokenConfig, ZeroRttStatus, presets, + }, +}; +use iroh_tickets::endpoint::EndpointTicket; +use n0_error::{Result, StdResultExt}; +use noq_proto::{BloomTokenLog, NoneTokenLog}; +use papaya::HashMap; +use tokio::io::AsyncReadExt; +use tracing::{info, trace}; + +const ALPN: &[u8] = b"zero-rtt-blob-service/v1"; +const MAX_BLOB: usize = 10 * 1024; +const TAG_PUT: u8 = 0x00; +const TAG_GET: u8 = 0x01; +const TOKENS_PER_VALIDATION: u32 = 2; +const TOKEN_LIFETIME: Duration = Duration::from_secs(14 * 24 * 60 * 60); // 2 weeks + +// --------------------------------------------------------------------------- +// CLI +// --------------------------------------------------------------------------- + +#[derive(Parser)] +#[command(name = "zero-rtt-blob-service")] +struct Args { + #[command(subcommand)] + mode: Mode, +} + +#[derive(Subcommand)] +enum Mode { + /// Run a server that stores blobs in memory. + Server(ServerArgs), + /// Run a client that uploads or downloads a blob. + Client(ClientArgs), +} + +#[derive(Parser)] +struct ServerArgs { + /// Issue and validate NEW_TOKEN address-validation tokens. Off by default + /// (matching iroh's default), so a 0-RTT response larger than the 3x + /// amplification budget stalls until the handshake validates the client's + /// address. With this flag the client's replayed token validates the address + /// up front and the stall disappears. + #[clap(long)] + tokens: bool, + + /// Bind a fixed UDP port (IPv4 only) instead of a random one. With a fixed + /// `IROH_SECRET` this keeps the ticket stable across restarts. Binding IPv4 + /// only also stops advertising an IPv6 address that IPv4-only clients would + /// otherwise waste a dial attempt on. + #[clap(long)] + port: Option, +} + +#[derive(Parser)] +struct ClientArgs { + #[command(subcommand)] + op: ClientOp, +} + +#[derive(Subcommand)] +enum ClientOp { + /// Upload up to 10 KiB of data from stdin, then re-GET it for the remaining + /// rounds. Prints the BLAKE3 hash. + Put { + #[command(flatten)] + common: CommonArgs, + }, + /// Download the blob with the given hex-encoded BLAKE3 hash. Prints the + /// BLAKE3 hash of what was received (for verification), not the data itself. + Get { + #[command(flatten)] + common: CommonArgs, + /// Hex-encoded BLAKE3 hash to download. + hash: String, + }, +} + +/// Arguments shared by every client operation, flattened into each subcommand so +/// the ticket and flags come *after* `put`/`get` (e.g. `client put -n 10`). +#[derive(clap::Args)] +struct CommonArgs { + /// Ticket of the server to connect to. Must contain at least one IP address — + /// relay-only tickets are refused because 0-RTT via a relay isn't interesting here. + ticket: String, + + /// Number of requests to run: round 0 (cold full handshake) plus the 0-RTT rounds. + #[clap(short = 'n', long = "rounds", default_value = "2")] + n: u32, +} + +// --------------------------------------------------------------------------- +// Server +// --------------------------------------------------------------------------- + +async fn run_server(args: ServerArgs) -> Result<()> { + // Leave relays and address discovery (QAD) enabled on the server: that's how it + // learns its own public address (including behind 1:1 NAT) so the ticket carries + // a reachable direct address. It doesn't affect the measurement — the ticket is + // built from IP addresses only (see `wait_for_ip_addr`), and the client runs with + // relays disabled, so the client always dials the server directly. + let mut builder = Endpoint::builder(presets::N0) + .alpns(vec![ALPN.to_vec()]) + .transport_config(server_transport_config("zero-rtt-blob-service-server")) + .secret_key(get_or_generate_secret_key()?); + if let Some(port) = args.port { + // Replace the default dual-stack ephemeral binds with a single fixed + // IPv4 socket, so the ticket is stable across restarts and carries no + // (unreachable, for IPv4-only clients) IPv6 address. + builder = builder + .clear_ip_transports() + .bind_addr(format!("0.0.0.0:{port}").as_str()) + .anyerr()?; + } + let endpoint = builder.bind().await?; + let ip_addr = wait_for_ip_addr(&endpoint).await?; + eprintln!( + "direct addresses: {:?}", + ip_addr.ip_addrs().copied().collect::>() + ); + println!("ticket: {}", EndpointTicket::from(ip_addr)); + + let server_config = Arc::new(make_server_config(&endpoint, args.tokens)); + let store: Arc> = Arc::new(HashMap::new()); + + let accept = async move { + while let Some(incoming) = endpoint.accept().await { + let store = store.clone(); + let cfg = server_config.clone(); + tokio::spawn(async move { + if let Err(e) = serve_connection(incoming, cfg, store).await { + trace!("connection ended: {e:?}"); + } + }); + } + }; + tokio::select! { + _ = accept => info!("accept finished"), + _ = tokio::signal::ctrl_c() => info!("Ctrl-C received"), + } + Ok(()) +} + +async fn wait_for_ip_addr(endpoint: &Endpoint) -> Result { + let deadline = Instant::now() + Duration::from_secs(10); + loop { + let addr = endpoint.addr(); + let ip_addr = EndpointAddr::from_parts( + addr.id, + addr.ip_addrs().copied().map(TransportAddr::Ip), + ); + if !ip_addr.is_empty() { + return Ok(ip_addr); + } + if Instant::now() >= deadline { + n0_error::bail_any!("timed out waiting for local IP addresses"); + } + tokio::time::sleep(Duration::from_millis(200)).await; + } +} + +/// Build the server config. +/// +/// With `tokens` enabled, the server issues `NEW_TOKEN` address-validation tokens +/// and validates the ones clients present (via [`BloomTokenLog`]), which lifts the +/// 3x anti-amplification limit on 0-RTT connections so large 0.5-RTT responses +/// flow immediately. +/// +/// With `tokens` disabled (the default — pass `--tokens` to enable) the server +/// neither issues (`sent` = 0) nor validates ([`NoneTokenLog`] ignores any token a +/// client presents), so every 0-RTT connection's address stays unvalidated until +/// the handshake completes and a large 0.5-RTT response stalls on the 3x budget. +/// Note that `ValidationTokenConfig::default()` (used by `Incoming::accept`) +/// actually issues and validates, so the disabled case must be set explicitly +/// rather than relying on the default. +fn make_server_config(endpoint: &Endpoint, tokens: bool) -> ServerConfig { + let mut validation_token = ValidationTokenConfig::default(); + if tokens { + validation_token + .log(Arc::new(BloomTokenLog::default())) + .sent(TOKENS_PER_VALIDATION) + .lifetime(TOKEN_LIFETIME); + } else { + validation_token.log(Arc::new(NoneTokenLog)).sent(0); + } + endpoint + .create_server_config_builder(vec![ALPN.to_vec()]) + .set_validation_token_config(validation_token) + .build() +} + +async fn serve_connection( + incoming: Incoming, + server_config: Arc, + store: Arc>, +) -> Result<()> { + let accepting = incoming.accept_with(server_config).anyerr()?; + let conn = accepting.into_0rtt(); + while let Ok((send, recv)) = conn.accept_bi().await { + let store = store.clone(); + tokio::spawn(async move { + if let Err(e) = handle_request(send, recv, &store).await { + trace!("request error: {e:?}"); + } + }); + } + conn.closed().await; + Ok(()) +} + +async fn handle_request( + mut send: SendStream, + mut recv: RecvStream, + store: &HashMap, +) -> Result<()> { + let req = recv.read_to_end(1 + MAX_BLOB).await.anyerr()?; + let Some((&tag, body)) = req.split_first() else { + return Ok(()); + }; + match tag { + TAG_PUT => { + let hash = blake3::hash(body); + store.pin().insert(hash, Bytes::copy_from_slice(body)); + send.write_all(hash.as_bytes()).await.anyerr()?; + } + TAG_GET => { + let Ok(bytes): std::result::Result<[u8; 32], _> = body.try_into() else { + return Ok(()); + }; + let data = store.pin().get(&Hash::from_bytes(bytes)).cloned(); + if let Some(data) = data { + send.write_all(&data).await.anyerr()?; + } + } + _ => {} + } + send.finish().anyerr() +} + +// --------------------------------------------------------------------------- +// Client +// --------------------------------------------------------------------------- + +async fn run_client(args: ClientArgs) -> Result<()> { + let (ticket, n) = match &args.op { + ClientOp::Put { common } | ClientOp::Get { common, .. } => (&common.ticket, common.n), + }; + let ticket = EndpointTicket::from_str(ticket).std_context("invalid ticket")?; + let remote: EndpointAddr = ticket.into(); + if remote.ip_addrs().next().is_none() { + n0_error::bail_any!("ticket has no IP addresses — this demo requires direct IP paths"); + } + eprintln!( + "dialing direct addresses: {:?}", + remote.ip_addrs().copied().collect::>() + ); + + let endpoint = client_endpoint().await?; + + match &args.op { + ClientOp::Put { .. } => { + let t0 = Instant::now(); + let request = build_put_request().await?; + let hash_bytes = do_round(&endpoint, remote.clone(), request).await?; + print_hash(&hash_bytes)?; + eprintln!("put: {} us", t0.elapsed().as_micros()); + + if n > 1 { + let Ok(bytes): std::result::Result<[u8; 32], _> = hash_bytes.as_slice().try_into() else { + n0_error::bail_any!("expected 32-byte hash, got {} bytes", hash_bytes.len()); + }; + let hash = Hash::from_bytes(bytes); + let request = build_get_request(&hash); + for round in 1..n { + let t0 = Instant::now(); + let resp = do_round(&endpoint, remote.clone(), request.clone()).await?; + // Don't dump the (potentially large) blob — just echo its hash so + // the round-trip is verifiable without flooding stdout. + println!("{}", blake3::hash(&resp).to_hex()); + eprintln!("get {round}: {} us", t0.elapsed().as_micros()); + } + } + } + ClientOp::Get { hash, .. } => { + let request = build_get_request(&parse_hash(hash)?); + for round in 0..n { + let t0 = Instant::now(); + let resp = do_round(&endpoint, remote.clone(), request.clone()).await?; + println!("{}", blake3::hash(&resp).to_hex()); + eprintln!("get {round}: {} us", t0.elapsed().as_micros()); + } + } + } + endpoint.close().await; + Ok(()) +} + +async fn client_endpoint() -> Result { + let ep = Endpoint::builder(presets::N0) + .transport_config(qlog_transport_config("zero-rtt-blob-service-client")) + .relay_mode(RelayMode::Disabled) + .clear_address_lookup() + .bind() + .await?; + Ok(ep) +} + +fn qlog_transport_config(prefix: &str) -> QuicTransportConfig { + QuicTransportConfig::builder() + .qlog_from_env(prefix) + .build() +} + +/// Server transport config: qlog plus a deliberately huge initial congestion +/// window. +/// +/// QUIC's pacer spreads roughly one congestion window over one RTT, and its +/// per-burst capacity is `window * 2ms / RTT`. At a ~250 ms RTT the default +/// ~14 KiB window dribbles a multi-packet response out one packet every ~20 ms, +/// which buries the 0-RTT / token win under congestion-control pacing. Our +/// responses are bounded at `MAX_BLOB` (16 KiB), so we set a window large enough +/// (`16 KiB * RTT / 2ms` ≈ 2 MiB; we use a round 8 MiB for margin) that the pacer +/// bursts the whole response in a single flight. Only ever 16 KiB actually flies. +/// +/// This is a DEMO setting on a known-good path. A real server facing arbitrary +/// clients must not do this — see the anti-amplification and congestion-fairness +/// caveats. It does not affect the token A/B: an unvalidated (no-token) connection +/// is still capped at the 3x amplification budget regardless of the window. +fn server_transport_config(prefix: &str) -> QuicTransportConfig { + let mut congestion = noq_proto::congestion::NewRenoConfig::default(); + congestion.initial_window(8 * 1024 * 1024); + QuicTransportConfig::builder() + .qlog_from_env(prefix) + .congestion_controller_factory(Arc::new(congestion)) + .build() +} + +async fn do_round(endpoint: &Endpoint, remote: EndpointAddr, request: Bytes) -> Result> { + // Start the receive clock before connecting, so the per-chunk `recv` timing + // reflects the *full* request latency from this client's point of view: + // ~1 RTT to the first byte for an accepted 0-RTT round, but ~2 RTT for a cold + // round (where the handshake completes inside `connecting.await` before the + // request can even be sent). + let t0 = Instant::now(); + let connecting = endpoint + .connect_with_opts(remote, ALPN, Default::default()) + .await?; + let (conn, resp) = match connecting.into_0rtt() { + Ok(zrtt) => { + let (send, mut recv) = zrtt.open_bi().await.anyerr()?; + // Queue the request as 0-RTT early data *before* driving the handshake + // to completion. The earlier version spawned this write and raced it + // against `handshake_completed()` — the handshake almost always won, so + // the bytes were flushed only once 1-RTT keys existed and went out in a + // 1-RTT packet. The server still reports "0-RTT accepted" (resumption + // was accepted), but no early data ever actually rides on the wire. + // Writing inline and awaiting it guarantees the bytes are buffered as + // 0-RTT data first. This matches iroh's own 0-RTT test. + write_request(send, request.clone()).await?; + match zrtt.handshake_completed().await? { + ZeroRttStatus::Accepted(conn) => { + println!("0-RTT accepted"); + (conn, read_response(&mut recv, t0).await?) + } + ZeroRttStatus::Rejected(conn) => { + println!("0-RTT rejected; retrying on a fresh stream"); + let resp = roundtrip(&conn, &request, t0).await?; + (conn, resp) + } + } + } + Err(connecting) => { + println!("0-RTT not possible from our side"); + let conn = connecting.await.anyerr()?; + let resp = roundtrip(&conn, &request, t0).await?; + (conn, resp) + } + }; + // Don't close the connection right away. Right after the handshake the server + // sends a couple of `NewSessionTicket` messages, and those resumption tickets + // are exactly what makes the *next* connection eligible for 0-RTT. The ticket + // typically arrives in the same flight as the response, so closing here would + // race the connection driver and tear things down before the ticket is stored + // in the session cache — leaving every subsequent round stuck at 1-RTT. + // + // Instead, hand the connection off to a background task that lingers for a + // couple of RTTs so the driver can ingest the ticket, then closes cleanly. The + // request itself has already completed, so this doesn't add to the round's + // latency. + let linger = conn + .rtt(PathId::ZERO) + .map(|rtt| rtt * 2) + .unwrap_or_else(|| Duration::from_millis(100)); + tokio::spawn(async move { + tokio::time::sleep(linger).await; + conn.close(0u8.into(), b""); + }); + Ok(resp) +} + +async fn roundtrip(conn: &Connection, request: &[u8], t0: Instant) -> Result> { + let (mut send, mut recv) = conn.open_bi().await.anyerr()?; + send.write_all(request).await.anyerr()?; + send.finish().anyerr()?; + read_response(&mut recv, t0).await +} + +/// Read a response to its end, logging each chunk's arrival time relative to `t0` +/// (when the request was sent). A stall in the response stream — e.g. the +/// anti-amplification stall when no validation token is presented — shows up as a +/// gap between consecutive lines, while smooth pacing shows up as evenly spaced +/// lines a few ms apart. +async fn read_response(recv: &mut RecvStream, t0: Instant) -> Result> { + let mut data = Vec::new(); + let mut buf = [0u8; MAX_BLOB]; + let mut prev = Duration::ZERO; + while let Some(n) = recv.read(&mut buf).await.anyerr()? { + data.extend_from_slice(&buf[..n]); + let elapsed = t0.elapsed(); + // `Δ` is the gap since the previous chunk: tiny for a paced/bursted + // response, but ~1 RTT on the chunk right after an amplification stall. + eprintln!( + " recv +{:>6} us Δ{:>+7} us | +{:>5} B | {:>6} B total", + elapsed.as_micros(), + elapsed.saturating_sub(prev).as_micros(), + n, + data.len() + ); + prev = elapsed; + if data.len() > MAX_BLOB { + n0_error::bail_any!("response exceeds {MAX_BLOB} bytes"); + } + } + Ok(data) +} + +async fn write_request(mut send: SendStream, request: Bytes) -> Result<()> { + send.write_all(&request).await.anyerr()?; + send.finish().anyerr() +} + +async fn build_put_request() -> Result { + let mut buf = vec![TAG_PUT]; + tokio::io::stdin().read_to_end(&mut buf).await.anyerr()?; + if buf.len() - 1 > MAX_BLOB { + n0_error::bail_any!("blob exceeds {MAX_BLOB} bytes"); + } + Ok(buf.into()) +} + +fn build_get_request(hash: &Hash) -> Bytes { + let mut buf = vec![TAG_GET]; + buf.extend_from_slice(hash.as_bytes()); + buf.into() +} + +fn print_hash(resp: &[u8]) -> Result<()> { + let Ok(bytes): std::result::Result<[u8; 32], _> = resp.try_into() else { + n0_error::bail_any!("expected 32-byte hash, got {} bytes", resp.len()); + }; + println!("{}", Hash::from_bytes(bytes).to_hex()); + Ok(()) +} + +fn parse_hash(s: &str) -> Result { + let bytes = HEXLOWER + .decode(s.as_bytes()) + .std_context("invalid hex")?; + let array: [u8; 32] = bytes + .as_slice() + .try_into() + .std_context("hash must be 32 bytes")?; + Ok(Hash::from_bytes(array)) +} + +// --------------------------------------------------------------------------- +// Misc +// --------------------------------------------------------------------------- + +fn get_or_generate_secret_key() -> Result { + if let Ok(secret) = env::var("IROH_SECRET") { + SecretKey::from_str(&secret).std_context("Invalid IROH_SECRET") + } else { + let key = SecretKey::generate(); + eprintln!( + "Generated new secret key: {}", + HEXLOWER.encode(&key.to_bytes()) + ); + eprintln!("Set IROH_SECRET to reuse this key."); + Ok(key) + } +} + +#[tokio::main] +async fn main() -> Result<()> { + tracing_subscriber::fmt::init(); + match Args::parse().mode { + Mode::Server(args) => run_server(args).await, + Mode::Client(args) => run_client(args).await, + } +}