| 8217 | } |
| 8218 | |
| 8219 | void |
| 8220 | spdcache_entry_free(struct spdcache_entry *entry) |
| 8221 | { |
| 8222 | |
| 8223 | if (entry->sp != NULL) |
| 8224 | key_freesp(&entry->sp); |
| 8225 | free(entry, M_IPSEC_SPDCACHE); |
| 8226 | } |
| 8227 | |
| 8228 | void |
| 8229 | spdcache_clear(void) |
no test coverage detected