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

Ftp客户端

开发平台:

Unix_Linux

  1. /****************************************************************************  
  2.  
  3.   Copyright (c) 1999 WU-FTPD Development Group.  
  4.   All rights reserved.
  5.   
  6.   Portions Copyright (c) 1980, 1985, 1988, 1989, 1990, 1991, 1993, 1994
  7.     The Regents of the University of California.
  8.   Portions Copyright (c) 1993, 1994 Washington University in Saint Louis.
  9.   Portions Copyright (c) 1996, 1998 Berkeley Software Design, Inc.
  10.   Portions Copyright (c) 1989 Massachusetts Institute of Technology.
  11.   Portions Copyright (c) 1998 Sendmail, Inc.
  12.   Portions Copyright (c) 1983, 1995, 1996, 1997 Eric P.  Allman.
  13.   Portions Copyright (c) 1997 by Stan Barber.
  14.   Portions Copyright (c) 1997 by Kent Landfield.
  15.   Portions Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996, 1997
  16.     Free Software Foundation, Inc.  
  17.  
  18.   Use and distribution of this software and its source code are governed 
  19.   by the terms and conditions of the WU-FTPD Software License ("LICENSE").
  20.  
  21.   If you did not receive a copy of the license, it may be obtained online
  22.   at http://www.wu-ftpd.org/license.html.
  23.  
  24.   $Id: ftp.h,v 1.3 1999/08/24 23:25:37 wuftpd Exp $
  25.  
  26. ****************************************************************************/
  27. /*
  28.  * Definitions for FTP
  29.  * See RFC-765
  30.  */
  31. /*
  32.  * Reply codes.
  33.  */
  34. #define PRELIM 1 /* positive preliminary */
  35. #define COMPLETE 2 /* positive completion */
  36. #define CONTINUE 3 /* positive intermediate */
  37. #define TRANSIENT 4 /* transient negative completion */
  38. #define ERROR 5 /* permanent negative completion */
  39. /*
  40.  * Type codes
  41.  */
  42. #define TYPE_A 1 /* ASCII */
  43. #define TYPE_E 2 /* EBCDIC */
  44. #define TYPE_I 3 /* image */
  45. #define TYPE_L 4 /* local byte size */
  46. #ifdef FTP_NAMES
  47. char *typenames[] =
  48. {"0", "ASCII", "EBCDIC", "Image", "Local"};
  49. #endif
  50. /*
  51.  * Form codes
  52.  */
  53. #define FORM_N 1 /* non-print */
  54. #define FORM_T 2 /* telnet format effectors */
  55. #define FORM_C 3 /* carriage control (ASA) */
  56. #ifdef FTP_NAMES
  57. char *formnames[] =
  58. {"0", "Nonprint", "Telnet", "Carriage-control"};
  59. #endif
  60. /*
  61.  * Structure codes
  62.  */
  63. #define STRU_F 1 /* file (no record structure) */
  64. #define STRU_R 2 /* record structure */
  65. #define STRU_P 3 /* page structure */
  66. #ifdef FTP_NAMES
  67. char *strunames[] =
  68. {"0", "File", "Record", "Page"};
  69. #endif
  70. /*
  71.  * Mode types
  72.  */
  73. #define MODE_S 1 /* stream */
  74. #define MODE_B 2 /* block */
  75. #define MODE_C 3 /* compressed */
  76. #ifdef FTP_NAMES
  77. char *modenames[] =
  78. {"0", "Stream", "Block", "Compressed"};
  79. #endif
  80. /*
  81.  * Record Tokens
  82.  */
  83. #define REC_ESC '377' /* Record-mode Escape */
  84. #define REC_EOR '01' /* Record-mode End-of-Record */
  85. #define REC_EOF '02' /* Record-mode End-of-File */
  86. /*
  87.  * Block Header
  88.  */
  89. #define BLK_EOR 0x80 /* Block is End-of-Record */
  90. #define BLK_EOF 0x40 /* Block is End-of-File */
  91. #define BLK_ERRORS 0x20 /* Block is suspected of containing errors */
  92. #define BLK_RESTART 0x10 /* Block is Restart Marker */
  93. #define BLK_BYTECOUNT 2 /* Bytes in this block */