1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
/********************************************************************
* $Author: lindner $
* $Revision: 3.10 $
* $Date: 1994/09/29 19:58:50 $
* $Source: /home/arcwelder/GopherSrc/CVS/gopher+/gopherd/gopherd.h,v $
* $State: Exp $
*
* Paul Lindner, University of Minnesota CIS.
*
* Copyright 1991, 1992 by the Regents of the University of Minnesota
* see the file "Copyright" in the distribution for conditions of use.
*********************************************************************
* MODULE: gopherd.h
* Header file for gopher server.
*********************************************************************
* Revision History:
* $Log: gopherd.h,v $
* Revision 3.10 1994/09/29 19:58:50 lindner
* Fix for including Locale.h
*
* Revision 3.9 1994/05/14 04:19:15 lindner
* Use new locale.h
*
* Revision 3.8 1994/05/02 07:41:14 lindner
* Mods to use setlocale()
*
* Revision 3.7 1994/04/14 18:00:38 lindner
* Fix for AIX
*
* Revision 3.6 1994/04/08 21:09:50 lindner
* Remove extraneous stat include
*
* Revision 3.5 1994/03/17 04:30:15 lindner
* VMS fixes gopherd.h
*
* Revision 3.4 1993/06/14 22:23:02 lindner
* status-->state:
*
* Revision 3.3 1993/04/15 21:59:08 lindner
* Fix for newer hpux systems
*
* Revision 3.2 1993/02/19 21:21:32 lindner
* Fixed problems with signals
*
* Revision 3.1.1.1 1993/02/11 18:02:51 lindner
* Gopher+1.2beta release
*
* Revision 1.1 1992/12/10 23:13:27 lindner
* gopher 1.1 release
*
*
*********************************************************************/
#include "conf.h"
#include "Locale.h"
#include <ctype.h>
#include <stdio.h>
#ifdef VMS
#include <perror.h>
#endif
#ifndef VMS
# include <sys/types.h>
# include <pwd.h>
#endif
#include <errno.h>
#include <signal.h>
/** For logfile locking... **/
#ifndef VMS
#if !defined(NeXT) && !defined(mips) && !defined(UMAX43) && !defined(sequent) && !defined(sony_news)
# include <unistd.h>
# include <fcntl.h>
#else
# include <fcntl.h>
# include <sys/file.h>
# ifndef SEEK_END
# define SEEK_END L_XTND
# define SEEK_SET L_SET
# endif
#endif
#endif
extern int errno;
#include "String.h"
#include <time.h>
#include "GDgopherdir.h"
#include "Dirent.h"
/*
* Make sure we don't accidentally use a library routine instead of our
* private restricted version. Need to avoid the stat in struct stat
* getting clobbered by the #define for the routine.
*/
typedef struct stat STATSTR;
#include "openers.h"
#define open barf_ropen
#define fopen barf_rfopen
#define stat barf_rstat
#define opendir barf_ropendir
#define chdir barf_rchdir
#include "compatible.h"
#include "util.h"
#include "gopherdconf.h"
/** Make sure that we can find out the max pathname size **/
#ifndef MAXPATHLEN
# if !defined(VMS)
# include <sys/param.h>
# endif
# ifndef MAXPATHLEN
# define MAXPATHLEN (256)
# endif
#endif
/*** This one must be last ***/
#include "globals.h"
|