mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
wip: implement InitialSpec type (1/n)
- TransportParameters are now set as a part of ClientHelloSpecs - Removes transportparameters package and uses tls.TransportParameters
This commit is contained in:
parent
9327068651
commit
20e2a487b8
9 changed files with 173 additions and 497 deletions
10
interface.go
10
interface.go
|
@ -12,7 +12,6 @@ import (
|
|||
"github.com/quic-go/quic-go/internal/handshake"
|
||||
"github.com/quic-go/quic-go/internal/protocol"
|
||||
"github.com/quic-go/quic-go/logging"
|
||||
"github.com/quic-go/quic-go/transportparameters"
|
||||
)
|
||||
|
||||
// The StreamID is the ID of a QUIC stream.
|
||||
|
@ -336,11 +335,10 @@ type Config struct {
|
|||
Tracer func(context.Context, logging.Perspective, ConnectionID) logging.ConnectionTracer
|
||||
|
||||
// TransportParameters override other transport parameters set by the Config.
|
||||
TransportParameters transportparameters.TransportParameters // [UQUIC]
|
||||
SrcConnIDLength int // [UQUIC]
|
||||
DestConnIDLength int // [UQUIC]
|
||||
InitPacketNumber uint64 // [UQUIC]
|
||||
InitPacketNumberLength protocol.PacketNumberLen // [UQUIC]
|
||||
SrcConnIDLength int // [UQUIC]
|
||||
DestConnIDLength int // [UQUIC]
|
||||
InitPacketNumber uint64 // [UQUIC]
|
||||
InitPacketNumberLength PacketNumberLen // [UQUIC]
|
||||
}
|
||||
|
||||
type ClientHelloInfo struct {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue