Lines Matching defs:group
43 struct fst_group *group = NULL;
53 group = g;
58 if (!group) {
59 group = fst_group_create(cfg->group_id);
60 if (!group) {
61 fst_printf(MSG_ERROR, "%s: FST group cannot be created",
68 iface = fst_iface_create(group, ifname, own_addr, iface_obj, cfg);
70 fst_printf_group(group, MSG_ERROR, "cannot create iface for %s",
73 fst_group_delete(group);
77 fst_group_attach_iface(group, iface);
78 fst_group_update_ie(group);
83 "iface attached to group %s (prio=%d, llt=%d)",
92 struct fst_group *group = fst_iface_get_group(iface);
94 fst_printf_iface(iface, MSG_DEBUG, "iface detached from group %s",
95 fst_group_get_id(group));
98 fst_group_detach_iface(group, iface);
100 fst_group_update_ie(group);
101 fst_group_delete_if_empty(group);
117 struct fst_group *group;
124 while ((group = fst_first_group()) != NULL)
125 fst_group_delete(group);