-
Notifications
You must be signed in to change notification settings - Fork 758
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
feat(qlog): extend From<EventType> for EventImportance
#1684
Conversation
Extend `impl From<EventType> for EventImportance` for all `TransportEventType` `enum` variants.
This commit adds support for the qlog [`version_information` QUIC event](https://quicwg.org/qlog/draft-ietf-quic-qlog-quic-events.html#name-version_information) on the client. Depends on mozilla#1504 Depends on cloudflare/quiche#1684 Meta issue: mozilla#528
The build failures were due to formatting lint (you can use |
Merged as 12eebf3, thanks! |
With cloudflare/quiche#1684 merged, one can use cloudflare's repo.
This commit adds support for the qlog [`version_information` QUIC event](https://quicwg.org/qlog/draft-ietf-quic-qlog-quic-events.html#name-version_information) on the server. Depends on cloudflare/quiche#1684 Meta issue: mozilla#528
This commit adds support for the qlog [`version_information` QUIC event](https://quicwg.org/qlog/draft-ietf-quic-qlog-quic-events.html#name-version_information) on the server. Depends on cloudflare/quiche#1684 Meta issue: mozilla#528
@LPardue could you release |
* deps(qlog): update to qlog v0.10.0 This commit upgrades all `neqo-*` crates to use `qlog` `v0.10.0`. See also `qlog` `v0.10.0` release pull request cloudflare/quiche#1647 * feat(qlog): log version_information on client This commit adds support for the qlog [`version_information` QUIC event](https://quicwg.org/qlog/draft-ietf-quic-qlog-quic-events.html#name-version_information) on the client. Depends on #1504 Depends on cloudflare/quiche#1684 Meta issue: #528 * Use replace github.com/cloudflare with github.com/mxinden With cloudflare/quiche#1684 merged, one can use cloudflare's repo. * Inline ev_data * Remove crates.io patch Patch no longer needed since upgrade to neqo v0.11.0 #1547.
* feat(qlog): log version_information on server This commit adds support for the qlog [`version_information` QUIC event](https://quicwg.org/qlog/draft-ietf-quic-qlog-quic-events.html#name-version_information) on the server. Depends on cloudflare/quiche#1684 Meta issue: #528 * Use WireVersion for client version * Have create_qlog_trace take &ConnectionIdRef
Extend
impl From<EventType> for EventImportance
for allTransportEventType
enum
variants.