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
|
2020-09-14 16:20:40 -07:00
|
|
|
* file, you can obtain one at https://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 */
|
|
|
|
|
2018-09-04 12:42:48 +02:00
|
|
|
#include <sys/time.h>
|
2001-01-23 03:07:18 +00:00
|
|
|
|
2008-06-23 19:41:20 +00:00
|
|
|
typedef struct isc_socketwait isc_socketwait_t;
|
2020-02-12 13:59:18 +01: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 */
|