[BACK]Return to includes.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/includes.h, Revision 1.20

1.20    ! millert     1: /*     $OpenBSD: includes.h,v 1.19 2005/05/19 02:42:26 djm Exp $       */
1.14      niklas      2:
1.1       deraadt     3: /*
1.10      deraadt     4:  * Author: Tatu Ylonen <ylo@cs.hut.fi>
                      5:  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
                      6:  *                    All rights reserved
                      7:  * This file includes most of the needed system headers.
1.12      markus      8:  *
1.13      deraadt     9:  * As far as I am concerned, the code I have written for this software
                     10:  * can be used freely for any purpose.  Any derived versions of this
                     11:  * software must be clearly marked as such, and if the derived work is
                     12:  * incompatible with the protocol description in the RFC file, it must be
                     13:  * called by a name other than "ssh" or "Secure Shell".
1.10      deraadt    14:  */
1.1       deraadt    15:
                     16: #ifndef INCLUDES_H
                     17: #define INCLUDES_H
                     18:
1.8       deraadt    19: #define RCSID(msg) \
1.19      djm        20: static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg }
1.1       deraadt    21:
1.6       deraadt    22: #include <sys/types.h>
                     23: #include <sys/socket.h>
1.20    ! millert    24: #include <sys/queue.h>
1.6       deraadt    25: #include <sys/param.h>
                     26: #include <sys/ioctl.h>
                     27: #include <sys/endian.h>
                     28: #include <sys/stat.h>
                     29: #include <sys/wait.h>
                     30: #include <sys/time.h>
                     31: #include <sys/un.h>
                     32: #include <sys/resource.h>
1.1       deraadt    33:
1.8       deraadt    34: #include <netinet/in.h>
                     35: #include <netinet/in_systm.h>
                     36: #include <netinet/tcp.h>
                     37: #include <netinet/ip.h>
                     38: #include <arpa/inet.h>
                     39: #include <netdb.h>
                     40:
1.18      djm        41: #include <stddef.h>
1.3       dugsong    42: #include <netgroup.h>
1.1       deraadt    43: #include <stdio.h>
                     44: #include <ctype.h>
                     45: #include <errno.h>
                     46: #include <fcntl.h>
                     47: #include <signal.h>
                     48: #include <termios.h>
                     49: #include <stdlib.h>
                     50: #include <string.h>
                     51: #include <stdarg.h>
                     52: #include <pwd.h>
                     53: #include <grp.h>
                     54: #include <unistd.h>
                     55: #include <time.h>
                     56: #include <paths.h>
1.8       deraadt    57: #include <dirent.h>
1.1       deraadt    58:
1.8       deraadt    59: #include "version.h"
1.1       deraadt    60:
1.11      markus     61: /*
                     62:  * Define this to use pipes instead of socketpairs for communicating with the
                     63:  * client program.  Socketpairs do not seem to work on all systems.
                     64:  */
1.8       deraadt    65: #define USE_PIPES 1
1.1       deraadt    66:
1.10      deraadt    67: #endif                         /* INCLUDES_H */