summaryrefslogtreecommitdiff
path: root/lib/if.h
diff options
context:
space:
mode:
authorpaul <paul>2006-01-11 01:59:04 +0000
committerpaul <paul>2006-01-11 01:59:04 +0000
commitc77d4546619f9d3e0ccfac5acbc0ebb42658a61f (patch)
tree007f6c4e2c85e4df115c39011aa7ad3fb379f434 /lib/if.h
parent44316fef4d93b3d94cf45663ce35797d32acce71 (diff)
[zserv] Update interface flags to 8 bytes wide.
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-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.
Diffstat (limited to 'lib/if.h')
-rw-r--r--lib/if.h2
1 files changed, 1 insertions, 1 deletions
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;