2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

1814. [func] UNIX domain controls are now supported.

This commit is contained in:
Mark Andrews
2005-02-23 01:09:23 +00:00
parent eefe1fcace
commit 4423c99613
23 changed files with 1259 additions and 331 deletions

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: socket.c,v 1.35 2004/09/01 04:38:43 marka Exp $ */
/* $Id: socket.c,v 1.36 2005/02/23 01:06:40 marka Exp $ */
/* This code has been rewritten to take advantage of Windows Sockets
* I/O Completion Ports and Events. I/O Completion Ports is ONLY
@@ -3761,3 +3761,20 @@ isc_socket_ipv6only(isc_socket_t *sock, isc_boolean_t yes) {
}
#endif
}
void
isc_socket_cleanunix(isc_sockaddr_t *addr, isc_boolean_t active) {
UNUSED(addr);
UNUSED(active);
}
isc_result_t
isc_socket_permunix(isc_sockaddr_t *addr, isc_uint32_t perm,
isc_uint32_t owner, isc_uint32_t group)
{
UNUSED(addr);
UNUSED(perm);
UNUSED(owner);
UNUSED(group);
return (ISC_R_NOTIMPLEMENTED);
}