Lines Matching defs:ixas
579 ip_xmit_attr_t ixas;
601 bzero(&ixas, sizeof (ixas));
606 ixas.ixa_flags = IXAF_NO_IPSEC | IXAF_DONTFRAG | IXAF_NO_PFHOOK;
607 ixas.ixa_cred = kcred;
608 ixas.ixa_cpid = NOPID;
609 ixas.ixa_tsl = NULL;
610 ixas.ixa_ipst = ipst;
611 ixas.ixa_ifindex = ifindex;
616 ixas.ixa_flags |= IXAF_IS_IPV4;
619 ixas.ixa_flags |= IXAF_NEXTHOP_SET;
620 ixas.ixa_nexthop_v4 = nexthop;
622 ixas.ixa_multicast_ttl = ipha->ipha_ttl;
629 ixas.ixa_flags |= IXAF_NEXTHOP_SET;
630 ixas.ixa_nexthop_v6 = *nexthop6;
632 ixas.ixa_multicast_ttl = ip6h->ip6_hops;
634 error = ip_output_simple(mp, &ixas);
635 ixa_cleanup(&ixas);