diff options
author | Esben Norby <norby@cvs.openbsd.org> | 2005-02-08 21:52:49 +0000 |
---|---|---|
committer | Esben Norby <norby@cvs.openbsd.org> | 2005-02-08 21:52:49 +0000 |
commit | 7efbacf091968d627c5fdb5fa16508e094a5e211 (patch) | |
tree | 6ab3876fd8369c6f6bdec7654609bf85e3eaba53 /usr.sbin/ospfd | |
parent | 2b45e3363bd33a833abbab62739b13ec9646e20d (diff) |
Change default metric to 10, reflects what is stated in ospfd.conf(5).
ok claudio@
Diffstat (limited to 'usr.sbin/ospfd')
-rw-r--r-- | usr.sbin/ospfd/ospf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ospfd/ospf.h b/usr.sbin/ospfd/ospf.h index 5d1d36b9e96..5cd333ffd71 100644 --- a/usr.sbin/ospfd/ospf.h +++ b/usr.sbin/ospfd/ospf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ospf.h,v 1.6 2005/02/08 12:56:48 claudio Exp $ */ +/* $OpenBSD: ospf.h,v 1.7 2005/02/08 21:52:48 norby Exp $ */ /* * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org> @@ -32,7 +32,7 @@ #define PACKET_HDR 100 /* XXX used to calculate the IP payload */ -#define DEFAULT_METRIC 1 +#define DEFAULT_METRIC 10 #define MIN_METRIC 1 #define MAX_METRIC 65535 /* sum & as-ext lsa use 24bit metrics */ |