1 /* $OpenBSD: ftp.h,v 1.2 1997/09/21 10:46:03 niklas Exp $ */ 2 /* $NetBSD: ftp.h,v 1.3 1994/10/26 00:56:43 cgd Exp $ */ 3 4 /* 5 * Copyright (c) 1983, 1989 Regents of the University of California. 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 3. All advertising materials mentioning features or use of this software 17 * must display the following acknowledgement: 18 * This product includes software developed by the University of 19 * California, Berkeley and its contributors. 20 * 4. Neither the name of the University nor the names of its contributors 21 * may be used to endorse or promote products derived from this software 22 * without specific prior written permission. 23 * 24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 34 * SUCH DAMAGE. 35 * 36 * @(#)ftp.h 5.6 (Berkeley) 4/3/91 37 */ 38 39 #ifndef _FTP_H_ 40 #define _FTP_H_ 41 42 /* Definitions for FTP; see RFC-765. */ 43 44 /* 45 * Reply codes. 46 */ 47 #define PRELIM 1 /* positive preliminary */ 48 #define COMPLETE 2 /* positive completion */ 49 #define CONTINUE 3 /* positive intermediate */ 50 #define TRANSIENT 4 /* transient negative completion */ 51 #define ERROR 5 /* permanent negative completion */ 52 53 /* 54 * Type codes 55 */ 56 #define TYPE_A 1 /* ASCII */ 57 #define TYPE_E 2 /* EBCDIC */ 58 #define TYPE_I 3 /* image */ 59 #define TYPE_L 4 /* local byte size */ 60 61 #ifdef FTP_NAMES 62 char *typenames[] = {"0", "ASCII", "EBCDIC", "Image", "Local" }; 63 #endif 64 65 /* 66 * Form codes 67 */ 68 #define FORM_N 1 /* non-print */ 69 #define FORM_T 2 /* telnet format effectors */ 70 #define FORM_C 3 /* carriage control (ASA) */ 71 #ifdef FTP_NAMES 72 char *formnames[] = {"0", "Nonprint", "Telnet", "Carriage-control" }; 73 #endif 74 75 /* 76 * Structure codes 77 */ 78 #define STRU_F 1 /* file (no record structure) */ 79 #define STRU_R 2 /* record structure */ 80 #define STRU_P 3 /* page structure */ 81 #ifdef FTP_NAMES 82 char *strunames[] = {"0", "File", "Record", "Page" }; 83 #endif 84 85 /* 86 * Mode types 87 */ 88 #define MODE_S 1 /* stream */ 89 #define MODE_B 2 /* block */ 90 #define MODE_C 3 /* compressed */ 91 #ifdef FTP_NAMES 92 char *modenames[] = {"0", "Stream", "Block", "Compressed" }; 93 #endif 94 95 /* 96 * Record Tokens 97 */ 98 #define REC_ESC '\377' /* Record-mode Escape */ 99 #define REC_EOR '\001' /* Record-mode End-of-Record */ 100 #define REC_EOF '\002' /* Record-mode End-of-File */ 101 102 /* 103 * Block Header 104 */ 105 #define BLK_EOR 0x80 /* Block is End-of-Record */ 106 #define BLK_EOF 0x40 /* Block is End-of-File */ 107 #define BLK_ERRORS 0x20 /* Block is suspected of containing errors */ 108 #define BLK_RESTART 0x10 /* Block is Restart Marker */ 109 110 #define BLK_BYTECOUNT 2 /* Bytes in this block */ 111 112 #endif /* !_FTP_H_ */ 113