We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7826494 commit 745d685Copy full SHA for 745d685
1 file changed
api/net/tcp/connection.hpp
@@ -485,10 +485,10 @@ class Connection : public std::enable_shared_from_this<Connection> {
485
Timer timewait_timer;
486
487
/** Number of retransmission attempts on the packet first in RT-queue */
488
- size_t rtx_attempt_ = 0;
+ int8_t rtx_attempt_ = 0;
489
490
/** number of retransmitted SYN packets. */
491
- size_t syn_rtx_ = 0;
+ int8_t syn_rtx_ = 0;
492
493
/** Congestion control */
494
// is fast recovery state
0 commit comments