You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2007/10/03 00:56:17 UTC

svn commit: r581425 - in /httpd/mod_ftp/trunk/include: ftp_protocol.h mod_ftp.h

Author: wrowe
Date: Tue Oct  2 15:56:16 2007
New Revision: 581425

URL: http://svn.apache.org/viewvc?rev=581425&view=rev
Log:
Two new EPSV/EPRT response codes.

Modified:
    httpd/mod_ftp/trunk/include/ftp_protocol.h
    httpd/mod_ftp/trunk/include/mod_ftp.h

Modified: httpd/mod_ftp/trunk/include/ftp_protocol.h
URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/include/ftp_protocol.h?rev=581425&r1=581424&r2=581425&view=diff
==============================================================================
--- httpd/mod_ftp/trunk/include/ftp_protocol.h (original)
+++ httpd/mod_ftp/trunk/include/ftp_protocol.h Tue Oct  2 15:56:16 2007
@@ -5,15 +5,15 @@
  * Do not edit manually; but delete the file and do
  * another gmake (or a make ftp_protocol.h)
  *
- * Generated from .. on 
- * Tue Jun 27 11:25:21 2006
+ * Generated from ../.. on 
+ * Tue May 15 22:04:13 2007
  */
 
 
-#define WWW_MIB_TOTAL_FTP_RESPONSES 42
+#define WWW_MIB_TOTAL_FTP_RESPONSES 44
 
 const int ftp_response_types[] = {
-    110, 120, 125, 150, 200, 202, 211, 212, 213, 214, 215, 220, 221, 225, 226, 227, 230, 232, 234, 250, 257, 331, 332, 350, 421, 425, 426, 450, 451, 452, 500, 501, 502, 503, 504, 530, 532, 536, 550, 551, 552, 553, 0 }; 
+    110, 120, 125, 150, 200, 202, 211, 212, 213, 214, 215, 220, 221, 225, 226, 227, 229, 230, 232, 234, 250, 257, 331, 332, 350, 421, 425, 426, 450, 451, 452, 500, 501, 502, 503, 504, 522, 530, 532, 536, 550, 551, 552, 553, 0 }; 
 
 #define WWW_MIB_TOTAL_FTP_REQUESTS 48
 

Modified: httpd/mod_ftp/trunk/include/mod_ftp.h
URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/include/mod_ftp.h?rev=581425&r1=581424&r2=581425&view=diff
==============================================================================
--- httpd/mod_ftp/trunk/include/mod_ftp.h (original)
+++ httpd/mod_ftp/trunk/include/mod_ftp.h Tue Oct  2 15:56:16 2007
@@ -83,6 +83,7 @@
 #define FTP_REPLY_DATA_OPEN               225
 #define FTP_REPLY_DATA_CLOSE              226
 #define FTP_REPLY_PASSIVE_MODE            227
+#define FTP_REPLY_EXTENDED_PASSIVE_MODE   229
 #define FTP_REPLY_USER_LOGGED_IN          230
 #define FTP_REPLY_USER_LOGGED_IN_SECURE   232
 #define FTP_REPLY_SECURITY_EXCHANGE_DONE  234
@@ -102,6 +103,7 @@
 #define FTP_REPLY_COMMAND_NOT_IMPLEMENTED 502
 #define FTP_REPLY_BAD_SEQUENCE            503
 #define FTP_REPLY_COMMAND_NOT_IMPL_PARAM  504
+#define FTP_REPLY_BAD_PROTOCOL            522
 #define FTP_REPLY_NOT_LOGGED_IN           530
 #define FTP_REPLY_NEED_ACCOUNT_TO_STORE   532
 #define FTP_REPLY_PROT_NOT_SUPPORTED      536