home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1996 May / PCOnline_05_1996.bin / linux / source / n / tcpip / wu-ftpd-.000 / wu-ftpd- / wu-ftpd-2.4 / src / pathnames.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-01  |  2.4 KB  |  53 lines

  1. /* Copyright (c) 1989 The Regents of the University of California. All rights
  2.  * reserved.
  3.  *
  4.  * Redistribution and use in source and binary forms, with or without
  5.  * modification, are permitted provided that the following conditions are
  6.  * met: 1. Redistributions of source code must retain the above copyright
  7.  * notice, this list of conditions and the following disclaimer. 2.
  8.  * Redistributions in binary form must reproduce the above copyright notice,
  9.  * this list of conditions and the following disclaimer in the documentation
  10.  * and/or other materials provided with the distribution. 3. All advertising
  11.  * materials mentioning features or use of this software must display the
  12.  * following acknowledgement: This product includes software developed by the
  13.  * University of California, Berkeley and its contributors. 4. Neither the
  14.  * name of the University nor the names of its contributors may be used to
  15.  * endorse or promote products derived from this software without specific
  16.  * prior written permission.
  17.  *
  18.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
  19.  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  20.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  21.  * DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
  22.  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  23.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  24.  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  25.  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  26.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  27.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  28.  * SUCH DAMAGE.
  29.  *
  30.  * @(#)pathnames.h 5.2 (Berkeley) 6/1/90 */
  31.  
  32. #define _PATH_FTPUSERS  "/etc/ftpusers"
  33. #define _PATH_FTPACCESS "/usr/local/etc/ftpaccess"
  34. #define _PATH_EXECPATH  "/bin/ftp-exec"
  35. #define _PATH_PIDNAMES  "/usr/local/daemon/ftpd/ftp.pids-%s"
  36. #define _PATH_CVT       "/usr/local/etc/ftpconversions"
  37. #define _PATH_XFERLOG   "/usr/adm/xferlog"
  38. #define _PATH_PRIVATE   "/etc/ftpgroups"
  39.  
  40. #ifndef _PATH_UTMP
  41. #define _PATH_UTMP      "/etc/utmp"
  42. #define _PATH_WTMP      "/usr/adm/wtmp"
  43. #define _PATH_LASTLOG   "/usr/adm/lastlog"
  44. #endif
  45.  
  46. #define _PATH_BSHELL    "/bin/sh"
  47. #define _PATH_DEVNULL   "/dev/null"
  48.  
  49. #ifdef  HOST_ACCESS
  50. #define _PATH_FTPHOSTS  "/usr/local/etc/ftphosts"
  51. #endif
  52.  
  53.