| 256 | } |
| 257 | |
| 258 | void |
| 259 | sctp_update_ifn_mtu(uint32_t ifn_index, uint32_t mtu) |
| 260 | { |
| 261 | struct sctp_ifn *sctp_ifnp; |
| 262 | |
| 263 | sctp_ifnp = sctp_find_ifn((void *)NULL, ifn_index); |
| 264 | if (sctp_ifnp != NULL) { |
| 265 | sctp_ifnp->ifn_mtu = mtu; |
| 266 | } |
| 267 | } |
| 268 | |
| 269 | void |
| 270 | sctp_free_ifa(struct sctp_ifa *sctp_ifap) |
nothing calls this directly
no test coverage detected