]> git.proxmox.com Git - mirror_frr.git/blobdiff - zebra/zebra_static.h
Merge pull request #1009 from donaldsharp/show_cmds
[mirror_frr.git] / zebra / zebra_static.h
index 0f00609b5586920f53cf4b935cb15bc15bbd246e..6ab47094a1498d545c2a7a3319d881a9ae043a68 100644 (file)
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * General Public License for more details.
  *
- * You should have received a copy of the GNU General Public License
- * along with Quagga; see the file COPYING.  If not, write to the Free
- * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
- * 02111-1307, USA.
+ * You should have received a copy of the GNU General Public License along
+ * with this program; see the file COPYING; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  */
 #ifndef __ZEBRA_STATIC_H__
 #define __ZEBRA_STATIC_H__
 
+/* Static route label information */
+struct static_nh_label {
+       u_int8_t num_labels;
+       u_int8_t reserved[3];
+       mpls_label_t label[2];
+};
+
+typedef enum {
+       STATIC_IFNAME,
+       STATIC_IPV4_GATEWAY,
+       STATIC_IPV4_GATEWAY_IFNAME,
+       STATIC_BLACKHOLE,
+       STATIC_IPV6_GATEWAY,
+       STATIC_IPV6_GATEWAY_IFNAME,
+} zebra_static_types;
+
 /* Static route information. */
-struct static_route
-{
-  /* For linked list. */
-  struct static_route *prev;
-  struct static_route *next;
-
-  /* VRF identifier. */
-  vrf_id_t vrf_id;
-
-  /* Administrative distance. */
-  u_char distance;
-
-  /* Tag */
-  u_short tag;
-
-  /* Flag for this static route's type. */
-  u_char type;
-#define STATIC_IFINDEX               1
-#define STATIC_IPV4_GATEWAY          2
-#define STATIC_IPV4_BLACKHOLE        3
-#define STATIC_IPV6_GATEWAY          4
-#define STATIC_IPV6_GATEWAY_IFINDEX  5
-
-  /*
-   * Nexthop value.
-   *
-   * Under IPv4 addr and ifindex are
-   * used independentyly.
-   * STATIC_IPV4_GATEWAY uses addr
-   * STATIC_IFINDEX uses ifindex
-   */
-  union g_addr addr;
-  ifindex_t ifindex;
-
-  char ifname[INTERFACE_NAMSIZ + 1];
-
-  /* bit flags */
-  u_char flags;
-/*
- see ZEBRA_FLAG_REJECT
-     ZEBRA_FLAG_BLACKHOLE
- */
+struct static_route {
+       /* For linked list. */
+       struct static_route *prev;
+       struct static_route *next;
+
+       /* VRF identifier. */
+       vrf_id_t vrf_id;
+
+       /* Administrative distance. */
+       u_char distance;
+
+       /* Tag */
+       route_tag_t tag;
+
+       /* Flag for this static route's type. */
+       zebra_static_types type;
+
+       /*
+        * Nexthop value.
+        */
+       union g_addr addr;
+       ifindex_t ifindex;
+
+       char ifname[INTERFACE_NAMSIZ + 1];
+
+       /* bit flags */
+       u_char flags;
+       /*
+        see ZEBRA_FLAG_REJECT
+            ZEBRA_FLAG_BLACKHOLE
+        */
+
+       /* Label information */
+       struct static_nh_label snh_label;
 };
 
-extern void
-static_install_route (afi_t afi, safi_t safi, struct prefix *p, struct static_route *si);
-extern void
-static_uninstall_route (afi_t afi, safi_t safi, struct prefix *p, struct static_route *si);
+extern void static_install_route(afi_t afi, safi_t safi, struct prefix *p,
+                                struct prefix_ipv6 *src_p,
+                                struct static_route *si);
+extern void static_uninstall_route(afi_t afi, safi_t safi, struct prefix *p,
+                                  struct prefix_ipv6 *src_p,
+                                  struct static_route *si);
 
-extern int
-static_add_route (afi_t, safi_t safi, u_char type, struct prefix *p,
-                 union g_addr *gate, ifindex_t ifindex,
-                 const char *ifname, u_char flags, u_short tag,
-                 u_char distance, struct zebra_vrf *zvrf);
+extern int static_add_route(afi_t, safi_t safi, u_char type, struct prefix *p,
+                           struct prefix_ipv6 *src_p, union g_addr *gate,
+                           const char *ifname, u_char flags,
+                           route_tag_t tag, u_char distance,
+                           struct zebra_vrf *zvrf,
+                           struct static_nh_label *snh_label);
 
-extern int
-static_delete_route (afi_t, safi_t safi, u_char type, struct prefix *p,
-                    union g_addr *gate, ifindex_t ifindex,
-                    u_short tag, u_char distance,
-                    struct zebra_vrf *zvrf);
+extern int static_delete_route(afi_t, safi_t safi, u_char type,
+                              struct prefix *p, struct prefix_ipv6 *src_p,
+                              union g_addr *gate, const char *ifname,
+                              route_tag_t tag, u_char distance,
+                              struct zebra_vrf *zvrf,
+                              struct static_nh_label *snh_label);
 
+extern void static_ifindex_update(struct interface *ifp, bool up);
 
 #endif