mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-04 16:45:24 +00:00
Replace custom isc_u?intNN_t types with C99 u?intNN_t types
This commit is contained in:
@@ -37,6 +37,7 @@
|
||||
|
||||
#include <errno.h>
|
||||
#include <stddef.h>
|
||||
#include <inttypes.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
@@ -3926,8 +3927,8 @@ isc__socket_cleanunix(const isc_sockaddr_t *addr, isc_boolean_t active) {
|
||||
}
|
||||
|
||||
isc_result_t
|
||||
isc__socket_permunix(const isc_sockaddr_t *addr, isc_uint32_t perm,
|
||||
isc_uint32_t owner, isc_uint32_t group)
|
||||
isc__socket_permunix(const isc_sockaddr_t *addr, uint32_t perm,
|
||||
uint32_t owner, uint32_t group)
|
||||
{
|
||||
UNUSED(addr);
|
||||
UNUSED(perm);
|
||||
@@ -3967,7 +3968,7 @@ isc__socket_getfd(isc_socket_t *socket) {
|
||||
}
|
||||
|
||||
void
|
||||
isc__socketmgr_setreserved(isc_socketmgr_t *manager, isc_uint32_t reserved) {
|
||||
isc__socketmgr_setreserved(isc_socketmgr_t *manager, uint32_t reserved) {
|
||||
UNUSED(manager);
|
||||
UNUSED(reserved);
|
||||
}
|
||||
|
Reference in New Issue
Block a user