From c77d4546619f9d3e0ccfac5acbc0ebb42658a61f Mon Sep 17 00:00:00 2001 From: paul Date: Wed, 11 Jan 2006 01:59:04 +0000 Subject: [zserv] Update interface flags to 8 bytes wide. 2006-01-11 Paul Jakma * 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-11 Paul Jakma * zserv.c: (zsend_interface_{add,delete,update}) if flags are 8 bytes now, update to write out with stream_putq. --- lib/if.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/if.h') diff --git a/lib/if.h b/lib/if.h index 8126ea9c..e6299060 100644 --- a/lib/if.h +++ b/lib/if.h @@ -92,7 +92,7 @@ struct interface #define ZEBRA_INTERFACE_LINKDETECTION (1 << 2) /* Interface flags. */ - unsigned long flags; + uint64_t flags; /* Interface metric */ int metric; -- cgit v1.2.1