]> sjero.net Git - wget/blobdiff - src/ftp.h
[svn] Update copyright notices.
[wget] / src / ftp.h
index 06a53318fde5aa6bc00be4863898fab974b01e89..9e7db07d56dec4bda814ec35e335e571f162d7bc 100644 (file)
--- a/src/ftp.h
+++ b/src/ftp.h
@@ -1,19 +1,21 @@
 /* Declarations for FTP support.
    Copyright (C) 1995, 1996, 1997, 2000 Free Software Foundation, Inc.
 
-   This program is free software; you can redistribute it and/or modify
-   it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2 of the License, or
-   (at your option) any later version.
+This file is part of GNU Wget.
 
-   This program is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-   GNU General Public License for more details.
+GNU Wget is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
 
-   You should have received a copy of the GNU General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
+GNU Wget is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Wget; if not, write to the Free Software
+Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 #ifndef FTP_H
 #define FTP_H
@@ -27,6 +29,7 @@ enum stype
   ST_UNIX,
   ST_VMS,
   ST_WINNT,
+  ST_MACOS,
   ST_OTHER
 };
   
@@ -80,7 +83,9 @@ enum wget_ftp_command
   DO_CWD        = 0x0002,      /* Change current directory.  */
   DO_RETR       = 0x0004,      /* Retrieve the file.  */
   DO_LIST       = 0x0008,      /* Retrieve the directory list.  */
-  LEAVE_PENDING = 0x0010       /* Do not close the socket.  */
+  LEAVE_PENDING = 0x0010,      /* Do not close the socket.  */
+  NO_TRUNCATE  = 0x0020        /* Don't truncate the file if REST
+                                  malfunctions. */
 };
 
 enum wget_ftp_fstatus
@@ -98,6 +103,8 @@ typedef struct
   int cmd;                     /* command code */
   struct rbuf rbuf;            /* control connection buffer */
   long dltime;                 /* time of the download */
+  enum stype rs;               /* remote system reported by ftp server */ 
+  char *id;                    /* initial directory */
 } ccon;
 
 struct fileinfo *ftp_parse_ls PARAMS ((const char *, enum stype));