• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/zebra/ripd/

Lines Matching defs:to

17  * along with GNU Zebra; see the file COPYING.  If not, write to the Free
61 /* Vector to store passive-interface name. */
65 /* Join to the RIP version 2 multicast group. */
133 interface. So all interface is set to split horizon. */
165 zlog_warn ("Can't setsockopt IP_MULTICAST_IF to fd %d", sock);
203 /* Send RIP request packet to specified interface. */
207 struct sockaddr_in to;
226 zlog_info ("broadcast request to %s", ifp->name);
238 memset (&to, 0, sizeof (struct sockaddr_in));
239 to.sin_port = htons (RIP_PORT_DEFAULT);
240 to.sin_addr = p->prefix;
244 zlog_info ("SEND request to %s", inet_ntoa (to.sin_addr));
247 rip_request_send (&to, ifp, version);
259 /* In default ripd doesn't send RIP_REQUEST to the loopback interface. */
294 /* Send RIP request to the neighbor. */
298 struct sockaddr_in to;
300 memset (&to, 0, sizeof (struct sockaddr_in));
301 to.sin_port = htons (RIP_PORT_DEFAULT);
302 to.sin_addr = addr;
304 rip_request_send (&to, NULL, rip->version);
318 zlog_info ("request to the all neighbor");
320 /* Send request to all neighbor. */
419 /* Does this address belongs to me ? */
565 /* Apply distribute list to the all interface. */
587 /* Apply distribute list to the all interface. */
684 /* brcm - bug fix, split_horizon is default to 1 to begin with, after reset, it should
935 /* Add interface to rip_enable_if. */
968 /* Join to multicast group and send request to the interface. */
981 /* Join to multicast group. */
993 /* Send RIP request to the interface. */
1108 /* Apply network configuration to all interface. */
1143 /* Add new RIP neighbor to the neighbor tree. */