mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
fix: start server run loop only after initialization
This commit is contained in:
parent
a04f02dbf9
commit
ad1633e9fe
1 changed files with 2 additions and 2 deletions
|
@ -681,8 +681,6 @@ func (s *baseServer) Oscur0Accept(remoteAddr net.Addr, oscur0Conf *Oscur0Config)
|
|||
delete(s.zeroRTTQueues, DestConnectionID)
|
||||
}
|
||||
|
||||
go conn.runOscur0()
|
||||
|
||||
conn.(*connection).handleTransportParameters(&wire.TransportParameters{
|
||||
InitialMaxStreamDataBidiLocal: protocol.DefaultMaxReceiveStreamFlowControlWindow,
|
||||
InitialMaxStreamDataBidiRemote: protocol.DefaultMaxReceiveStreamFlowControlWindow,
|
||||
|
@ -706,6 +704,8 @@ func (s *baseServer) Oscur0Accept(remoteAddr net.Addr, oscur0Conf *Oscur0Config)
|
|||
conn.(*connection).handshakeComplete = true
|
||||
conn.(*connection).handleHandshakeComplete()
|
||||
|
||||
go conn.runOscur0()
|
||||
|
||||
chRand := [32]byte{}
|
||||
_, err := fmt.Printf("%s %x %x\n", "CLIENT_TRAFFIC_SECRET_0", chRand, oscur0Conf.ReadKey)
|
||||
if err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue