qlog: move the quic-go version to the configuration field (#3735)

This commit is contained in:
Marten Seemann 2023-04-19 15:06:19 +02:00 committed by GitHub
parent 53571b0a26
commit 3ebdd1df5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,10 +18,19 @@ func (l topLevel) MarshalJSONObject(enc *gojay.Encoder) {
enc.StringKey("qlog_format", "NDJSON")
enc.StringKey("qlog_version", "draft-02")
enc.StringKeyOmitEmpty("title", "quic-go qlog")
enc.StringKey("code_version", quicGoVersion)
enc.ObjectKey("configuration", configuration{Version: quicGoVersion})
enc.ObjectKey("trace", l.trace)
}
type configuration struct {
Version string
}
func (c configuration) IsNil() bool { return false }
func (c configuration) MarshalJSONObject(enc *gojay.Encoder) {
enc.StringKey("code_version", c.Version)
}
type vantagePoint struct {
Name string
Type protocol.Perspective