mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-30 22:34:15 -05:00
6fde3632ef
The vendor/ folder was created with the help of @FiloSottile's gvt and vendorcheck. Any dependencies of Caddy plugins outside this repo are not vendored. We do not remove any unused, vendored packages because vendorcheck -u only checks using the current build configuration; i.e. packages that may be imported by files toggled by build tags of other systems. CI tests have been updated to ignore the vendor/ folder. When Go 1.9 is released, a few of the go commands should be revised to again use ./... as it will ignore the vendor folder by default.
28 lines
1,005 B
Go
28 lines
1,005 B
Go
package frames
|
|
|
|
import "github.com/lucas-clemente/quic-go/utils"
|
|
|
|
// LogFrame logs a frame, either sent or received
|
|
func LogFrame(frame Frame, sent bool) {
|
|
if !utils.Debug() {
|
|
return
|
|
}
|
|
dir := "<-"
|
|
if sent {
|
|
dir = "->"
|
|
}
|
|
switch f := frame.(type) {
|
|
case *StreamFrame:
|
|
utils.Debugf("\t%s &frames.StreamFrame{StreamID: %d, FinBit: %t, Offset: 0x%x, Data length: 0x%x, Offset + Data length: 0x%x}", dir, f.StreamID, f.FinBit, f.Offset, f.DataLen(), f.Offset+f.DataLen())
|
|
case *StopWaitingFrame:
|
|
if sent {
|
|
utils.Debugf("\t%s &frames.StopWaitingFrame{LeastUnacked: 0x%x, PacketNumberLen: 0x%x}", dir, f.LeastUnacked, f.PacketNumberLen)
|
|
} else {
|
|
utils.Debugf("\t%s &frames.StopWaitingFrame{LeastUnacked: 0x%x}", dir, f.LeastUnacked)
|
|
}
|
|
case *AckFrame:
|
|
utils.Debugf("\t%s &frames.AckFrame{LargestAcked: 0x%x, LowestAcked: 0x%x, AckRanges: %#v, DelayTime: %s}", dir, f.LargestAcked, f.LowestAcked, f.AckRanges, f.DelayTime.String())
|
|
default:
|
|
utils.Debugf("\t%s %#v", dir, frame)
|
|
}
|
|
}
|