mirror of
https://github.com/fumiama/terasu-cloudflared.git
synced 2026-06-07 19:40:30 +08:00
- Added a QUIC server to accept streams - Unit test for this server also tests ALPN - Temporary echo capability for HTTP ConnectionType
10 lines
234 B
Go
10 lines
234 B
Go
package utils
|
|
|
|
import "github.com/lucas-clemente/quic-go/internal/protocol"
|
|
|
|
// PacketInterval is an interval from one PacketNumber to the other
|
|
type PacketInterval struct {
|
|
Start protocol.PacketNumber
|
|
End protocol.PacketNumber
|
|
}
|