diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-10-11 19:06:42 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-10-11 19:06:42 +0000 |
commit | 05694649f8d0814e1fbb2d0576a8f80b1193279a (patch) | |
tree | 45a816d4fd9f514b4051c088ab3bb0013b6d8241 /usr.sbin/ospf6d/ospf6d.h | |
parent | deb1254f305c711065855299168d55d33b866098 (diff) |
area_ospf_options() should return the options in network byte order.
Diffstat (limited to 'usr.sbin/ospf6d/ospf6d.h')
-rw-r--r-- | usr.sbin/ospf6d/ospf6d.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ospf6d/ospf6d.h b/usr.sbin/ospf6d/ospf6d.h index 074d7c2d8a4..0dc84581843 100644 --- a/usr.sbin/ospf6d/ospf6d.h +++ b/usr.sbin/ospf6d/ospf6d.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ospf6d.h,v 1.3 2007/10/11 19:02:47 claudio Exp $ */ +/* $OpenBSD: ospf6d.h,v 1.4 2007/10/11 19:06:41 claudio Exp $ */ /* * Copyright (c) 2004, 2007 Esben Norby <norby@openbsd.org> @@ -384,6 +384,7 @@ struct ospfd_conf { #define OSPFD_OPT_FORCE_DEMOTE 0x00000010 u_int32_t spf_delay; u_int32_t spf_hold_time; + u_int32_t options; /* OSPF options */ time_t uptime; int spf_state; int ospf_socket; |