files.h
上传用户:hepax88
上传日期:2007-01-03
资源大小:1101k
文件大小:2k
源码类别:

TCP/IP协议栈

开发平台:

Visual C++

  1. #ifndef _FILES_H
  2. #define _FILES_H
  3. /* Permission bits in FTPUSERS file */
  4. #define FTP_READ 1 /* Read files */
  5. #define FTP_CREATE 2 /* Create new files */
  6. #define FTP_WRITE 4 /* Overwrite or delete existing files */
  7. #define AX25_CMD 8 /* AX.25 gateway operation allowed */
  8. #define TELNET_CMD 16 /* Telnet gateway operation allowed */
  9. #define NETROM_CMD 32 /* NET/ROM gateway operation allowed */
  10. #define SYSOP_CMD 64 /* Remote sysop access allowed */
  11. #define EXCLUDED_CMD 128 /* This user is banned from the BBS */
  12. #define PPP_ACCESS_PRIV 0x0100 /* Priv bit for PPP connection */
  13. #define PPP_PWD_LOOKUP 0x0200 /* Priv bit for peerID/pass lookup */
  14. /* External definitions for configuration-dependent file names set in
  15.  * files.c
  16.  */
  17. extern char *Startup; /* Initialization file */
  18. extern char *Userfile; /* Authorized FTP users and passwords */
  19. extern char *Maillog; /* mail log */
  20. extern char *Mailspool; /* Incoming mail */
  21. extern char *Mailqdir; /* Outgoing mail spool */
  22. extern char *Mailqueue; /* Outgoing mail work files */
  23. extern char *Routeqdir; /* queue for router */
  24. extern char *Alias; /* the alias file */
  25. extern char *Dfile; /* Domain cache */
  26. extern char *Fdir; /* Finger info directory */
  27. extern char *Arealist; /* List of message areas */
  28. extern char *Helpdir; /* Mailbox help file directory */
  29. extern char *Rewritefile; /* Address rewrite file */
  30. extern char *Newsdir; /* News messages and NNTP data */
  31. extern char *Popusers; /* POP2 user and passwd file */
  32. extern char *Signature; /* Mail signature file directory */
  33. extern char *Forwardfile; /* Mail forwarding file */
  34. extern char *Historyfile; /* Message ID history file */
  35. void initroot(char *root);
  36. char *rootdircat(char *filename);
  37. int userlogin(char *name,char *pass,char **path,int len,int *pwdignore);
  38. char *userlookup(char *username, char **password, char **directory,
  39. int *permission, int32 *ip_address);
  40. void usercvt(void);
  41. #endif /* _FILES_H */