Lines Matching +full:row +full:- +full:delay
1 /*-
47 /*-
48 --0 1 2 3 4 5 6 7
49 --0123456789012345678901234567890123456789012345678901234567890123456789012345
53 03999999999999 associations restarted 999999999999 - out of the blue
54 04999999999999 associations terminated 999999999999 - bad vtag
55 05999999999999 associations aborted 999999999999 - bad crc32c
60 10999999999999 data timeouts 999999999999 - ordered
61 11999999999999 delayed sack timeouts 999999999999 - unordered
63 13999999999999 shutdown-ack timeouts 999999999999 data chunks received
64 14999999999999 shutdown guard timeouts 999999999999 - ordered
65 15999999999999 heartbeat timeouts 999999999999 - unordered
70 --0123456789012345678901234567890123456789012345678901234567890123456789012345
71 --0 1 2 3 4 5 6 7
77 return (subwin(stdscr, LINES-3-1, 0, MAINWIN_ROW, 0)); in opensctp()
94 #define L(row, str) mvwprintw(wnd, row, 13, str) in labelsctp() argument
95 #define R(row, str) mvwprintw(wnd, row, 51, str); in labelsctp() argument
99 L(3, "associations restarted"); R(3, "- out of the blue"); in labelsctp()
100 L(4, "associations terminated"); R(4, "- bad vtag"); in labelsctp()
101 L(5, "associations aborted"); R(5, "- bad crc32c"); in labelsctp()
106 L(10, "data timeouts"); R(10, "- ordered"); in labelsctp()
107 L(11, "delayed sack timeouts"); R(11, "- unordered"); in labelsctp()
109 L(13, "shutdown-ack timeouts"); R(13, "data chunks received"); in labelsctp()
110 L(14, "shutdown guard timeouts"); R(14, "- ordered"); in labelsctp()
111 L(15, "heartbeat timeouts"); R(15, "- unordered"); in labelsctp()
129 divisor = (delay > 1000000) ? delay / 1000000 : 1; in domode()
141 #define DO(stat) ret->stat = (curstat.stat - sub->stat) / divisor in domode()
278 #define DO(stat, row, col) \ in showsctp() argument
279 mvwprintw(wnd, row, col, "%12u", stats.stat) in showsctp()
280 #define L(row, stat) DO(stat, row, 0) in showsctp() argument
281 #define R(row, stat) DO(stat, row, 38) in showsctp() argument
318 error("sctpstat structure has grown--recompile systat!"); in initsctp()