2000-08-29 23:58:17 +00:00
|
|
|
/*
|
2018-02-23 09:53:12 +01:00
|
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
2000-08-29 23:58:17 +00:00
|
|
|
*
|
2016-06-27 14:56:38 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2018-02-23 09:53:12 +01:00
|
|
|
*
|
|
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
|
|
* information regarding copyright ownership.
|
2000-08-29 23:58:17 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef ISC_SOCKET_P_H
|
|
|
|
#define ISC_SOCKET_P_H
|
|
|
|
|
2005-04-27 04:57:32 +00:00
|
|
|
/*! \file */
|
|
|
|
|
2001-01-23 03:07:18 +00:00
|
|
|
#ifdef ISC_PLATFORM_NEEDSYSSELECTH
|
2001-06-12 01:35:42 +00:00
|
|
|
#include <sys/select.h>
|
2001-01-23 03:07:18 +00:00
|
|
|
#endif
|
|
|
|
|
2008-06-23 19:41:20 +00:00
|
|
|
typedef struct isc_socketwait isc_socketwait_t;
|
2009-09-01 00:22:28 +00:00
|
|
|
int isc__socketmgr_waitevents(isc_socketmgr_t *, struct timeval *,
|
|
|
|
isc_socketwait_t **);
|
|
|
|
isc_result_t isc__socketmgr_dispatch(isc_socketmgr_t *, isc_socketwait_t *);
|
2000-08-29 23:58:17 +00:00
|
|
|
#endif /* ISC_SOCKET_P_H */
|