| 202 | } |
| 203 | |
| 204 | void |
| 205 | sctp_log_map(uint32_t map, uint32_t cum, uint32_t high, int from) |
| 206 | { |
| 207 | #if defined(SCTP_LOCAL_TRACE_BUF) |
| 208 | struct sctp_cwnd_log sctp_clog; |
| 209 | |
| 210 | memset(&sctp_clog, 0, sizeof(sctp_clog)); |
| 211 | sctp_clog.x.map.base = map; |
| 212 | sctp_clog.x.map.cum = cum; |
| 213 | sctp_clog.x.map.high = high; |
| 214 | SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x", |
| 215 | SCTP_LOG_EVENT_MAP, |
| 216 | from, |
| 217 | sctp_clog.x.misc.log1, |
| 218 | sctp_clog.x.misc.log2, |
| 219 | sctp_clog.x.misc.log3, |
| 220 | sctp_clog.x.misc.log4); |
| 221 | #endif |
| 222 | } |
| 223 | |
| 224 | void |
| 225 | sctp_log_fr(uint32_t biggest_tsn, uint32_t biggest_new_tsn, uint32_t tsn, int from) |
no test coverage detected