indexing description: "Constants for server commands" status: "See note at end of class" date: "$Date$" revision: "$Revision$" class TRANSFER_COMMAND_CONSTANTS feature {NONE} -- Constants for FTP Ftp_user_command: STRING is "USER" Ftp_password_command: STRING is "PASS" Ftp_text_mode_command: STRING is "TYPE A" Ftp_binary_mode_command: STRING is "TYPE I" Ftp_port_command: STRING is "PORT" Ftp_passive_mode_command: STRING is "PASV" Ftp_retrieve_command: STRING is "RETR" Ftp_store_command: STRING is "STOR" feature {NONE} -- Constants for HTTP Http_get_command: STRING is "GET" Http_version: STRING is "HTTP/1.0" Http_end_of_command: STRING is "%R%N%R%N" end -- class TRANSFER_COMMAND_CONSTANTS --|---------------------------------------------------------------- --| EiffelNet: library of reusable components for ISE Eiffel. --| Copyright (C) 1986-2001 Interactive Software Engineering Inc. --| All rights reserved. Duplication and distribution prohibited. --| May be used only with ISE Eiffel, under terms of user license. --| Contact ISE for any other use. --| --| Interactive Software Engineering Inc. --| ISE Building --| 360 Storke Road, Goleta, CA 93117 USA --| Telephone 805-685-1006, Fax 805-685-6869 --| Electronic mail --| Customer support: http://support.eiffel.com> --| For latest info see award-winning pages: http://www.eiffel.com --|----------------------------------------------------------------