]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
The OSPF authentication type was sent in host byte order instead of of
authorMartin Mares <mj@ucw.cz>
Mon, 31 May 2004 18:13:14 +0000 (18:13 +0000)
committerMartin Mares <mj@ucw.cz>
Mon, 31 May 2004 18:13:14 +0000 (18:13 +0000)
network byte order thus breaking interoperability with other routing
daemons on litte endian machines. The patch fixes this but note that
this breaks compatability with older bird installations using OSPF and
password authentication

(Andreas)

proto/ospf/ospf.h

index d1085c4d0b5aa4708de7644dc643302119386873..8a246bef6fe2206366d0a165d11cfda22db47812 100644 (file)
@@ -426,9 +426,10 @@ struct ospf_iface_patt {
   int autype;
   int strictnbma;
   int stub;
-#define AU_NONE 0
-#define AU_SIMPLE 1
-#define AU_CRYPT 2
+/* must be in network byte order */
+#define AU_NONE htons(0)
+#define AU_SIMPLE htons(1)
+#define AU_CRYPT htons(2)
   u8 password[8];
   list nbma_list;
 };