MCPcopy Create free account
hub / github.com/F-Stack/f-stack / sctp_log_sack

Function sctp_log_sack

freebsd/netinet/sctputil.c:183–202  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

181}
182
183void
184sctp_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
204void
205sctp_log_map(uint32_t map, uint32_t cum, uint32_t high, int from)

Callers 4

sctp_check_for_revokedFunction · 0.85
sctp_express_handle_sackFunction · 0.85
sctp_handle_sackFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected