*/
#define TCP_RCV_SS_PKTCOUNT 512
-/* Receiver idle time, for rcv socket buffer resizing */
-#define TCPTV_RCVBUFIDLE (TCP_RETRANSHZ/2)
#define TCPTV_TWTRUNC 8 /* RTO factor to truncate TW */
#define TCP_LINGERTIME 120 /* linger at most 2 minutes */
#define TCP_CONN_KEEPIDLE(tp) \
((tp)->t_keepidle && \
((tp)->t_inpcb->inp_socket->so_options & SO_KEEPALIVE) ? \
- (tp)->t_keepidle : tcp_keepidle)
+ (tp)->t_keepidle : (uint32_t)tcp_keepidle)
#define TCP_CONN_KEEPINIT(tp) \
- (((tp)->t_keepinit > 0) ? (tp)->t_keepinit : tcp_keepinit)
+ (((tp)->t_keepinit > 0) ? (tp)->t_keepinit : (uint32_t)tcp_keepinit)
#define TCP_CONN_KEEPCNT(tp) \
- (((tp)->t_keepcnt > 0) ? (tp)->t_keepcnt : tcp_keepcnt)
+ (((tp)->t_keepcnt > 0) ? (tp)->t_keepcnt : (uint32_t)tcp_keepcnt)
#define TCP_CONN_KEEPINTVL(tp) \
- (((tp)->t_keepintvl > 0) ? (tp)->t_keepintvl : tcp_keepintvl)
+ (((tp)->t_keepintvl > 0) ? (tp)->t_keepintvl : (uint32_t)tcp_keepintvl)
#define TCP_CONN_MAXIDLE(tp) \
(TCP_CONN_KEEPCNT(tp) * TCP_CONN_KEEPINTVL(tp))