@ingroup Logging * @brief Output Local table to log * * @param la Pointer to the relevant libalias instance */
| 2655 | * @param la Pointer to the relevant libalias instance |
| 2656 | */ |
| 2657 | static void logSctpLocal(struct libalias *la) |
| 2658 | { |
| 2659 | u_int i; |
| 2660 | struct sctp_nat_assoc *assoc = NULL; |
| 2661 | |
| 2662 | SctpAliasLog("L->\n"); |
| 2663 | for (i=0; i < la->sctpNatTableSize; i++) { |
| 2664 | LIST_FOREACH(assoc, &la->sctpTableLocal[i], list_L) { |
| 2665 | logsctpassoc(assoc, " "); |
| 2666 | } |
| 2667 | } |
| 2668 | } |
| 2669 | |
| 2670 | /** @ingroup Logging |
| 2671 | * @brief Output timer queue to log |
no test coverage detected