HomeSort by: relevance | last modified time | path
    Searched defs:im6o (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/netinet6/
mld6.c 552 struct ip6_moptions im6o; local in function:mld_sendpkt
600 memset(&im6o, 0, sizeof(im6o));
601 im6o.im6o_multicast_if_index = if_get_index(ifp);
602 im6o.im6o_multicast_hlim = 1;
608 im6o.im6o_multicast_loop = (ip6_mrouter != NULL);
629 &im6o, NULL, NULL);
671 /* ip6_hlim will be set by im6o.im6o_multicast_hlim */
in6_pcb.c 751 struct ip6_moptions *im6o; local in function:in6pcb_purgeif0
766 im6o = in6p_moptions(inp);
767 if (im6o) {
772 if (im6o->im6o_multicast_if_index == ifp->if_index)
773 im6o->im6o_multicast_if_index = 0;
781 LIST_FOREACH_SAFE(imm, &im6o->im6o_memberships,
nd6_nbr.c 412 struct ip6_moptions im6o; local in function:nd6_ns_output
444 im6o.im6o_multicast_if_index = if_get_index(ifp);
445 im6o.im6o_multicast_hlim = 255;
446 im6o.im6o_multicast_loop = 0;
583 &im6o, NULL, NULL);
906 struct ip6_moptions im6o; local in function:nd6_na_output
943 im6o.im6o_multicast_if_index = if_get_index(ifp);
944 im6o.im6o_multicast_hlim = 255;
945 im6o.im6o_multicast_loop = 0;
1039 ip6_output(m, NULL, NULL, 0, &im6o, NULL, NULL)
    [all...]
ip6_output.c 204 struct ip6_moptions *im6o,
485 if (im6o != NULL)
486 ip6->ip6_hlim = im6o->im6o_multicast_hlim;
524 } else if (im6o != NULL) {
525 ifp = if_get_byindex(im6o->im6o_multicast_if_index,
646 if (ingroup && (im6o == NULL || im6o->im6o_multicast_loop)) {
2440 struct ip6_moptions *im6o = in6p_moptions(inp); local in function:ip6_setmoptions
2445 if (im6o == NULL) {
2450 im6o = malloc(sizeof(*im6o), M_IPMOPTS, M_NOWAIT)
2700 struct ip6_moptions *im6o = in6p_moptions(inp); local in function:ip6_getmoptions
    [all...]
ip6_mroute.c 1560 struct ip6_moptions im6o; local in function:phyint_send
1562 im6o.im6o_multicast_if_index = if_get_index(ifp);
1564 im6o.im6o_multicast_hlim = ip6->ip6_hlim;
1565 im6o.im6o_multicast_loop = 1;
1567 &im6o, NULL, NULL);
  /src/sys/netinet/
ip_carp.c 1605 struct ip6_moptions *im6o = &sc->sc_im6o; local in function:carp_multicast_cleanup
1620 while (!LIST_EMPTY(&im6o->im6o_memberships)) {
1622 LIST_FIRST(&im6o->im6o_memberships);
1627 im6o->im6o_multicast_if_index = 0;
1978 struct ip6_moptions *im6o = &sc->sc_im6o; local in function:carp_join_multicast6
2011 im6o->im6o_multicast_if_index = sc->sc_carpdev->if_index;
2013 LIST_INSERT_HEAD(&im6o->im6o_memberships, imm,
2016 LIST_INSERT_HEAD(&im6o->im6o_memberships, imm2,

Completed in 19 milliseconds