• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/ospfd/

Lines Matching defs:hello

584   struct ospf_hello *hello;
593 hello = (struct ospf_hello *) STREAM_PNT (s);
605 p.prefixlen = ip_masklen (hello->network_mask);
620 if (OSPF_IF_PARAM (oi, v_hello) != ntohs (hello->hello_interval))
628 if (OSPF_IF_PARAM (oi, v_wait) != ntohl (hello->dead_interval))
638 ospf_options_dump (hello->options));
643 if (CHECK_FLAG (hello->options, OSPF_OPTION_T))
657 && CHECK_FLAG (hello->options, OSPF_OPTION_O))
668 UNSET_FLAG (hello->options, OSPF_OPTION_O); /* Ignore O-bit. */
679 && CHECK_FLAG (hello->options, OSPF_OPTION_NP)
681 && ! CHECK_FLAG (hello->options, OSPF_OPTION_E)))
683 zlog_warn ("NSSA-Packet-%s[Hello:RECV]: my options: %x, his options %x", inet_ntoa (ospfh->router_id), OPTIONS (oi), hello->options);
697 CHECK_FLAG (hello->options, OSPF_OPTION_E))
700 OPTIONS (oi), hello->options);
779 if (PRIORITY(oi) == 0 && hello->priority > 0
792 nbr->priority = hello->priority;
793 nbr->d_router = hello->d_router;
794 nbr->bd_router = hello->bd_router;
798 if (ospf_nbr_bidirectional (&ospf_top->router_id, hello->neighbors,
802 nbr->options |= hello->options;
808 nbr->priority = hello->priority;
809 nbr->d_router = hello->d_router;
810 nbr->bd_router = hello->bd_router;
816 if (IPV4_ADDR_SAME (&nbr->address.u.prefix4, &hello->d_router))
817 if (hello->bd_router.s_addr == 0 && oi->state == ISM_Waiting)
822 IPV4_ADDR_SAME (&nbr->address.u.prefix4, &hello->bd_router))
826 if ((IPV4_ADDR_SAME (&nbr->address.u.prefix4, &hello->d_router) &&
828 (IPV4_ADDR_CMP (&nbr->address.u.prefix4, &hello->d_router) &&
833 if ((IPV4_ADDR_SAME (&nbr->address.u.prefix4, &hello->bd_router) &&
835 (IPV4_ADDR_CMP (&nbr->address.u.prefix4, &hello->bd_router) &&
840 if (nbr->priority >= 0 && nbr->priority != hello->priority)
844 nbr->priority = hello->priority;
845 nbr->d_router = hello->d_router;
846 nbr->bd_router = hello->bd_router;
2823 zlog (NULL, LOG_INFO, "NSM[%s:%s]: Timer (hello-reply timer expire)",
2884 /* if oi->state == Waiting, send hello to all neighbors */