hostacc.h
上传用户:zibowangxu
上传日期:2007-01-04
资源大小:331k
文件大小:3k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. /****************************************************************************    
  2.   Copyright (c) 1999 WU-FTPD Development Group.  
  3.   All rights reserved.
  4.    
  5.   Portions Copyright (c) 1980, 1985, 1988, 1989, 1990, 1991, 1993, 1994  
  6.     The Regents of the University of California. 
  7.   Portions Copyright (c) 1993, 1994 Washington University in Saint Louis.  
  8.   Portions Copyright (c) 1996, 1998 Berkeley Software Design, Inc.  
  9.   Portions Copyright (c) 1989 Massachusetts Institute of Technology.  
  10.   Portions Copyright (c) 1998 Sendmail, Inc.  
  11.   Portions Copyright (c) 1983, 1995, 1996, 1997 Eric P.  Allman.  
  12.   Portions Copyright (c) 1997 by Stan Barber.  
  13.   Portions Copyright (c) 1997 by Kent Landfield.  
  14.   Portions Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996, 1997  
  15.     Free Software Foundation, Inc.    
  16.    
  17.   Use and distribution of this software and its source code are governed   
  18.   by the terms and conditions of the WU-FTPD Software License ("LICENSE").  
  19.    
  20.   If you did not receive a copy of the license, it may be obtained online  
  21.   at http://www.wu-ftpd.org/license.html.  
  22.    
  23.   $Id: hostacc.h,v 1.8 1999/10/08 03:32:37 wuftpd Exp $  
  24.    
  25. ****************************************************************************/
  26. /*
  27.  *  hostacc.h  -   Header file used in the implementation of
  28.  *                 host access for the WU-FTPD FTP daemon
  29.  *
  30.  * INITIAL AUTHOR - Bart Muijzer    <bartm@cv.ruu.nl>
  31.  */
  32. #ifdef  HOST_ACCESS
  33. #include <stdio.h>
  34. #ifdef HAVE_SYS_SYSLOG_H
  35. #include <sys/syslog.h>
  36. #endif
  37. #if defined(HAVE_SYSLOG_H) || (!defined(AUTOCONF) && !defined(HAVE_SYS_SYSLOG_H))
  38. #include <syslog.h>
  39. #endif
  40. #include <string.h>
  41. #include <stdlib.h>
  42. #include <errno.h>
  43. #include "pathnames.h" /* From the ftpd sources    */
  44. /*
  45.  * Host Access types, as stored in the ha_type field, 
  46.  * and some other constants. All of this is tunable as
  47.  * long as you don't depend on the values.
  48.  */
  49. #define ALLOW   1
  50. #define DENY    2
  51. #define MAXLEN  1024 /* Maximum length of one line in config file */
  52. #define MAXHST  12 /* Max. number of hosts allowed on one line  */
  53. /* ------------------------------------------------------------------------- */
  54. /*
  55.  * Structure holding all host-access information 
  56.  */
  57. typedef struct {
  58.     short ha_type; /* ALLOW | DENY             */
  59.     char *ha_login; /* Loginname to investigate */
  60.     char *ha_hosts[MAXHST]; /* Array of hostnames       */
  61. } hacc_t;
  62. /* ------------------------------------------------------------------------ */
  63. static int sethacc(void);
  64. static int endhacc(void);
  65. static hacc_t *gethacc(void);
  66. static void fatalmsg(char *pcMsg);
  67. static char *strnsav(char *pcStr, int iLen);
  68. #endif /* HOST_ACCESS */