Lines Matching +full:row +full:- +full:delay
1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
60 /*-
61 --0 1 2 3 4 5 6 7
62 --0123456789012345678901234567890123456789012345678901234567890123456789012345
65 029999999 - too short for header 999999999 - generated locally
66 039999999 - too short for data 999999999 - output drops
67 049999999 - with invalid version 999999999 output fragments generated
68 059999999 total fragments received 999999999 - fragmentation failed
69 069999999 - fragments dropped 999999999 destinations unreachable
70 079999999 - fragments timed out 999999999 packets output via raw IP
71 089999999 - fragments overflown
72 099999999 - packets reassembled ok Input next-header histogram
73 109999999 packets forwarded 999999999 - destination options
74 119999999 - unreachable dests 999999999 - hop-by-hop options
75 129999999 - redirects generated 999999999 - IPv4
76 139999999 option errors 999999999 - TCP
77 149999999 unwanted multicasts 999999999 - UDP
78 159999999 delivered to upper layer 999999999 - IPv6
79 169999999 bad scope packets 999999999 - routing header
80 179999999 address selection failed 999999999 - fragmentation header
81 18 999999999 - ICMP6
82 19 999999999 - none
83 --0123456789012345678901234567890123456789012345678901234567890123456789012345
84 --0 1 2 3 4 5 6 7
90 return (subwin(stdscr, LINES-3-1, 0, MAINWIN_ROW, 0)); in openip6()
107 #define L(row, str) mvwprintw(wnd, row, 10, str) in labelip6() argument
108 #define R(row, str) mvwprintw(wnd, row, 45, str); in labelip6() argument
111 L(2, "- too short for header"); R(2, "- generated locally"); in labelip6()
112 L(3, "- too short for data"); R(3, "- output drops"); in labelip6()
113 L(4, "- with invalid version"); R(4, "output fragments generated"); in labelip6()
114 L(5, "total fragments received"); R(5, "- fragmentation failed"); in labelip6()
115 L(6, "- fragments dropped"); R(6, "destinations unreachable"); in labelip6()
116 L(7, "- fragments timed out"); R(7, "packets output via raw IP"); in labelip6()
117 L(8, "- fragments overflown"); in labelip6()
118 L(9, "- atomic fragments"); R(9, "Input next-header histogram"); in labelip6()
119 L(10, "- packets reassembled ok"); R(10, " - destination options"); in labelip6()
120 L(11, "packets forwarded"); R(11, " - hop-by-hop options"); in labelip6()
121 L(12, "- unreachable dests"); R(12, " - IPv4"); in labelip6()
122 L(13, "- redirects generated"); R(13, " - TCP"); in labelip6()
123 L(14, "option errors"); R(14, " - UDP"); in labelip6()
124 L(15, "unwanted multicasts"); R(15, " - IPv6"); in labelip6()
125 L(16, "delivered to upper layer"); R(16, " - routing header"); in labelip6()
126 L(17, "bad scope packets"); R(17, " - fragmentation header"); in labelip6()
127 L(18, "address selection failed");R(18, " - ICMP6"); in labelip6()
128 R(19, " - none"); in labelip6()
142 divisor = (delay > 1000000) ? delay / 1000000 : 1; in domode()
154 #define DO(stat) ret->stat = (curstat.stat - sub->stat) / divisor in domode()
194 #define DO(stat, row, col) \ in showip6() argument
195 mvwprintw(wnd, row, col, "%9"PRIu64, stats.stat) in showip6()
252 error("ip6stat structure has grown--recompile systat!"); in initip6()