X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/2d21ac55c334faf3a56e5634905ed6987fc787d4..060df5ea7c632b1ac8cc8aac1fb59758165c2084:/bsd/netinet/ip_flow.h?ds=sidebyside diff --git a/bsd/netinet/ip_flow.h b/bsd/netinet/ip_flow.h index 37dcbddee..972d96351 100644 --- a/bsd/netinet/ip_flow.h +++ b/bsd/netinet/ip_flow.h @@ -75,12 +75,12 @@ struct ipflow { u_int8_t ipf_tos; /* type-of-service */ struct route ipf_ro; /* associated route entry */ - u_long ipf_uses; /* number of uses in this period */ + u_int32_t ipf_uses; /* number of uses in this period */ int ipf_timer; /* remaining lifetime of this entry */ - u_long ipf_dropped; /* ENOBUFS returned by if_output */ - u_long ipf_errors; /* other errors returned by if_output */ - u_long ipf_last_uses; /* number of uses in last period */ + u_int32_t ipf_dropped; /* ENOBUFS returned by if_output */ + u_int32_t ipf_errors; /* other errors returned by if_output */ + u_int32_t ipf_last_uses; /* number of uses in last period */ }; #endif /* KERNEL_PRIVATE */