2000-08-29 19:58:17 -04:00
|
|
|
/*
|
2018-02-23 03:53:12 -05:00
|
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
2000-08-29 19:58:17 -04:00
|
|
|
*
|
2016-06-27 00:56:38 -04: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 03:53:12 -05:00
|
|
|
*
|
|
|
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
|
|
|
* information regarding copyright ownership.
|
2000-08-29 19:58:17 -04:00
|
|
|
*/
|
|
|
|
|
|
2009-09-02 19:48:03 -04:00
|
|
|
/* $Id: socket_p.h,v 1.15 2009/09/02 23:48:03 tbox Exp $ */
|
2000-08-29 19:58:17 -04:00
|
|
|
|
|
|
|
|
#ifndef ISC_SOCKET_P_H
|
|
|
|
|
#define ISC_SOCKET_P_H
|
|
|
|
|
|
2005-04-27 00:57:32 -04:00
|
|
|
/*! \file */
|
|
|
|
|
|
2001-01-22 22:07:18 -05:00
|
|
|
#ifdef ISC_PLATFORM_NEEDSYSSELECTH
|
2001-06-11 21:35:42 -04:00
|
|
|
#include <sys/select.h>
|
2001-01-22 22:07:18 -05:00
|
|
|
#endif
|
|
|
|
|
|
2008-06-23 15:41:20 -04:00
|
|
|
typedef struct isc_socketwait isc_socketwait_t;
|
2009-08-31 20:22:28 -04: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 19:58:17 -04:00
|
|
|
#endif /* ISC_SOCKET_P_H */
|