+2006-01-11 Paul Jakma <paul.jakma@sun.com>
+
+ * if.h: (struct interface) expand flags to 8 bytes.
+ * zclient.c: (zebra_interface_{add,state}_read) stream read of
+ interface flags now need to use stream_getq.
+ (zebra_interface_if_set_value) ditto
+
2006-01-10 Paul Jakma <paul.jakma@sun.com>
* stream.c: (stream_new) Allocate stream data as seperate object.
#define ZEBRA_INTERFACE_LINKDETECTION (1 << 2)
/* Interface flags. */
- unsigned long flags;
+ uint64_t flags;
/* Interface metric */
int metric;
* | ifindex |
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
* | if_flags |
+ * | |
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
* | metric |
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/* Read interface's value. */
ifp->status = stream_getc (s);
- ifp->flags = stream_getl (s);
+ ifp->flags = stream_getq (s);
ifp->metric = stream_getl (s);
ifp->mtu = stream_getl (s);
ifp->mtu6 = stream_getl (s);
/* Read interface's value. */
ifp->status = stream_getc (s);
- ifp->flags = stream_getl (s);
+ ifp->flags = stream_getq (s);
ifp->metric = stream_getl (s);
ifp->mtu = stream_getl (s);
ifp->mtu6 = stream_getl (s);
ifp->status = stream_getc (s);
/* Read interface's value. */
- ifp->flags = stream_getl (s);
+ ifp->flags = stream_getq (s);
ifp->metric = stream_getl (s);
ifp->mtu = stream_getl (s);
ifp->mtu6 = stream_getl (s);
+2006-01-11 Paul Jakma <paul.jakma@sun.com>
+
+ * zserv.c: (zsend_interface_{add,delete,update}) if flags are
+ 8 bytes now, update to write out with stream_putq.
+
2005-12-29 Greg Troxel <gdt@fnord.ir.bbn.com>
* kernel_socket.c: remove dead code (from David Young).
stream_put (s, ifp->name, INTERFACE_NAMSIZ);
stream_putl (s, ifp->ifindex);
stream_putc (s, ifp->status);
- stream_putl (s, ifp->flags);
+ stream_putq (s, ifp->flags);
stream_putl (s, ifp->metric);
stream_putl (s, ifp->mtu);
stream_putl (s, ifp->mtu6);
stream_put (s, ifp->name, INTERFACE_NAMSIZ);
stream_putl (s, ifp->ifindex);
stream_putc (s, ifp->status);
- stream_putl (s, ifp->flags);
+ stream_putq (s, ifp->flags);
stream_putl (s, ifp->metric);
stream_putl (s, ifp->mtu);
stream_putl (s, ifp->mtu6);
stream_put (s, ifp->name, INTERFACE_NAMSIZ);
stream_putl (s, ifp->ifindex);
stream_putc (s, ifp->status);
- stream_putl (s, ifp->flags);
+ stream_putq (s, ifp->flags);
stream_putl (s, ifp->metric);
stream_putl (s, ifp->mtu);
stream_putl (s, ifp->mtu6);