HomeSort by: relevance | last modified time | path
    Searched defs:ms_goneby (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/netinet/
sctp_timer.c 766 unsigned int ms_goneby; local in function:sctp_t3rxt_timer
769 ms_goneby = (now.tv_sec - net->last_sent_time.tv_sec) * 1000;
771 ms_goneby = 0;
773 if ((ms_goneby > net->RTO) || (net->RTO == 0)) {
sctp_output.c 8155 int ms_goneby, highest_ms, state_override=0; local in function:sctp_select_hb_destination
8186 ms_goneby = (now->tv_sec - net->last_sent_time.tv_sec) * 1000;
8189 ms_goneby = 0x7fffffff;
8192 printf("net:%p ms_goneby:%d\n",
8193 net, ms_goneby);
8206 if ((((unsigned int)ms_goneby >= net->RTO) || (state_override)) &&
8207 (ms_goneby > highest_ms)) {
8208 highest_ms = ms_goneby;

Completed in 18 milliseconds