| 181 | } |
| 182 | |
| 183 | void |
| 184 | sctp_log_sack(uint32_t old_cumack, uint32_t cumack, uint32_t tsn, uint16_t gaps, uint16_t dups, int from) |
| 185 | { |
| 186 | #if defined(SCTP_LOCAL_TRACE_BUF) |
| 187 | struct sctp_cwnd_log sctp_clog; |
| 188 | |
| 189 | sctp_clog.x.sack.cumack = cumack; |
| 190 | sctp_clog.x.sack.oldcumack = old_cumack; |
| 191 | sctp_clog.x.sack.tsn = tsn; |
| 192 | sctp_clog.x.sack.numGaps = gaps; |
| 193 | sctp_clog.x.sack.numDups = dups; |
| 194 | SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x", |
| 195 | SCTP_LOG_EVENT_SACK, |
| 196 | from, |
| 197 | sctp_clog.x.misc.log1, |
| 198 | sctp_clog.x.misc.log2, |
| 199 | sctp_clog.x.misc.log3, |
| 200 | sctp_clog.x.misc.log4); |
| 201 | #endif |
| 202 | } |
| 203 | |
| 204 | void |
| 205 | sctp_log_map(uint32_t map, uint32_t cum, uint32_t high, int from) |
no outgoing calls
no test coverage detected