Blame src/microhttpd/sysfdsetsize.h

Packit 875988
/*
Packit 875988
  This file is part of libmicrohttpd
Packit 875988
  Copyright (C) 2015 Karlson2k (Evgeny Grin)
Packit 875988
Packit 875988
  This library is free software; you can redistribute it and/or
Packit 875988
  modify it under the terms of the GNU Lesser General Public
Packit 875988
  License as published by the Free Software Foundation; either
Packit 875988
  version 2.1 of the License, or (at your option) any later version.
Packit 875988
Packit 875988
  This library is distributed in the hope that it will be useful,
Packit 875988
  but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 875988
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 875988
  Lesser General Public License for more details.
Packit 875988
Packit 875988
  You should have received a copy of the GNU Lesser General Public
Packit 875988
  License along with this library; if not, write to the Free Software
Packit 875988
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
Packit 875988
*/
Packit 875988
Packit 875988
/**
Packit 875988
 * @file microhttpd/sysfdsetsize.h
Packit 875988
 * @brief  Helper for obtaining FD_SETSIZE system default value
Packit 875988
 * @author Karlson2k (Evgeny Grin)
Packit 875988
 */
Packit 875988
Packit 875988
#ifndef SYSFDSETSIZE_H
Packit 875988
#define SYSFDSETSIZE_H 1
Packit 875988
Packit 875988
/**
Packit 875988
 * Get system default value of FD_SETSIZE
Packit 875988
 * @return system default value of FD_SETSIZE
Packit 875988
 */
Packit 875988
int
Packit 875988
get_system_fdsetsize_value (void);
Packit 875988
Packit 875988
#endif /* !SYSFDSETSIZE_H */