]> git.pld-linux.org Git - packages/quagga.git/commitdiff
- obsolete
authorlisu <lisu@pld-linux.org>
Tue, 4 Aug 2009 09:40:59 +0000 (09:40 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    quagga-largefile.patch -> 1.2
    quagga-ospf_lsdb.patch -> 1.2
    quagga-ospfclient.patch -> 1.2
    quagga-save_history.patch -> 1.2
    quagga-view_commands.patch -> 1.2

quagga-largefile.patch [deleted file]
quagga-ospf_lsdb.patch [deleted file]
quagga-ospfclient.patch [deleted file]
quagga-save_history.patch [deleted file]
quagga-view_commands.patch [deleted file]

diff --git a/quagga-largefile.patch b/quagga-largefile.patch
deleted file mode 100644 (file)
index 12b0142..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -urN quagga-0.98.6.org/configure.ac quagga-0.98.6/configure.ac
---- quagga-0.98.6.org/configure.ac     2006-05-08 17:07:19.000000000 +0200
-+++ quagga-0.98.6/configure.ac 2006-10-08 13:03:03.262775000 +0200
-@@ -21,6 +21,8 @@
- AM_INIT_AUTOMAKE(1.6)
- AM_CONFIG_HEADER(config.h)
-+AC_SYS_LARGEFILE
-+
- dnl default is to match previous behavior
- exampledir=${sysconfdir}
- AC_ARG_ENABLE([exampledir],
diff --git a/quagga-ospf_lsdb.patch b/quagga-ospf_lsdb.patch
deleted file mode 100644 (file)
index 64bb715..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
---- ospfd/ospf_lsdb.c~ 2004-12-22 17:16:02.000000000 +0100
-+++ ospfd/ospf_lsdb.c  2005-02-20 13:58:24.772373536 +0100
-@@ -25,6 +25,7 @@
- #include "prefix.h"
- #include "table.h"
- #include "memory.h"
-+#include "log.h"
- #include "ospfd/ospfd.h"
- #include "ospfd/ospf_asbr.h"
diff --git a/quagga-ospfclient.patch b/quagga-ospfclient.patch
deleted file mode 100644 (file)
index 591bfba..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
---- ospfclient/ospfclient.c~   2003-06-04 15:59:39.000000000 +0200
-+++ ospfclient/ospfclient.c    2005-02-20 14:06:17.673481640 +0100
-@@ -12,6 +12,7 @@
- #include <zebra.h>
- #include "prefix.h" /* needed by ospf_asbr.h */
- #include "privs.h"
-+#include "log.h"
- #include "ospfd/ospfd.h"
- #include "ospfd/ospf_asbr.h"
diff --git a/quagga-save_history.patch b/quagga-save_history.patch
deleted file mode 100644 (file)
index ced95bb..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-diff -urN quagga-0.99.11/vtysh/vtysh_main.c.orig quagga-0.99.11/vtysh/vtysh_main.c
---- quagga-0.99.11/vtysh/vtysh_main.c.orig     2008-08-14 16:43:42.000000000 +0200
-+++ quagga-0.99.11/vtysh/vtysh_main.c  2009-04-10 01:53:47.000000000 +0200
-@@ -42,6 +42,7 @@
- /* Configuration file name and directory. */
- char config_default[] = SYSCONFDIR VTYSH_DEFAULT_CONFIG;
-+char history_file[MAXPATHLEN];
- /* Flag for indicate executing child command. */
- int execute_flag = 0;
-@@ -184,8 +185,10 @@
-     {
-       using_history();
-       last = previous_history();
--      if (!last || strcmp (last->line, line_read) != 0)
-+      if (!last || strcmp (last->line, line_read) != 0) {
-       add_history (line_read);
-+      append_history(1,history_file);
-+      }
-     }
-      
-   return (line_read);
-@@ -348,10 +351,13 @@
-   sigsetjmp (jmpbuf, 1);
-   jmpflag = 1;
-+  snprintf(history_file, sizeof(history_file), "%s/.history_quagga", getenv("HOME"));
-+  read_history(history_file);
-   /* Main command loop. */
-   while (vtysh_rl_gets ())
-     vtysh_execute (line_read);
-+  history_truncate_file(history_file,1000);
-   printf ("\n");
-   /* Rest in peace. */
diff --git a/quagga-view_commands.patch b/quagga-view_commands.patch
deleted file mode 100644 (file)
index 590de14..0000000
+++ /dev/null
@@ -1,117 +0,0 @@
-diff -urN quagga-0.99.11.orig/bgpd/bgp_route.c quagga-0.99.11/bgpd/bgp_route.c
---- quagga-0.99.11.orig/bgpd/bgp_route.c       2008-10-02 10:28:50.000000000 +0200
-+++ quagga-0.99.11/bgpd/bgp_route.c    2009-04-08 01:19:30.000000000 +0200
-@@ -9658,12 +9682,14 @@
-   return CMD_SUCCESS;
- }
--DEFUN (show_ip_bgp_neighbor_advertised_route,
--       show_ip_bgp_neighbor_advertised_route_cmd,
--       "show ip bgp neighbors (A.B.C.D|X:X::X:X) advertised-routes",
-+DEFUN (show_ip_bgp_view_neighbor_advertised_route,
-+       show_ip_bgp_view_neighbor_advertised_route_cmd,
-+       "show ip bgp view WORD neighbors (A.B.C.D|X:X::X:X) advertised-routes",
-        SHOW_STR
-        IP_STR
-        BGP_STR
-+       "BGP view\n"
-+       "View name\n"
-        "Detailed information on TCP and BGP neighbor connections\n"
-        "Neighbor to display information about\n"
-        "Neighbor to display information about\n"
-@@ -9671,13 +9697,28 @@
- {
-   struct peer *peer;
--  peer = peer_lookup_in_view (vty, NULL, argv[0]);  
-+  if (argc == 2)
-+    peer = peer_lookup_in_view (vty, argv[0], argv[1]);
-+  else
-+    peer = peer_lookup_in_view (vty, NULL, argv[0]);
-+
-   if (! peer) 
-     return CMD_WARNING;
-  
-   return peer_adj_routes (vty, peer, AFI_IP, SAFI_UNICAST, 0);
- }
-+ALIAS (show_ip_bgp_view_neighbor_advertised_route,
-+       show_ip_bgp_neighbor_advertised_route_cmd,
-+       "show ip bgp neighbors (A.B.C.D|X:X::X:X) advertised-routes",
-+       SHOW_STR
-+       IP_STR
-+       BGP_STR
-+       "Detailed information on TCP and BGP neighbor connections\n"
-+       "Neighbor to display information about\n"
-+       "Neighbor to display information about\n"
-+       "Display the routes advertised to a BGP neighbor\n")
-+
- DEFUN (show_ip_bgp_ipv4_neighbor_advertised_route,
-        show_ip_bgp_ipv4_neighbor_advertised_route_cmd,
-        "show ip bgp ipv4 (unicast|multicast) neighbors (A.B.C.D|X:X::X:X) advertised-routes",
-@@ -9836,12 +9889,14 @@
- }
- #endif /* HAVE_IPV6 */
\f
--DEFUN (show_ip_bgp_neighbor_received_routes,
--       show_ip_bgp_neighbor_received_routes_cmd,
--       "show ip bgp neighbors (A.B.C.D|X:X::X:X) received-routes",
-+DEFUN (show_ip_bgp_view_neighbor_received_routes,
-+       show_ip_bgp_view_neighbor_received_routes_cmd,
-+       "show ip bgp view WORD neighbors (A.B.C.D|X:X::X:X) received-routes",
-        SHOW_STR
-        IP_STR
-        BGP_STR
-+       "BGP view\n"
-+       "View name\n"
-        "Detailed information on TCP and BGP neighbor connections\n"
-        "Neighbor to display information about\n"
-        "Neighbor to display information about\n"
-@@ -9849,13 +9904,28 @@
- {
-   struct peer *peer;
--  peer = peer_lookup_in_view (vty, NULL, argv[0]);
-+  if (argc == 2)
-+    peer = peer_lookup_in_view (vty, argv[0], argv[1]);
-+  else
-+    peer = peer_lookup_in_view (vty, NULL, argv[0]);
-+
-   if (! peer)
-     return CMD_WARNING;
-   return peer_adj_routes (vty, peer, AFI_IP, SAFI_UNICAST, 1);
- }
-+ALIAS (show_ip_bgp_view_neighbor_received_routes,
-+       show_ip_bgp_neighbor_received_routes_cmd,
-+       "show ip bgp neighbors (A.B.C.D|X:X::X:X) received-routes",
-+       SHOW_STR
-+       IP_STR
-+       BGP_STR
-+       "Detailed information on TCP and BGP neighbor connections\n"
-+       "Neighbor to display information about\n"
-+       "Neighbor to display information about\n"
-+       "Display the received routes from neighbor\n")
-+
- DEFUN (show_ip_bgp_ipv4_neighbor_received_routes,
-        show_ip_bgp_ipv4_neighbor_received_routes_cmd,
-        "show ip bgp ipv4 (unicast|multicast) neighbors (A.B.C.D|X:X::X:X) received-routes",
-@@ -11784,6 +11896,8 @@
-   install_element (VIEW_NODE, &show_ip_bgp_rsclient_cmd);
-   install_element (VIEW_NODE, &show_ip_bgp_rsclient_route_cmd);
-   install_element (VIEW_NODE, &show_ip_bgp_rsclient_prefix_cmd);
-+  install_element (VIEW_NODE, &show_ip_bgp_view_neighbor_advertised_route_cmd);
-+  install_element (VIEW_NODE, &show_ip_bgp_view_neighbor_received_routes_cmd);
-   install_element (VIEW_NODE, &show_ip_bgp_view_rsclient_cmd);
-   install_element (VIEW_NODE, &show_ip_bgp_view_rsclient_route_cmd);
-   install_element (VIEW_NODE, &show_ip_bgp_view_rsclient_prefix_cmd);
-@@ -11889,6 +12003,8 @@
-   install_element (ENABLE_NODE, &show_ip_bgp_rsclient_cmd);
-   install_element (ENABLE_NODE, &show_ip_bgp_rsclient_route_cmd);
-   install_element (ENABLE_NODE, &show_ip_bgp_rsclient_prefix_cmd);
-+  install_element (ENABLE_NODE, &show_ip_bgp_view_neighbor_advertised_route_cmd);
-+  install_element (ENABLE_NODE, &show_ip_bgp_view_neighbor_received_routes_cmd);
-   install_element (ENABLE_NODE, &show_ip_bgp_view_rsclient_cmd);
-   install_element (ENABLE_NODE, &show_ip_bgp_view_rsclient_route_cmd);
-   install_element (ENABLE_NODE, &show_ip_bgp_view_rsclient_prefix_cmd);
This page took 0.072608 seconds and 4 git commands to generate.