Searched refs:allowedips (Results 1 – 6 of 6) sorted by relevance
/openbmc/linux/drivers/net/wireguard/ |
H A D | allowedips.h | 29 struct allowedips { struct 35 void wg_allowedips_init(struct allowedips *table); argument 36 void wg_allowedips_free(struct allowedips *table, struct mutex *mutex); 37 int wg_allowedips_insert_v4(struct allowedips *table, const struct in_addr *ip, 39 int wg_allowedips_insert_v6(struct allowedips *table, const struct in6_addr *ip, 41 void wg_allowedips_remove_by_peer(struct allowedips *table, 47 struct wg_peer *wg_allowedips_lookup_dst(struct allowedips *table, 49 struct wg_peer *wg_allowedips_lookup_src(struct allowedips *table,
|
H A D | allowedips.c | 252 void wg_allowedips_init(struct allowedips *table) in wg_allowedips_init() 258 void wg_allowedips_free(struct allowedips *table, struct mutex *lock) in wg_allowedips_free() 281 int wg_allowedips_insert_v4(struct allowedips *table, const struct in_addr *ip, in wg_allowedips_insert_v4() 292 int wg_allowedips_insert_v6(struct allowedips *table, const struct in6_addr *ip, in wg_allowedips_insert_v6() 303 void wg_allowedips_remove_by_peer(struct allowedips *table, in wg_allowedips_remove_by_peer() 356 struct wg_peer *wg_allowedips_lookup_dst(struct allowedips *table, in wg_allowedips_lookup_dst() 367 struct wg_peer *wg_allowedips_lookup_src(struct allowedips *table, in wg_allowedips_lookup_src()
|
H A D | Makefile | 13 wireguard-y += allowedips.o
|
H A D | device.h | 50 struct allowedips peer_allowedips;
|
/openbmc/linux/tools/testing/selftests/wireguard/ |
H A D | netns.sh | 589 allowedips=( ) 591 allowedips+=( abcd::$i ) 595 allowedips="${allowedips[*]}" 599 n0 wg set wg0 peer "$pub2" allowed-ips "$allowedips" 601 read -r pub allowedips 602 [[ $pub == "$pub1" && $allowedips == "(none)" ]] 603 read -r pub allowedips 606 for _ in $allowedips; do
|
/openbmc/linux/drivers/net/wireguard/selftest/ |
H A D | allowedips.c | 261 struct allowedips t; in randomized_test() 498 struct allowedips t; in wg_allowedips_selftest()
|