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

Function sctp_log_fr

freebsd/netinet/sctputil.c:224–242  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

222}
223
224void
225sctp_log_fr(uint32_t biggest_tsn, uint32_t biggest_new_tsn, uint32_t tsn, int from)
226{
227#if defined(SCTP_LOCAL_TRACE_BUF)
228 struct sctp_cwnd_log sctp_clog;
229
230 memset(&sctp_clog, 0, sizeof(sctp_clog));
231 sctp_clog.x.fr.largest_tsn = biggest_tsn;
232 sctp_clog.x.fr.largest_new_tsn = biggest_new_tsn;
233 sctp_clog.x.fr.tsn = tsn;
234 SCTP_CTR6(KTR_SCTP, "SCTP:%d[%d]:%x-%x-%x-%x",
235 SCTP_LOG_EVENT_FR,
236 from,
237 sctp_clog.x.misc.log1,
238 sctp_clog.x.misc.log2,
239 sctp_clog.x.misc.log3,
240 sctp_clog.x.misc.log4);
241#endif
242}
243
244#ifdef SCTP_MBUF_LOGGING
245void

Callers 5

sctp_handle_segmentsFunction · 0.85
sctp_handle_sackFunction · 0.85
sctp_timer.cFile · 0.85
sctp_t3rxt_timerFunction · 0.85

Calls 1

memsetFunction · 0.85

Tested by

no test coverage detected