summaryrefslogtreecommitdiff
path: root/sbin/routed
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-03-20 08:47:53 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-03-20 08:47:53 +0000
commit7e6cd705f344de2f9f08475a0fa2ef9191f88dd0 (patch)
tree3ce9d5458d0d6e880d50e1e1f1e1ed7521a35ad1 /sbin/routed
parent172a0f0d163415e05ea07968167b11145975a6cb (diff)
Diffstat (limited to 'sbin/routed')
-rw-r--r--sbin/routed/Makefile4
-rw-r--r--sbin/routed/defs.h4
-rw-r--r--sbin/routed/if.c4
-rw-r--r--sbin/routed/input.c4
-rw-r--r--sbin/routed/main.c4
-rw-r--r--sbin/routed/output.c4
-rw-r--r--sbin/routed/parms.c4
-rw-r--r--sbin/routed/pathnames.h2
-rw-r--r--sbin/routed/radix.c4
-rw-r--r--sbin/routed/radix.h2
-rw-r--r--sbin/routed/rdisc.c4
-rw-r--r--sbin/routed/routed.84
-rw-r--r--sbin/routed/rtquery/Makefile2
-rw-r--r--sbin/routed/rtquery/rtquery.82
-rw-r--r--sbin/routed/rtquery/rtquery.c2
-rw-r--r--sbin/routed/table.c4
-rw-r--r--sbin/routed/trace.c4
17 files changed, 29 insertions, 29 deletions
diff --git a/sbin/routed/Makefile b/sbin/routed/Makefile
index 5ca5f196aa1a8..25f0ca1faa440 100644
--- a/sbin/routed/Makefile
+++ b/sbin/routed/Makefile
@@ -1,6 +1,6 @@
# Make `routed` for FreeBSD
-# $FreeBSD$
-# $FreeBSD$
+# $FreeBSD: src/sbin/routed/Makefile,v 1.8 1999/09/05 17:49:11 peter Exp $
+# $FreeBSD: src/sbin/routed/Makefile,v 1.8 1999/09/05 17:49:11 peter Exp $
PROG= routed
SRCS= if.c input.c main.c output.c parms.c radix.c rdisc.c table.c trace.c
diff --git a/sbin/routed/defs.h b/sbin/routed/defs.h
index aba95e3a27cdf..61d9b87335623 100644
--- a/sbin/routed/defs.h
+++ b/sbin/routed/defs.h
@@ -32,11 +32,11 @@
*
* @(#)defs.h 8.1 (Berkeley) 6/5/93
*
- * $FreeBSD$
+ * $FreeBSD: src/sbin/routed/defs.h,v 1.13 1999/09/05 17:49:11 peter Exp $
*/
#ifdef sgi
-#ident "$FreeBSD$"
+#ident "$FreeBSD: src/sbin/routed/defs.h,v 1.13 1999/09/05 17:49:11 peter Exp $"
#endif
/* Definitions for RIPv2 routing process.
diff --git a/sbin/routed/if.c b/sbin/routed/if.c
index 2e505b5005cdf..df886697c3f0f 100644
--- a/sbin/routed/if.c
+++ b/sbin/routed/if.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sbin/routed/if.c,v 1.6 1999/09/05 17:49:11 peter Exp $
*/
#include "defs.h"
@@ -42,7 +42,7 @@ static char sccsid[] __attribute__((unused)) = "@(#)if.c 8.1 (Berkeley) 6/5/93";
#include <sys/cdefs.h>
__RCSID("$NetBSD$");
#endif
-#ident "$FreeBSD$"
+#ident "$FreeBSD: src/sbin/routed/if.c,v 1.6 1999/09/05 17:49:11 peter Exp $"
struct interface *ifnet; /* all interfaces */
diff --git a/sbin/routed/input.c b/sbin/routed/input.c
index f1bfa379b59d9..cff3932e63756 100644
--- a/sbin/routed/input.c
+++ b/sbin/routed/input.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sbin/routed/input.c,v 1.7 1999/09/05 17:49:11 peter Exp $
*/
#include "defs.h"
@@ -41,7 +41,7 @@ static char sccsid[] __attribute__((unused)) = "@(#)input.c 8.1 (Berkeley) 6/5/9
#include <sys/cdefs.h>
__RCSID("$NetBSD$");
#endif
-#ident "$FreeBSD$"
+#ident "$FreeBSD: src/sbin/routed/input.c,v 1.7 1999/09/05 17:49:11 peter Exp $"
static void input(struct sockaddr_in *, struct interface *, struct interface *,
struct rip *, int);
diff --git a/sbin/routed/main.c b/sbin/routed/main.c
index cf4edba8338ed..5716c7503d316 100644
--- a/sbin/routed/main.c
+++ b/sbin/routed/main.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sbin/routed/main.c,v 1.11 1999/09/05 17:49:11 peter Exp $
*/
#include "defs.h"
@@ -52,7 +52,7 @@ __RCSID("$NetBSD$");
__COPYRIGHT("@(#) Copyright (c) 1983, 1988, 1993\n\
The Regents of the University of California. All rights reserved.\n");
#endif
-#ident "$FreeBSD$"
+#ident "$FreeBSD: src/sbin/routed/main.c,v 1.11 1999/09/05 17:49:11 peter Exp $"
pid_t mypid;
diff --git a/sbin/routed/output.c b/sbin/routed/output.c
index 0545c342b76e9..389cedf10391b 100644
--- a/sbin/routed/output.c
+++ b/sbin/routed/output.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sbin/routed/output.c,v 1.5 1999/09/05 17:49:11 peter Exp $
*/
#include "defs.h"
@@ -40,7 +40,7 @@ static char sccsid[] __attribute__((unused)) = "@(#)output.c 8.1 (Berkeley) 6/5/
#elif defined(__NetBSD__)
__RCSID("$NetBSD$");
#endif
-#ident "$FreeBSD$"
+#ident "$FreeBSD: src/sbin/routed/output.c,v 1.5 1999/09/05 17:49:11 peter Exp $"
u_int update_seqno;
diff --git a/sbin/routed/parms.c b/sbin/routed/parms.c
index abea5f6e4cebc..3aded4a950192 100644
--- a/sbin/routed/parms.c
+++ b/sbin/routed/parms.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sbin/routed/parms.c,v 1.7 1999/09/05 17:49:11 peter Exp $
*/
#include "defs.h"
@@ -42,7 +42,7 @@ static char sccsid[] __attribute__((unused)) = "@(#)if.c 8.1 (Berkeley) 6/5/93";
#elif defined(__NetBSD__)
__RCSID("$NetBSD$");
#endif
-#ident "$FreeBSD$"
+#ident "$FreeBSD: src/sbin/routed/parms.c,v 1.7 1999/09/05 17:49:11 peter Exp $"
struct parm *parms;
diff --git a/sbin/routed/pathnames.h b/sbin/routed/pathnames.h
index b99bcc24d28eb..be7d782cf1ed1 100644
--- a/sbin/routed/pathnames.h
+++ b/sbin/routed/pathnames.h
@@ -32,7 +32,7 @@
*
* @(#)pathnames.h 8.1 (Berkeley) 6/5/93
*
- * $FreeBSD$
+ * $FreeBSD: src/sbin/routed/pathnames.h,v 1.5 1999/08/28 00:14:16 peter Exp $
*/
#include <paths.h>
diff --git a/sbin/routed/radix.c b/sbin/routed/radix.c
index edbf2361aeba0..fc6c1930b4c67 100644
--- a/sbin/routed/radix.c
+++ b/sbin/routed/radix.c
@@ -32,7 +32,7 @@
*
* @(#)radix.c 8.4 (Berkeley) 11/2/94
*
- * $FreeBSD$
+ * $FreeBSD: src/sbin/routed/radix.c,v 1.5 1999/09/05 17:49:11 peter Exp $
*/
/*
@@ -46,7 +46,7 @@ static char sccsid[] __attribute__((unused)) = "@(#)rdisc.c 8.1 (Berkeley) x/y/9
#elif defined(__NetBSD__)
__RCSID("$NetBSD$");
#endif
-#ident "$FreeBSD$"
+#ident "$FreeBSD: src/sbin/routed/radix.c,v 1.5 1999/09/05 17:49:11 peter Exp $"
#define log(x, msg) syslog(x, msg)
#define panic(s) {log(LOG_ERR,s); exit(1);}
diff --git a/sbin/routed/radix.h b/sbin/routed/radix.h
index ab3bf620cffaa..4c1c6b76e05c3 100644
--- a/sbin/routed/radix.h
+++ b/sbin/routed/radix.h
@@ -32,7 +32,7 @@
*
* @(#)radix.h 8.2 (Berkeley) 10/31/94
*
- * $FreeBSD$
+ * $FreeBSD: src/sbin/routed/radix.h,v 1.4 1999/08/28 00:14:17 peter Exp $
*/
#ifndef __RADIX_H_
diff --git a/sbin/routed/rdisc.c b/sbin/routed/rdisc.c
index dd99b8df212f5..4cc9b7317abf7 100644
--- a/sbin/routed/rdisc.c
+++ b/sbin/routed/rdisc.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sbin/routed/rdisc.c,v 1.5 1999/09/05 17:49:11 peter Exp $
*/
#include "defs.h"
@@ -43,7 +43,7 @@ static char sccsid[] __attribute__((unused)) = "@(#)rdisc.c 8.1 (Berkeley) x/y/9
#elif defined(__NetBSD__)
__RCSID"$NetBSD$");
#endif
-#ident "$FreeBSD$"
+#ident "$FreeBSD: src/sbin/routed/rdisc.c,v 1.5 1999/09/05 17:49:11 peter Exp $"
/* router advertisement ICMP packet */
struct icmp_ad {
diff --git a/sbin/routed/routed.8 b/sbin/routed/routed.8
index 1bf9646d7173d..eba853458ce08 100644
--- a/sbin/routed/routed.8
+++ b/sbin/routed/routed.8
@@ -1,4 +1,4 @@
-.\" $FreeBSD$
+.\" $FreeBSD: src/sbin/routed/routed.8,v 1.15 1999/11/15 02:53:31 kris Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -33,7 +33,7 @@
.\"
.\" @(#)routed.8 8.2 (Berkeley) 12/11/93
.\"
-.\" $FreeBSD$
+.\" $FreeBSD: src/sbin/routed/routed.8,v 1.15 1999/11/15 02:53:31 kris Exp $
.\"
.Dd June 1, 1996
.Dt ROUTED 8
diff --git a/sbin/routed/rtquery/Makefile b/sbin/routed/rtquery/Makefile
index 3e8049dd62739..6d5c2d9473808 100644
--- a/sbin/routed/rtquery/Makefile
+++ b/sbin/routed/rtquery/Makefile
@@ -1,6 +1,6 @@
# Make `routed` tools for BSD/OS
# $Revision: 1.6 $
-# $FreeBSD$
+# $FreeBSD: src/sbin/routed/rtquery/Makefile,v 1.7 1999/08/28 00:14:20 peter Exp $
PROG= rtquery
MAN8= rtquery.8
diff --git a/sbin/routed/rtquery/rtquery.8 b/sbin/routed/rtquery/rtquery.8
index c7dcab7e157d0..90015be121cd9 100644
--- a/sbin/routed/rtquery/rtquery.8
+++ b/sbin/routed/rtquery/rtquery.8
@@ -1,5 +1,5 @@
.\" $Revision: 1.10 $
-.\" $FreeBSD$
+.\" $FreeBSD: src/sbin/routed/rtquery/rtquery.8,v 1.11 1999/08/28 00:14:20 peter Exp $
.\"
.Dd June 1, 1996
.Dt RTQUERY 8
diff --git a/sbin/routed/rtquery/rtquery.c b/sbin/routed/rtquery/rtquery.c
index 1441699f1aeab..f2bed60c61c0a 100644
--- a/sbin/routed/rtquery/rtquery.c
+++ b/sbin/routed/rtquery/rtquery.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sbin/routed/rtquery/rtquery.c,v 1.13 1999/08/28 00:14:21 peter Exp $
*/
char copyright[] =
diff --git a/sbin/routed/table.c b/sbin/routed/table.c
index b7e826e689aaa..d6c0ee256c2d4 100644
--- a/sbin/routed/table.c
+++ b/sbin/routed/table.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sbin/routed/table.c,v 1.9 1999/09/05 17:49:11 peter Exp $
*/
#include "defs.h"
@@ -40,7 +40,7 @@ static char sccsid[] __attribute__((unused)) = "@(#)tables.c 8.1 (Berkeley) 6/5/
#elif defined(__NetBSD__)
__RCSID("$NetBSD$");
#endif
-#ident "$FreeBSD$"
+#ident "$FreeBSD: src/sbin/routed/table.c,v 1.9 1999/09/05 17:49:11 peter Exp $"
static struct rt_spare *rts_better(struct rt_entry *);
static struct rt_spare rts_empty = {0,0,0,HOPCNT_INFINITY,0,0,0};
diff --git a/sbin/routed/trace.c b/sbin/routed/trace.c
index 886f7ee49722b..ef58fe4a74ad1 100644
--- a/sbin/routed/trace.c
+++ b/sbin/routed/trace.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sbin/routed/trace.c,v 1.5 1999/09/05 17:49:11 peter Exp $
*/
#define RIPCMDS
@@ -45,7 +45,7 @@ static char sccsid[] __attribute__((unused)) = "@(#)trace.c 8.1 (Berkeley) 6/5/9
#elif defined(__NetBSD__)
__RCSID("$NetBSD$");
#endif
-#ident "$FreeBSD$"
+#ident "$FreeBSD: src/sbin/routed/trace.c,v 1.5 1999/09/05 17:49:11 peter Exp $"
#ifdef sgi