Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:timestamp

52  * |                    TimeStamp Sent (seconds)                   |
54 * | TimeStamp Sent (microseconds) |
56 * | TimeStamp Received (seconds) |
58 * | TimeStamp Received (microseconds) |
470 struct timeval timestamp;
552 timestamp.tv_sec=EXTRACT_32BITS(lspping_com_header->ts_sent_sec);
553 timestamp.tv_usec=EXTRACT_32BITS(lspping_com_header->ts_sent_usec);
554 printf("\n\t Sender Timestamp: ");
555 ts_print(&timestamp);
557 timestamp.tv_sec=EXTRACT_32BITS(lspping_com_header->ts_rcvd_sec);
558 timestamp.tv_usec=EXTRACT_32BITS(lspping_com_header->ts_rcvd_usec);
559 printf("Receiver Timestamp: ");
560 if ((timestamp.tv_sec != 0) && (timestamp.tv_usec != 0))
561 ts_print(&timestamp);
563 printf("no timestamp");