mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
remove unneeded tracking variables from streams, optimize memory layout (#3699)
* remove the closedForShutdown boolean in the send stream * remove the canceledWrite boolean in the send stream * remove the closedForShutdown boolean in the receive stream * remove the canceledRead boolean in the receive stream * remove the resetRemotely boolean in the receive stream * optimize memory layout of the receiveStream This brings it down from 200 to 192 bytes.
This commit is contained in:
parent
0ac5d1c149
commit
aa091fe672
3 changed files with 28 additions and 38 deletions
|
@ -682,7 +682,7 @@ var _ = Describe("Receive Stream", func() {
|
|||
})
|
||||
|
||||
It("doesn't do anything when it was closed for shutdown", func() {
|
||||
str.closeForShutdown(nil)
|
||||
str.closeForShutdown(errors.New("shutdown"))
|
||||
err := str.handleResetStreamFrame(rst)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue