Lines Matching refs:ill
43 * Set ip{,6}_forwarding values. If the value is being set on an ill,
44 * find the ill and set the value on it. On the other hand if we are modifying
56 ill_t *ill;
71 * if it's not per ill then set the global property and bring all the
80 ill = ILL_START_WALK_V6(&ctx, ipst);
82 ill = ILL_START_WALK_V4(&ctx, ipst);
84 for (; ill != NULL; ill = ill_next(&ctx, ill)) {
89 if (per_ill && strcmp(ifname, ill->ill_name) != 0)
91 (void) ill_forward_set(ill, new_value != 0);
104 ill_t *ill;
131 ill = ILL_START_WALK_V6(&ctx, ipst);
133 ill = ILL_START_WALK_V4(&ctx, ipst);
134 for (; ill != NULL; ill = ill_next(&ctx, ill)) {
139 if (strcmp(ifname, ill->ill_name) == 0)
142 if (ill == NULL) {
146 value = ((ill->ill_flags & ILLF_ROUTER) ? B_TRUE : B_FALSE);
274 ill_t *ill;
289 ill = ILL_START_WALK_V6(&ctx, ipst);
291 ill = ILL_START_WALK_V4(&ctx, ipst);
292 for (; ill != NULL; ill = ill_next(&ctx, ill)) {
293 if (strcmp(ifname, ill->ill_name) == 0)
296 if (ill == NULL) {
300 max_mtu = ill->ill_max_frag;
301 def_mtu = ill->ill_current_frag;