We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
msquic/src/core/connection.c
Lines 5600 to 5605 in 4eb7b0b
I checked how many packets are processed here.
QUIC_RX_PACKET* Packet; uint32_t count = 0; while ((Packet = Packets) != NULL) { fprintf(stderr, "Packet processing (%d/%d)\n", ++count, PacketChainCount);
multi connection client process packets more than received
Packet processing (1401/55)
No response
main
server
./artifacts/bin/linux/x64_Debug_openssl3/secnetperf -exec:maxtput -io:epoll -pollidle:1000
client
./artifacts/bin/linux/x64_Debug_openssl3/secnetperf -target:192.168.20.24 -exec:maxtput -down:10s -ptput:1 -tcp:0 -trimout -watchdog:25000 -pconn:1 -pstream:1 -io:epoll -conns:2
Should be printing
Packet processing (55/55)
Server side is mostly as below. Enough fast?
Packet processing (1/1)
The text was updated successfully, but these errors were encountered:
@nibanks dev/daiki/multi_conn_packets branch has the print. You can easily repro with more connections
dev/daiki/multi_conn_packets
Sorry, something went wrong.
No branches or pull requests
Describe the bug
msquic/src/core/connection.c
Lines 5600 to 5605 in 4eb7b0b
I checked how many packets are processed here.
multi connection client process packets more than received
Affected OS
Additional OS information
No response
MsQuic version
main
Steps taken to reproduce bug
server
client
Expected behavior
Should be printing
Actual outcome
Additional details
Server side is mostly as below. Enough fast?
The text was updated successfully, but these errors were encountered: