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

Function sctp_log_map

freebsd/netinet/sctputil.c:204–222  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

202}
203
204void
205sctp_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
224void
225sctp_log_fr(uint32_t biggest_tsn, uint32_t biggest_new_tsn, uint32_t tsn, int from)

Callers 6

sctp_process_initFunction · 0.85
sctp_handle_forward_tsnFunction · 0.85

Calls 1

memsetFunction · 0.85

Tested by

no test coverage detected