mirror of
https://github.com/livekit/livekit.git
synced 2026-05-24 23:26:11 +00:00
d862917249
Still not doing anythingw with it, but just making a small PR to record that information for future use.
46 lines
1.3 KiB
Go
46 lines
1.3 KiB
Go
// Copyright 2023 LiveKit, Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package sendsidebwe
|
|
|
|
import (
|
|
"github.com/livekit/livekit-server/pkg/sfu/ccutils"
|
|
"go.uber.org/zap/zapcore"
|
|
)
|
|
|
|
type packetInfo struct {
|
|
sequenceNumber uint64
|
|
sendTime int64
|
|
recvTime int64
|
|
probeClusterId ccutils.ProbeClusterId
|
|
size uint16
|
|
isRTX bool
|
|
isProbe bool
|
|
}
|
|
|
|
func (pi *packetInfo) MarshalLogObject(e zapcore.ObjectEncoder) error {
|
|
if pi == nil {
|
|
return nil
|
|
}
|
|
|
|
e.AddUint64("sequenceNumber", pi.sequenceNumber)
|
|
e.AddInt64("sendTime", pi.sendTime)
|
|
e.AddInt64("recvTime", pi.recvTime)
|
|
e.AddUint32("probeClusterId", uint32(pi.probeClusterId))
|
|
e.AddUint16("size", pi.size)
|
|
e.AddBool("isRTX", pi.isRTX)
|
|
e.AddBool("isProbe", pi.isProbe)
|
|
return nil
|
|
}
|