Skip to content

Commit 64d2f80

Browse files
committed
Revert "fix: check closed status of socket during callbacks"
This reverts commit 4cda654.
1 parent 36b5569 commit 64d2f80

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

transports/http3-quiche/lib/socket.js

-8
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,6 @@ export class Http3WebTransportSocket {
8585
}
8686

8787
doProcessBufferedChlos() {
88-
if (this.closed) {
89-
return
90-
}
91-
9288
this.cobj.processBufferedChlos()
9389
this.chlosSched = false
9490
}
@@ -114,10 +110,6 @@ export class Http3WebTransportSocket {
114110
}
115111

116112
packetSendCB() {
117-
if (this.closed) {
118-
return
119-
}
120-
121113
// @ts-ignore
122114
if (this.socketInt.getSendQueueCount() === 0 && this.blocked) {
123115
this.cobj.onCanWrite()

0 commit comments

Comments
 (0)