fix: start server run loop only after initialization

This commit is contained in:
Mingye Chen 2025-03-05 15:48:54 -07:00
parent a04f02dbf9
commit ad1633e9fe

View file

@ -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 {