summaryrefslogtreecommitdiff
path: root/qpb
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2018-03-27 15:13:34 -0400
committerQuentin Young <qlyoung@cumulusnetworks.com>2018-03-27 15:13:34 -0400
commitd7c0a89a3a5697783a6dd89333ab660074790890 (patch)
treeeefa73e502f919b524b8a345437260d4acc23083 /qpb
parent28ac5a038101c66e4275a9b1ef6fb37b4f74fb6a (diff)
*: 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 'qpb')
-rw-r--r--qpb/qpb.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/qpb/qpb.h b/qpb/qpb.h
index fb5f56ac30..9aeb7d01d4 100644
--- a/qpb/qpb.h
+++ b/qpb/qpb.h
@@ -40,7 +40,7 @@
*/
#define qpb_address_family_set qpb__address_family__set
static inline int qpb__address_family__set(Qpb__AddressFamily *pb_family,
- u_char family)
+ uint8_t family)
{
switch (family) {
case AF_INET:
@@ -63,7 +63,7 @@ static inline int qpb__address_family__set(Qpb__AddressFamily *pb_family,
*/
#define qpb_address_family_get qpb__address_family__get
static inline int qpb__address_family__get(Qpb__AddressFamily pb_family,
- u_char *family)
+ uint8_t *family)
{
switch (pb_family) {
@@ -115,7 +115,7 @@ static inline Qpb__L3Prefix *qpb__l3_prefix__create(qpb_allocator_t *allocator,
*/
#define qpb_l3_prefix_get qpb__l3_prefix__get
static inline int qpb__l3_prefix__get(const Qpb__L3Prefix *pb_prefix,
- u_char family, struct prefix *prefix)
+ uint8_t family, struct prefix *prefix)
{
switch (family) {
@@ -262,7 +262,7 @@ static inline int qpb__ipv6_address__get(const Qpb__Ipv6Address *v6,
#define qpb_l3_address_create qpb__l3_address__create
static inline Qpb__L3Address *
qpb__l3_address__create(qpb_allocator_t *allocator, union g_addr *addr,
- u_char family)
+ uint8_t family)
{
Qpb__L3Address *l3_addr;
@@ -298,7 +298,7 @@ qpb__l3_address__create(qpb_allocator_t *allocator, union g_addr *addr,
*/
#define qpb_l3_address_get qpb__l3_address__get
static inline int qpb__l3_address__get(const Qpb__L3Address *l3_addr,
- u_char *family, union g_addr *addr)
+ uint8_t *family, union g_addr *addr)
{
if (l3_addr->v4) {
qpb__ipv4_address__get(l3_addr->v4, &addr->ipv4);