Lines Matching +full:row +full:- +full:delay
1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
58 /*-
59 --0 1 2 3 4 5 6 7
60 --0123456789012345678901234567890123456789012345678901234567890123456789012345
64 03999999999 with bad length 999999999 suppressed - original too short
65 04999999999 with bad checksum 999999999 suppressed - original was ICMP
67 06 999999999 suppressed - multicast echo
68 07 999999999 suppressed - multicast tstamp
75 14999999999 time-to-live exceeded 999999999 time-to-line exceeded
80 --0123456789012345678901234567890123456789012345678901234567890123456789012345
81 --0 1 2 3 4 5 6 7
87 return (subwin(stdscr, LINES-3-1, 0, MAINWIN_ROW, 0)); in openicmp()
104 #define L(row, str) mvwprintw(wnd, row, 10, str) in labelicmp() argument
105 #define R(row, str) mvwprintw(wnd, row, 45, str); in labelicmp() argument
109 L(3, "with bad length"); R(3, "suppressed - original too short"); in labelicmp()
110 L(4, "with bad checksum"); R(4, "suppressed - original was ICMP"); in labelicmp()
112 R(6, "suppressed - multicast echo"); in labelicmp()
113 R(7, "suppressed - multicast tstamp"); in labelicmp()
115 #define B(row, str) L(row, str); R(row, str) in labelicmp() argument
120 B(14, "time-to-live exceeded"); in labelicmp()
137 divisor = (delay > 1000000) ? delay / 1000000 : 1; in domode()
149 #define DO(stat) ret->stat = (icmpstat.stat - sub->stat) / divisor in domode()
187 #define DO(stat, row, col) \ in showicmp() argument
188 mvwprintw(wnd, row, col, "%9lu", stats.stat) in showicmp()
200 #define DO2(type, row) DO(icps_inhist[type], row, 0); DO(icps_outhist[type], \ in showicmp() argument
201 row, 35) in showicmp()
231 error("icmpstat structure has grown--recompile systat!"); in initicmp()