Lines Matching +full:static +full:- +full:address
8 * SPDX-License-Identifier: Apache-2.0
21 /** Destination address */
25 /** MTU for this destination address */
31 /** Get PMTU entry for the given destination address
33 * @param dst Destination address
40 static inline struct net_pmtu_entry *net_pmtu_get_entry(const struct sockaddr *dst) in net_pmtu_get_entry()
48 /** Get MTU value for the given destination address
50 * @param dst Destination address
57 static inline int net_pmtu_get_mtu(const struct sockaddr *dst) in net_pmtu_get_mtu()
61 return -ENOTSUP; in net_pmtu_get_mtu()
65 /** Update PMTU value for the given destination address
67 * @param dst Destination address
75 static inline int net_pmtu_update_mtu(const struct sockaddr *dst, uint16_t mtu) in net_pmtu_update_mtu()
80 return -ENOTSUP; in net_pmtu_update_mtu()
84 /** Update PMTU entry for the given destination address
94 static inline int net_pmtu_update_entry(struct net_pmtu_entry *entry, in net_pmtu_update_entry()
100 return -ENOTSUP; in net_pmtu_update_entry()
124 static inline int net_pmtu_foreach(net_pmtu_cb_t cb, void *user_data) in net_pmtu_foreach()
129 return -ENOTSUP; in net_pmtu_foreach()