Navigation



Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libfdcore/sctp.c

    r1078 r1027  
    10681068        size_t                   mempagesz = sysconf(_SC_PAGESIZE); /* We alloc buffer by memory pages for efficiency */
    10691069        int                      timedout = 0;
     1070        struct timespec          recv_on;
    10701071       
    10711072        TRACE_ENTRY("%p %p %p %p %p", conn, strid, buf, len, event);
     
    11881189        }
    11891190       
     1191        /* Piggy-tail the timestamp of reception */
     1192        CHECK_SYS_DO( clock_gettime(CLOCK_REALTIME, &recv_on), /* continue */ );
     1193        memcpy(data + datasize, &recv_on, sizeof(struct timespec));
     1194               
    11901195        /* From this point, we have received a message */
    11911196        *event = FDEVP_CNX_MSG_RECV;
Note: See TracChangeset for help on using the changeset viewer.