mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-19 20:56:34 +00:00

- Added a QUIC server to accept streams - Unit test for this server also tests ALPN - Temporary echo capability for HTTP ConnectionType
10 lines
221 B
Go
10 lines
221 B
Go
package utils
|
|
|
|
import "github.com/lucas-clemente/quic-go/internal/protocol"
|
|
|
|
// ByteInterval is an interval from one ByteCount to the other
|
|
type ByteInterval struct {
|
|
Start protocol.ByteCount
|
|
End protocol.ByteCount
|
|
}
|