@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 */
| 2423 | * @param assoc pointer to sctp association |
| 2424 | */ |
| 2425 | static void |
| 2426 | sctp_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 |
no outgoing calls
no test coverage detected