interface.h
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:6k
源码类别:

网络

开发平台:

Unix_Linux

  1. /* Interface function header.
  2.  * Copyright (C) 1999 Kunihiro Ishiguro
  3.  *
  4.  * This file is part of GNU Zebra.
  5.  *
  6.  * GNU Zebra is free software; you can redistribute it and/or modify it
  7.  * under the terms of the GNU General Public License as published by the
  8.  * Free Software Foundation; either version 2, or (at your option) any
  9.  * later version.
  10.  *
  11.  * GNU Zebra is distributed in the hope that it will be useful, but
  12.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with GNU Zebra; see the file COPYING.  If not, write to the Free
  18.  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  19.  * 02111-1307, USA.  
  20.  */
  21. /* For interface multicast configuration. */
  22. #define IF_ZEBRA_MULTICAST_UNSPEC 0
  23. #define IF_ZEBRA_MULTICAST_ON     1
  24. #define IF_ZEBRA_MULTICAST_OFF    2
  25. /* For interface shutdown configuration. */
  26. #define IF_ZEBRA_SHUTDOWN_UNSPEC 0
  27. #define IF_ZEBRA_SHUTDOWN_ON     1
  28. #define IF_ZEBRA_SHUTDOWN_OFF    2
  29. /* Router advertisement feature. */
  30. #if (defined(LINUX_IPV6) && (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1)) || defined(KAME)
  31. #define RTADV
  32. #endif
  33. #ifdef RTADV
  34. /* Router advertisement parameter.  From RFC2461. */
  35. struct rtadvconf
  36. {
  37.   /* A flag indicating whether or not the router sends periodic Router
  38.      Advertisements and responds to Router Solicitations.
  39.      Default: FALSE */
  40.   int AdvSendAdvertisements;
  41.   /* The maximum time allowed between sending unsolicited multicast
  42.      Router Advertisements from the interface, in seconds.  MUST be no
  43.      less than 4 seconds and no greater than 1800 seconds. 
  44.      Default: 600 seconds */
  45.   int MaxRtrAdvInterval;
  46. #define RTADV_MAX_RTR_ADV_INTERVAL 600
  47.   /* The minimum time allowed between sending unsolicited multicast
  48.      Router Advertisements from the interface, in seconds.  MUST be no
  49.      less than 3 seconds and no greater than .75 * MaxRtrAdvInterval.
  50.      Default: 0.33 * MaxRtrAdvInterval */
  51.   int MinRtrAdvInterval;
  52. #define RTADV_MIN_RTR_ADV_INTERVAL (0.33 * RTADV_MAX_RTR_ADV_INTERVAL)
  53.   /* Unsolicited Router Advertisements' interval timer. */
  54.   int AdvIntervalTimer;
  55.   /* The TRUE/FALSE value to be placed in the "Managed address
  56.      configuration" flag field in the Router Advertisement.  See
  57.      [ADDRCONF].
  58.  
  59.      Default: FALSE */
  60.   int AdvManagedFlag;
  61.   /* The TRUE/FALSE value to be placed in the "Other stateful
  62.      configuration" flag field in the Router Advertisement.  See
  63.      [ADDRCONF].
  64.      Default: FALSE */
  65.   int AdvOtherConfigFlag;
  66.   /* The value to be placed in MTU options sent by the router.  A
  67.      value of zero indicates that no MTU options are sent.
  68.      Default: 0 */
  69.   int AdvLinkMTU;
  70.   /* The value to be placed in the Reachable Time field in the Router
  71.      Advertisement messages sent by the router.  The value zero means
  72.      unspecified (by this router).  MUST be no greater than 3,600,000
  73.      milliseconds (1 hour).
  74.      Default: 0 */
  75.   u_int32_t AdvReachableTime;
  76. #define RTADV_MAX_REACHABLE_TIME 3600000
  77.   /* The value to be placed in the Retrans Timer field in the Router
  78.      Advertisement messages sent by the router.  The value zero means
  79.      unspecified (by this router).
  80.      Default: 0 */
  81.   int AdvRetransTimer;
  82.   /* The default value to be placed in the Cur Hop Limit field in the
  83.      Router Advertisement messages sent by the router.  The value
  84.      should be set to that current diameter of the Internet.  The
  85.      value zero means unspecified (by this router).
  86.      Default: The value specified in the "Assigned Numbers" RFC
  87.      [ASSIGNED] that was in effect at the time of implementation. */
  88.   int AdvCurHopLimit;
  89.   /* The value to be placed in the Router Lifetime field of Router
  90.      Advertisements sent from the interface, in seconds.  MUST be
  91.      either zero or between MaxRtrAdvInterval and 9000 seconds.  A
  92.      value of zero indicates that the router is not to be used as a
  93.      default router.
  94.      Default: 3 * MaxRtrAdvInterval */
  95.   int AdvDefaultLifetime;
  96. #define RTADV_ADV_DEFAULT_LIFETIME (3 * RTADV_MAX_RTR_ADV_INTERVAL)
  97.   /* A list of prefixes to be placed in Prefix Information options in
  98.      Router Advertisement messages sent from the interface.
  99.      Default: all prefixes that the router advertises via routing
  100.      protocols as being on-link for the interface from which the
  101.      advertisement is sent. The link-local prefix SHOULD NOT be
  102.      included in the list of advertised prefixes. */
  103.   list AdvPrefixList;
  104. };
  105. #endif /* RTADV */
  106. /* `zebra' daemon local interface structure. */
  107. struct zebra_if
  108. {
  109.   /* Shutdown configuration. */
  110.   u_char shutdown;
  111.   /* Multicast configuration. */
  112.   u_char multicast;
  113.   /* Router advertise configuration. */
  114.   u_char rtadv_enable;
  115.   /* Interface's address. */
  116.   list address;
  117. #ifdef RTADV
  118.   struct rtadvconf rtadv;
  119. #endif /* RTADV */
  120. #ifdef HAVE_IRDP
  121. #include "irdp.h"
  122.   struct irdp_interface irdp;
  123. #endif
  124. };
  125. void if_delete_update (struct interface *ifp);
  126. void if_add_update (struct interface *ifp);
  127. void if_up (struct interface *);
  128. void if_down (struct interface *);
  129. void if_refresh (struct interface *);
  130. void zebra_interface_up_update (struct interface *ifp);
  131. void zebra_interface_down_update (struct interface *ifp);
  132. #ifdef HAVE_PROC_NET_DEV
  133. int ifstat_update_proc ();
  134. #endif /* HAVE_PROC_NET_DEV */
  135. #ifdef HAVE_NET_RT_IFLIST
  136. void ifstat_update_sysctl ();
  137. #endif /* HAVE_NET_RT_IFLIST */
  138. #ifdef HAVE_PROC_NET_DEV
  139. int interface_list_proc ();
  140. #endif /* HAVE_PROC_NET_DEV */
  141. #ifdef HAVE_PROC_NET_IF_INET6
  142. int ifaddr_proc_ipv6 ();
  143. #endif /* HAVE_PROC_NET_IF_INET6 */
  144. #ifdef BSDI
  145. int if_kvm_get_mtu (struct interface *);
  146. #endif /* BSDI */