2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-05 00:55:24 +00:00

u_int#_t -> isc_uint#_t

This commit is contained in:
Mark Andrews
2002-10-28 02:16:21 +00:00
parent a963386d02
commit a3bcfd4660
2 changed files with 7 additions and 7 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: netaddr.h,v 1.22 2002/10/24 03:52:34 marka Exp $ */
/* $Id: netaddr.h,v 1.23 2002/10/28 02:16:20 marka Exp $ */
#ifndef ISC_NETADDR_H
#define ISC_NETADDR_H 1
@@ -32,7 +32,7 @@ struct isc_netaddr {
struct in_addr in;
struct in6_addr in6;
} type;
u_int32_t zone;
isc_uint32_t zone;
};
isc_boolean_t
@@ -96,9 +96,9 @@ void
isc_netaddr_fromin6(isc_netaddr_t *netaddr, const struct in6_addr *ina6);
void
isc_netaddr_setzone(isc_netaddr_t *netaddr, u_int32_t zone);
isc_netaddr_setzone(isc_netaddr_t *netaddr, isc_uint32_t zone);
u_int32_t
isc_uint32_t
isc_netaddr_getzone(const isc_netaddr_t *netaddr);
void