diff options
author | paul <paul> | 2004-10-11 11:00:30 +0000 |
---|---|---|
committer | paul <paul> | 2004-10-11 11:00:30 +0000 |
commit | 6c83567192ada1a66822c3f35580ce6a85f51ac9 (patch) | |
tree | 39ef09859fae79b7c7e234a671bf2e04f8e9264a /ospfd/ospf_interface.h | |
parent | 6b33361187feeb8c9c257ec149b4f75238af6c48 (diff) | |
download | quagga-6c83567192ada1a66822c3f35580ce6a85f51ac9.tar.bz2 quagga-6c83567192ada1a66822c3f35580ce6a85f51ac9.tar.xz |
2004-10-11 Paul Jakma <paul@dishone.st>
* (global) Const char update and signed/unsigned fixes.
* (various headers) size defines should be unsigned.
* ospf_interface.h: remove duplicated defines, include the
authoritative header - though, these defines should probably
be moved to a dedicated header, or ospfd.h.
* ospf_lsa.h: (struct lsa) ls_seqnum should be unsigned.
* ospf_packet.c: (ospf_write) cast result of shift to unsigned.
Diffstat (limited to 'ospfd/ospf_interface.h')
-rw-r--r-- | ospfd/ospf_interface.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ospfd/ospf_interface.h b/ospfd/ospf_interface.h index 0f3cecda..ed6abed0 100644 --- a/ospfd/ospf_interface.h +++ b/ospfd/ospf_interface.h @@ -23,8 +23,7 @@ #ifndef _ZEBRA_OSPF_INTERFACE_H #define _ZEBRA_OSPF_INTERFACE_H -#define OSPF_AUTH_SIMPLE_SIZE 8 -#define OSPF_AUTH_MD5_SIZE 16 +#include "ospfd/ospf_packet.h" #define IF_OSPF_IF_INFO(I) ((struct ospf_if_info *)((I)->info)) #define IF_DEF_PARAMS(I) (IF_OSPF_IF_INFO (I)->def_params) |