/*
* Copyright (C) 2000, 2001, 2004, 2007, 2008, 2016 Internet Systems Consortium, Inc. ("ISC")
*
* 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/.
*/
/* $Id: resource.c,v 1.10 2008/07/11 23:47:09 tbox Exp $ */
#include <config.h>
#include <stdio.h>
#include <isc/platform.h>
#include <isc/resource.h>
#include "errno2result.h"
/*
* Windows limits the maximum number of open files to 2048
*/
int wresult;
if (resource != isc_resource_openfiles)
return (ISC_R_NOTIMPLEMENTED);
if (value == ISC_RESOURCE_UNLIMITED)
else
if (wresult > 0)
return (ISC_R_SUCCESS);
else
return (isc__errno2result(errno));
}
if (resource != isc_resource_openfiles)
return (ISC_R_NOTIMPLEMENTED);
return (ISC_R_SUCCESS);
}
}