Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing initializations in QuicSocketBase class #50

Open
duncanmcl opened this issue Nov 25, 2024 · 0 comments
Open

Missing initializations in QuicSocketBase class #50

duncanmcl opened this issue Nov 25, 2024 · 0 comments

Comments

@duncanmcl
Copy link

In the Quic code base at https://github.com/signetlabdei/quic, some of the variables in QuicSocketBase class are not initialized. This causes problems like some packets get extremely big packet size. The line m_rxTrace (sock.m_rxTrace) in file quic-socket-base.cc should be changed with multiple lines below:

m_rxTrace (sock.m_rxTrace),
m_initialPacketSize (sock.m_initialPacketSize),
m_socketRxBufferSize (sock.m_socketRxBufferSize),
m_socketTxBufferSize (sock.m_socketTxBufferSize),
m_flushOnClose (sock.m_flushOnClose)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant