-
Notifications
You must be signed in to change notification settings - Fork 149
feat(s2n-quic-dc): Reuse handshakes across application processes #2854
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 8 commits
9749b32
e4eb9ca
75fde84
8f4dcd4
f26c672
8a1a9d3
7c8b019
ed64761
4a75860
fe198e1
e7b29b0
a0fd7f4
cf206ad
3821caf
b209b71
8ea84c3
6777e07
4e9967b
d8eca96
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -192,6 +192,30 @@ struct AcceptorTcpIoError<'a> { | |
error: &'a std::io::Error, | ||
} | ||
|
||
/// Emitted when the TCP stream has been sent over a Unix domain socket | ||
#[event("acceptor:tcp:socket_sent")] | ||
#[subject(endpoint)] | ||
struct AcceptorTcpSocketSent<'a> { | ||
/// The credential ID of the stream | ||
#[snapshot("[HIDDEN]")] | ||
credential_id: &'a[u8], | ||
|
||
/// The ID of the stream | ||
stream_id: u64, | ||
|
||
/// The amount of time the TCP stream spent in the queue before being enqueued | ||
|
||
#[timer("sojourn_time")] | ||
sojourn_time: core::time::Duration, | ||
|
||
/// The number of times the Unix domain socket was blocked on send | ||
#[measure("blocked_count")] | ||
|
||
blocked_count: usize, | ||
|
||
/// The len of the payload sent over the Unix domain socket | ||
#[measure("len", Bytes)] | ||
payload_len: usize, | ||
} | ||
|
||
/// Emitted when a UDP acceptor is started | ||
#[event("acceptor:udp:started")] | ||
#[subject(endpoint)] | ||
|
Uh oh!
There was an error while loading. Please reload this page.