diff options
Diffstat (limited to 'sendmail/include/sm/fdset.h')
-rw-r--r-- | sendmail/include/sm/fdset.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sendmail/include/sm/fdset.h b/sendmail/include/sm/fdset.h new file mode 100644 index 0000000..bb42185 --- /dev/null +++ b/sendmail/include/sm/fdset.h @@ -0,0 +1,25 @@ +/* + * Copyright (c) 2001, 2002 Sendmail, Inc. and its suppliers. + * All rights reserved. + * + * By using this file, you agree to the terms and conditions set + * forth in the LICENSE file which can be found at the top level of + * the sendmail distribution. + * + * $Id: fdset.h,v 1.5 2002/12/10 19:48:19 ca Exp $ + */ + +#ifndef SM_FDSET_H +# define SM_FDSET_H + +/* +** Note: SM_FD_OK_SELECT(fd) requires that ValidSocket(fd) has been checked +** before. +*/ + +# define SM_FD_SET(fd, pfdset) FD_SET(fd, pfdset) +# define SM_FD_ISSET(fd, pfdset) FD_ISSET(fd, pfdset) +# define SM_FD_SETSIZE FD_SETSIZE +# define SM_FD_OK_SELECT(fd) (FD_SETSIZE <= 0 || (fd) < FD_SETSIZE) + +#endif /* SM_FDSET_H */ |