src/openvpn/fdmisc.h
6fbf66fa
 /*
  *  OpenVPN -- An application to securely tunnel IP networks
  *             over a single UDP port, with support for SSL/TLS-based
  *             session authentication and key exchange,
  *             packet encryption, packet authentication, and
  *             packet compression.
  *
49979459
  *  Copyright (C) 2002-2018 OpenVPN Inc <sales@openvpn.net>
6fbf66fa
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License version 2
  *  as published by the Free Software Foundation.
  *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *  GNU General Public License for more details.
  *
caa54ac3
  *  You should have received a copy of the GNU General Public License along
  *  with this program; if not, write to the Free Software Foundation, Inc.,
  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
6fbf66fa
  */
 
e0b3fd49
 #ifndef FD_MISC_H
 #define FD_MISC_H
 
6add6b2f
 #include "basic.h"
e0b3fd49
 #include "error.h"
 #include "syshead.h"
6add6b2f
 
81d882d5
 bool set_nonblock_action(int fd);
6add6b2f
 
81d882d5
 bool set_cloexec_action(int fd);
e0b3fd49
 
81d882d5
 void set_nonblock(int fd);
 
 void set_cloexec(int fd);
 
 static inline void
 openvpn_fd_set(int fd, fd_set *setp)
e0b3fd49
 {
445b192a
 #ifndef _WIN32 /* The Windows FD_SET() implementation does not overflow */
81d882d5
     ASSERT(fd >= 0 && fd < FD_SETSIZE);
e0b3fd49
 #endif
81d882d5
     FD_SET(fd, setp);
e0b3fd49
 }
 #undef FD_SET /* prevent direct use of FD_SET() */
 
 #endif /* FD_MISC_H */