Searched refs:llt (Results 1 - 14 of 14) sorted by relevance

/freebsd-13-stable/sys/net/
H A Dif_llatbl.c81 static void lltable_unlink(struct lltable *llt);
82 static void llentries_unlink(struct lltable *llt, struct llentries *head);
88 lltable_dump_af(struct lltable *llt, struct sysctl_req *wr) argument
95 if (llt->llt_ifp->if_flags & IFF_LOOPBACK)
100 error = lltable_foreach_lle(llt,
101 (llt_foreach_cb_t *)llt->llt_dump_entry, wr);
113 struct lltable *llt; local
117 SLIST_FOREACH(llt, &V_lltables, llt_link) {
118 if (llt->llt_af == af) {
119 error = lltable_dump_af(llt, w
139 htable_foreach_lle(struct lltable *llt, llt_foreach_cb_t *f, void *farg) argument
166 htable_link_entry(struct lltable *llt, struct llentry *lle) argument
195 struct lltable *llt; local
224 htable_prefix_free_cb(struct lltable *llt, struct llentry *lle, void *farg) argument
239 htable_prefix_free(struct lltable *llt, const struct sockaddr *addr, const struct sockaddr *mask, u_int flags) argument
263 htable_free_tbl(struct lltable *llt) argument
271 llentries_unlink(struct lltable *llt, struct llentries *head) argument
394 llentry_update_ifaddr(struct lltable *llt, struct llentry *lle, void *farg) argument
428 lltable_update_ifaddr(struct lltable *llt) argument
474 lltable_free_cb(struct lltable *llt, struct llentry *lle, void *farg) argument
490 lltable_free(struct lltable *llt) argument
522 lltable_delete_addr(struct lltable *llt, u_int flags, const struct sockaddr *l3addr) argument
554 struct lltable *llt; local
569 struct lltable *llt; local
594 lltable_link(struct lltable *llt) argument
603 lltable_unlink(struct lltable *llt) argument
617 lltable_foreach_lle(struct lltable *llt, llt_foreach_cb_t *f, void *farg) argument
624 lltable_alloc_entry(struct lltable *llt, u_int flags, const struct sockaddr *l3addr) argument
632 lltable_free_entry(struct lltable *llt, struct llentry *lle) argument
639 lltable_link_entry(struct lltable *llt, struct llentry *lle) argument
646 lltable_unlink_entry(struct lltable *llt, struct llentry *lle) argument
655 struct lltable *llt; local
662 lltable_get_ifp(const struct lltable *llt) argument
669 lltable_get_af(const struct lltable *llt) argument
685 struct lltable *llt; local
868 llatbl_llt_show(struct lltable *llt) argument
899 struct lltable *llt; local
[all...]
H A Dif_llatbl.h213 void lltable_link(struct lltable *llt);
229 void lltable_update_ifaddr(struct lltable *llt);
230 struct llentry *lltable_alloc_entry(struct lltable *llt, u_int flags,
232 void lltable_free_entry(struct lltable *llt, struct llentry *lle);
233 int lltable_delete_addr(struct lltable *llt, u_int flags,
235 int lltable_link_entry(struct lltable *llt, struct llentry *lle);
236 int lltable_unlink_entry(struct lltable *llt, struct llentry *lle);
238 struct ifnet *lltable_get_ifp(const struct lltable *llt);
239 int lltable_get_af(const struct lltable *llt);
241 int lltable_foreach_lle(struct lltable *llt, llt_foreach_cb_
247 lla_lookup(struct lltable *llt, u_int flags, const struct sockaddr *l3addr) argument
[all...]
/freebsd-13-stable/contrib/wpa/src/fst/
H A Dfst_iface.c35 if (!i->cfg.llt) {
36 fst_printf_iface(i, MSG_WARNING, "Zero llt adjusted");
37 i->cfg.llt = FST_DEFAULT_LLT_CFG_VALUE;
H A Dfst_defs.h50 le32 llt; member in struct:fst_setup_req
H A Dfst.h221 u32 llt; member in struct:fst_iface_cfg
H A Dfst_session.h28 void fst_session_set_llt(struct fst_session *s, u32 llt);
H A Dfst_iface.h61 return i->cfg.llt;
H A Dfst_session.c488 fst_session_set_llt(s, FST_LLT_VAL_TO_MS(le_to_host32(req->llt)));
592 "%s: FST Setup established for %s (llt=%u)",
798 void fst_session_set_llt(struct fst_session *s, u32 llt) argument
800 s->data.llt_ms = llt;
888 "initiating FST setup for %s (llt=%u ms)",
893 req.llt = host_to_le32(FST_LLT_MS_TO_VAL(s->data.llt_ms));
992 "%s: FST Setup Request accepted for %s (llt=%u)",
1272 long int llt = strtol(llt_str, &endp, 0); local
1274 if (*endp || llt < 0 || (unsigned long int) llt > FST_MAX_LLT_M
[all...]
H A Dfst.c83 "iface attached to group %s (prio=%d, llt=%d)",
84 cfg->group_id, cfg->priority, cfg->llt);
H A Dfst_ctrl_iface.c898 cfg->llt = FST_DEFAULT_LLT_CFG_VALUE;
907 cfg->llt = val;
/freebsd-13-stable/sys/netinet/
H A Din.c1353 in_lltable_free_entry(struct lltable *llt, struct llentry *lle) argument
1358 KASSERT(llt != NULL, ("lltable is NULL"));
1362 IF_AFDATA_WLOCK_ASSERT(llt->llt_ifp);
1363 lltable_unlink_entry(llt, lle);
1485 in_lltable_find_dst(struct lltable *llt, struct in_addr dst) argument
1491 hashidx = in_lltable_hash_dst(dst, llt->llt_hsize);
1492 lleh = &llt->lle_head[hashidx];
1504 in_lltable_delete_entry(struct lltable *llt, struct llentry *lle) argument
1516 in_lltable_alloc(struct lltable *llt, u_int flags, const struct sockaddr *l3addr) argument
1519 struct ifnet *ifp = llt
1566 in_lltable_lookup(struct lltable *llt, u_int flags, const struct sockaddr *l3addr) argument
1604 in_lltable_dump_entry(struct lltable *llt, struct llentry *lle, struct sysctl_req *wr) argument
1670 struct lltable *llt; local
[all...]
/freebsd-13-stable/sys/netinet6/
H A Din6.c2163 in6_lltable_free_entry(struct lltable *llt, struct llentry *lle) argument
2168 KASSERT(llt != NULL, ("lltable is NULL"));
2172 ifp = llt->llt_ifp;
2174 lltable_unlink_entry(llt, lle);
2263 in6_lltable_find_dst(struct lltable *llt, const struct in6_addr *dst) argument
2269 hashidx = in6_lltable_hash_dst(dst, llt->llt_hsize);
2270 lleh = &llt->lle_head[hashidx];
2282 in6_lltable_delete_entry(struct lltable *llt, struct llentry *lle) argument
2294 in6_lltable_alloc(struct lltable *llt, u_int flags, argument
2298 struct ifnet *ifp = llt
2341 in6_lltable_lookup(struct lltable *llt, u_int flags, const struct sockaddr *l3addr) argument
2380 in6_lltable_dump_entry(struct lltable *llt, struct llentry *lle, struct sysctl_req *wr) argument
2458 struct lltable *llt; local
[all...]
/freebsd-13-stable/contrib/wpa/hostapd/
H A Dconfig_file.c4248 conf->fst_cfg.llt = (u32) val;
/freebsd-13-stable/contrib/wpa/wpa_supplicant/
H A Dwpa_supplicant.c5848 cfg.llt = wpa_s->conf->fst_llt;

Completed in 209 milliseconds