]> git.proxmox.com Git - mirror_frr.git/commitdiff
2005-02-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
authorajs <ajs>
Tue, 8 Feb 2005 15:59:16 +0000 (15:59 +0000)
committerajs <ajs>
Tue, 8 Feb 2005 15:59:16 +0000 (15:59 +0000)
* ospf_interface.h: Reduce structure padding by putting new u_char
  field multicast_memberships in a better spot (grouped with
  other u_char fields type and state).

ospfd/ChangeLog
ospfd/ospf_interface.h

index b9e21c5b768e4abab89cf8783b885e96fd27f9ae..0d7bd9c479f3033ad049188822fac3b9d9f4ade4 100644 (file)
@@ -1,3 +1,9 @@
+2005-02-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
+
+       * ospf_interface.h: Reduce structure padding by putting new u_char
+         field multicast_memberships in a better spot (grouped with
+         other u_char fields type and state).
+
 2005-02-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
 
        * ospf_interface.h: Improve passive_interface comment.  Add new
index ca22c1a0c2fad7f6c9b73b1d0c10458c34fb1dce..b49a3517f55e63a88c0b9d9be8cc54e2aa4d45ce 100644 (file)
@@ -123,14 +123,14 @@ struct ospf_interface
   /* State of Interface State Machine. */
   u_char state;
 
-  struct prefix *address;              /* Interface prefix */
-  struct connected *connected;          /* Pointer to connected */ 
-
   /* To which multicast groups do we currently belong? */
   u_char multicast_memberships;
 #define MEMBER_ALLROUTERS      0x1
 #define MEMBER_DROUTERS                0x2
 
+  struct prefix *address;              /* Interface prefix */
+  struct connected *connected;          /* Pointer to connected */ 
+
   /* Configured varables. */
   struct ospf_if_params *params;
   u_int32_t crypt_seqnum;              /* Cryptographic Sequence Number */