mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
accept 0-RTT request in the http3 server
This commit is contained in:
parent
91543322f6
commit
950f278362
2 changed files with 2 additions and 7 deletions
|
@ -173,10 +173,8 @@ func (s *Server) handleConn(sess quic.EarlySession) {
|
|||
(&settingsFrame{}).Write(buf)
|
||||
str.Write(buf.Bytes())
|
||||
|
||||
// Wait for completion of the handshake.
|
||||
// TODO(#2311): allow 0-RTT requests.
|
||||
<-sess.HandshakeComplete().Done()
|
||||
|
||||
// Process all requests immediately.
|
||||
// It's the client's responsibility to decide which requests are eligible for 0-RTT.
|
||||
for {
|
||||
str, err := sess.AcceptStream(context.Background())
|
||||
if err != nil {
|
||||
|
|
|
@ -172,9 +172,6 @@ var _ = Describe("Server", func() {
|
|||
sess = mockquic.NewMockEarlySession(mockCtrl)
|
||||
controlStr := mockquic.NewMockStream(mockCtrl)
|
||||
controlStr.EXPECT().Write(gomock.Any())
|
||||
ctx, cancel := context.WithCancel(context.Background())
|
||||
cancel()
|
||||
sess.EXPECT().HandshakeComplete().Return(ctx)
|
||||
sess.EXPECT().OpenUniStream().Return(controlStr, nil)
|
||||
sess.EXPECT().AcceptStream(gomock.Any()).Return(str, nil)
|
||||
sess.EXPECT().AcceptStream(gomock.Any()).Return(nil, errors.New("done"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue