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

Function sctp_RmTimeOut

freebsd/netinet/libalias/alias_sctp.c:2425–2430  ·  view source on GitHub ↗

@ingroup Timer * @brief Remove an association from timer queue * * This is an O(1) operation to remove the association pointer from its * current position in the timer queue * * @param la Pointer to the relevant libalias instance * @param assoc pointer to sctp association */

Source from the content-addressed store, hash-verified

2423 * @param assoc pointer to sctp association
2424 */
2425static void
2426sctp_RmTimeOut(struct libalias *la, struct sctp_nat_assoc *assoc)
2427{
2428 LIBALIAS_LOCK_ASSERT(la);
2429 LIST_REMOVE(assoc, timer_Q);/* Note this is O(1) */
2430}
2431
2432/** @ingroup Timer
2433 * @brief Reset timer in timer queue

Callers 4

SctpAliasFunction · 0.85
AddSctpAssocLocalFunction · 0.85
AddSctpAssocGlobalFunction · 0.85
sctp_ResetTimeOutFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected