diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2009-08-27 18:25:46 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2009-08-27 18:25:46 +0200 |
commit | 061ab802a67cfc336785f6daeecdcbd4910734ed (patch) | |
tree | a3815a619b1e3e553638e4aad6508757e5bc6f7a /proto/ospf/ospf.h | |
parent | b49e6f5a65d437cb7e7bdefe8397e0f550496012 (diff) | |
download | bird-061ab802a67cfc336785f6daeecdcbd4910734ed.tar bird-061ab802a67cfc336785f6daeecdcbd4910734ed.zip |
Temporary OSPFv3 development commit
Diffstat (limited to 'proto/ospf/ospf.h')
-rw-r--r-- | proto/ospf/ospf.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/proto/ospf/ospf.h b/proto/ospf/ospf.h index da0104d..c1d5de7 100644 --- a/proto/ospf/ospf.h +++ b/proto/ospf/ospf.h @@ -424,6 +424,10 @@ struct ospf_lsa_ext #define LSA_EXT_EBIT 0x80000000 +/* Endianity swap for lsa->type */ +#define ntoht(x) x +#define htont(x) x + #else /* OSPFv3 */ @@ -488,6 +492,10 @@ struct ospf_lsa_prefix #define LSA_EXT_FBIT 0x2000000 #define LSA_EXT_TBIT 0x1000000 +/* Endianity swap for lsa->type */ +#define ntoht(x) ntohs(x) +#define htont(x) htons(x) + #endif #define METRIC_MASK 0x00FFFFFF |