summaryrefslogtreecommitdiffstats
path: root/ospfd/ospf_route.h
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2018-03-27 21:13:34 +0200
committerQuentin Young <qlyoung@cumulusnetworks.com>2018-03-27 21:13:34 +0200
commitd7c0a89a3a5697783a6dd89333ab660074790890 (patch)
treeeefa73e502f919b524b8a345437260d4acc23083 /ospfd/ospf_route.h
parenttools, doc: update checkpatch for u_int_* (diff)
downloadfrr-d7c0a89a3a5697783a6dd89333ab660074790890.tar.xz
frr-d7c0a89a3a5697783a6dd89333ab660074790890.zip
*: use C99 standard fixed-width integer types
The following types are nonstandard: - u_char - u_short - u_int - u_long - u_int8_t - u_int16_t - u_int32_t Replace them with the C99 standard types: - uint8_t - unsigned short - unsigned int - unsigned long - uint8_t - uint16_t - uint32_t Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'ospfd/ospf_route.h')
-rw-r--r--ospfd/ospf_route.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ospfd/ospf_route.h b/ospfd/ospf_route.h
index 76df54fb3..8cb5d32a8 100644
--- a/ospfd/ospf_route.h
+++ b/ospfd/ospf_route.h
@@ -64,10 +64,10 @@ struct route_standard {
int external_routing;
/* Optional Capability. */
- u_char options; /* Get from LSA header. */
+ uint8_t options; /* Get from LSA header. */
/* */
- u_char flags; /* From router-LSA */
+ uint8_t flags; /* From router-LSA */
};
struct route_external {
@@ -75,10 +75,10 @@ struct route_external {
struct ospf_lsa *origin;
/* Link State Cost Type2. */
- u_int32_t type2_cost;
+ uint32_t type2_cost;
/* Tag value. */
- u_int32_t tag;
+ uint32_t tag;
/* ASBR route. */
struct ospf_route *asbr;
@@ -86,7 +86,7 @@ struct route_external {
struct ospf_route {
/* Destination Type. */
- u_char type;
+ uint8_t type;
/* Destination ID. */ /* i.e. Link State ID. */
struct in_addr id;
@@ -95,13 +95,13 @@ struct ospf_route {
struct in_addr mask; /* Only valid for networks. */
/* Path Type. */
- u_char path_type;
+ uint8_t path_type;
/* List of Paths. */
struct list *paths;
/* Link State Cost. */
- u_int32_t cost; /* i.e. metric. */
+ uint32_t cost; /* i.e. metric. */
/* Route specific info. */
union {