mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
qlog: move the quic-go version to the configuration field (#3735)
This commit is contained in:
parent
53571b0a26
commit
3ebdd1df5e
1 changed files with 10 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue