home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _a7b93c5f34f603b3dafd6f37e20df7de < prev    next >
Text File  |  2000-03-23  |  22KB  |  482 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Net::FTP - FTP Client class</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Net::FTP - FTP Client class</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#overview">OVERVIEW</A></LI>
  26.     <LI><A HREF="#constructor">CONSTRUCTOR</A></LI>
  27.     <LI><A HREF="#methods">METHODS</A></LI>
  28.     <UL>
  29.  
  30.         <LI><A HREF="#methods for the adventurous">Methods for the adventurous</A></LI>
  31.     </UL>
  32.  
  33.     <LI><A HREF="#the dataconn class">THE dataconn CLASS</A></LI>
  34.     <LI><A HREF="#unimplemented">UNIMPLEMENTED</A></LI>
  35.     <LI><A HREF="#reporting bugs">REPORTING BUGS</A></LI>
  36.     <LI><A HREF="#author">AUTHOR</A></LI>
  37.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  38.     <LI><A HREF="#credits">CREDITS</A></LI>
  39.     <LI><A HREF="#copyright">COPYRIGHT</A></LI>
  40. </UL>
  41. <!-- INDEX END -->
  42.  
  43. <HR>
  44. <P>
  45. <H1><A NAME="name">NAME</A></H1>
  46. <P>Net::FTP - FTP Client class</P>
  47. <P>
  48. <HR>
  49. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  50. <UL>
  51. <LI>Linux</LI>
  52. <LI>Solaris</LI>
  53. <LI>Windows</LI>
  54. </UL>
  55. <HR>
  56. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  57. <PRE>
  58.     use Net::FTP;
  59. </PRE>
  60. <PRE>
  61.  
  62.     $ftp = Net::FTP->new("some.host.name");
  63.     $ftp->login("anonymous","me@here.there");
  64.     $ftp->cwd("/pub");
  65.     $ftp->get("that.file");
  66.     $ftp->quit;</PRE>
  67. <P>
  68. <HR>
  69. <H1><A NAME="description">DESCRIPTION</A></H1>
  70. <P><CODE>Net::FTP</CODE> is a class implementing a simple FTP client in Perl as
  71. described in RFC959.  It provides wrappers for a subset of the RFC959
  72. commands.</P>
  73. <P>
  74. <HR>
  75. <H1><A NAME="overview">OVERVIEW</A></H1>
  76. <P>FTP stands for File Transfer Protocol.  It is a way of transferring
  77. files between networked machines.  The protocol defines a client
  78. (whose commands are provided by this module) and a server (not
  79. implemented in this module).  Communication is always initiated by the
  80. client, and the server responds with a message and a status code (and
  81. sometimes with data).</P>
  82. <P>The FTP protocol allows files to be sent to or fetched from the
  83. server.  Each transfer involves a <STRONG>local file</STRONG> (on the client) and a
  84. <STRONG>remote file</STRONG> (on the server).  In this module, the same file name
  85. will be used for both local and remote if only one is specified.  This
  86. means that transferring remote file <CODE>/path/to/file</CODE> will try to put
  87. that file in <CODE>/path/to/file</CODE> locally, unless you specify a local file
  88. name.</P>
  89. <P>The protocol also defines several standard <STRONG>translations</STRONG> which the
  90. file can undergo during transfer.  These are ASCII, EBCDIC, binary,
  91. and byte.  ASCII is the default type, and indicates that the sender of
  92. files will translate the ends of lines to a standard representation
  93. which the receiver will then translate back into their local
  94. representation.  EBCDIC indicates the file being transferred is in
  95. EBCDIC format.  Binary (also known as image) format sends the data as
  96. a contiguous bit stream.  Byte format transfers the data as bytes, the
  97. values of which remain the same regardless of differences in byte size
  98. between the two machines (in theory - in practice you should only use
  99. this if you really know what you're doing).</P>
  100. <P>
  101. <HR>
  102. <H1><A NAME="constructor">CONSTRUCTOR</A></H1>
  103. <DL>
  104. <DT><STRONG><A NAME="item_new">new (HOST [,OPTIONS])</A></STRONG><BR>
  105. <DD>
  106. This is the constructor for a new Net::FTP object. <CODE>HOST</CODE> is the
  107. name of the remote host to which a FTP connection is required.
  108. <P><CODE>OPTIONS</CODE> are passed in a hash like fashion, using key and value pairs.
  109. Possible options are:</P>
  110. <P><STRONG>Firewall</STRONG> - The name of a machine which acts as a FTP firewall. This can be
  111. overridden by an environment variable <CODE>FTP_FIREWALL</CODE>. If specified, and the
  112. given host cannot be directly connected to, then the
  113. connection is made to the firewall machine and the string <CODE>@hostname</CODE> is
  114. appended to the login identifier. This kind of setup is also refered to
  115. as a ftp proxy.</P>
  116. <P><STRONG>Port</STRONG> - The port number to connect to on the remote machine for the
  117. FTP connection</P>
  118. <P><STRONG>Timeout</STRONG> - Set a timeout value (defaults to 120)</P>
  119. <P><STRONG>Debug</STRONG> - debug level (see the debug method in <A HREF="../../../site/lib/Net/Cmd.html">the Net::Cmd manpage</A>)</P>
  120. <P><STRONG>Passive</STRONG> - If set to a non-zero value then all data transfers will be done
  121. using passive mode. This is not usually required except for some <EM>dumb</EM>
  122. servers, and some firewall configurations. This can also be set by the
  123. environment variable <CODE>FTP_PASSIVE</CODE>.</P>
  124. <P>If the constructor fails undef will be returned and an error message will
  125. be in $@</P>
  126. <P></P></DL>
  127. <P>
  128. <HR>
  129. <H1><A NAME="methods">METHODS</A></H1>
  130. <P>Unless otherwise stated all methods return either a <EM>true</EM> or <EM>false</EM>
  131. value, with <EM>true</EM> meaning that the operation was a success. When a method
  132. states that it returns a value, failure will be returned as <EM>undef</EM> or an
  133. empty list.</P>
  134. <DL>
  135. <DT><STRONG><A NAME="item_login">login ([LOGIN [,PASSWORD [, ACCOUNT] ] ])</A></STRONG><BR>
  136. <DD>
  137. Log into the remote FTP server with the given login information. If
  138. no arguments are given then the <CODE>Net::FTP</CODE> uses the <CODE>Net::Netrc</CODE>
  139. package to lookup the login information for the connected host.
  140. If no information is found then a login of <EM>anonymous</EM> is used.
  141. If no password is given and the login is <EM>anonymous</EM> then the users
  142. Email address will be used for a password.
  143. <P>If the connection is via a firewall then the <A HREF="#item_authorize"><CODE>authorize</CODE></A> method will
  144. be called with no arguments.</P>
  145. <P></P>
  146. <DT><STRONG><A NAME="item_authorize">authorize ( [AUTH [, RESP]])</A></STRONG><BR>
  147. <DD>
  148. This is a protocol used by some firewall ftp proxies. It is used
  149. to authorise the user to send data out.  If both arguments are not specified
  150. then <A HREF="#item_authorize"><CODE>authorize</CODE></A> uses <CODE>Net::Netrc</CODE> to do a lookup.
  151. <P></P>
  152. <DT><STRONG><A NAME="item_site">site (ARGS)</A></STRONG><BR>
  153. <DD>
  154. Send a SITE command to the remote server and wait for a response.
  155. <P>Returns most significant digit of the response code.</P>
  156. <P></P>
  157. <DT><STRONG><A NAME="item_type">type (TYPE [, ARGS])</A></STRONG><BR>
  158. <DD>
  159. This method will send the TYPE command to the remote FTP server
  160. to change the type of data transfer. The return value is the previous
  161. value.
  162. <P></P>
  163. <DT><STRONG><A NAME="item_ascii">ascii ([ARGS]) <CODE>binary([ARGS])</CODE> <CODE>ebcdic([ARGS])</CODE> <CODE>byte([ARGS])</CODE></A></STRONG><BR>
  164. <DD>
  165. Synonyms for <A HREF="#item_type"><CODE>type</CODE></A> with the first arguments set correctly
  166. <P><STRONG>NOTE</STRONG> ebcdic and byte are not fully supported.</P>
  167. <P></P>
  168. <DT><STRONG><A NAME="item_rename">rename ( OLDNAME, NEWNAME )</A></STRONG><BR>
  169. <DD>
  170. Rename a file on the remote FTP server from <CODE>OLDNAME</CODE> to <CODE>NEWNAME</CODE>. This
  171. is done by sending the RNFR and RNTO commands.
  172. <P></P>
  173. <DT><STRONG><A NAME="item_delete">delete ( FILENAME )</A></STRONG><BR>
  174. <DD>
  175. Send a request to the server to delete <CODE>FILENAME</CODE>.
  176. <P></P>
  177. <DT><STRONG><A NAME="item_cwd">cwd ( [ DIR ] )</A></STRONG><BR>
  178. <DD>
  179. Attempt to change directory to the directory given in <CODE>$dir</CODE>.  If
  180. <CODE>$dir</CODE> is <CODE>".."</CODE>, the FTP <CODE>CDUP</CODE> command is used to attempt to
  181. move up one directory. If no directory is given then an attempt is made
  182. to change the directory to the root directory.
  183. <P></P>
  184. <DT><STRONG><A NAME="item_cdup">cdup ()</A></STRONG><BR>
  185. <DD>
  186. Change directory to the parent of the current directory.
  187. <P></P>
  188. <DT><STRONG><A NAME="item_pwd">pwd ()</A></STRONG><BR>
  189. <DD>
  190. Returns the full pathname of the current directory.
  191. <P></P>
  192. <DT><STRONG><A NAME="item_rmdir">rmdir ( DIR )</A></STRONG><BR>
  193. <DD>
  194. Remove the directory with the name <CODE>DIR</CODE>.
  195. <P></P>
  196. <DT><STRONG><A NAME="item_mkdir">mkdir ( DIR [, RECURSE ])</A></STRONG><BR>
  197. <DD>
  198. Create a new directory with the name <CODE>DIR</CODE>. If <CODE>RECURSE</CODE> is <EM>true</EM> then
  199. <A HREF="#item_mkdir"><CODE>mkdir</CODE></A> will attempt to create all the directories in the given path.
  200. <P>Returns the full pathname to the new directory.</P>
  201. <P></P>
  202. <DT><STRONG><A NAME="item_ls">ls ( [ DIR ] )</A></STRONG><BR>
  203. <DD>
  204. Get a directory listing of <CODE>DIR</CODE>, or the current directory.
  205. <P>In an array context, returns a list of lines returned from the server. In
  206. a scalar context, returns a reference to a list.</P>
  207. <P></P>
  208. <DT><STRONG><A NAME="item_dir">dir ( [ DIR ] )</A></STRONG><BR>
  209. <DD>
  210. Get a directory listing of <CODE>DIR</CODE>, or the current directory in long format.
  211. <P>In an array context, returns a list of lines returned from the server. In
  212. a scalar context, returns a reference to a list.</P>
  213. <P></P>
  214. <DT><STRONG><A NAME="item_get">get ( REMOTE_FILE [, LOCAL_FILE [, WHERE]] )</A></STRONG><BR>
  215. <DD>
  216. Get <CODE>REMOTE_FILE</CODE> from the server and store locally. <CODE>LOCAL_FILE</CODE> may be
  217. a filename or a filehandle. If not specified the the file will be stored in
  218. the current directory with the same leafname as the remote file.
  219. <P>If <CODE>WHERE</CODE> is given then the first <CODE>WHERE</CODE> bytes of the file will
  220. not be transfered, and the remaining bytes will be appended to
  221. the local file if it already exists.</P>
  222. <P>Returns <CODE>LOCAL_FILE</CODE>, or the generated local file name if <CODE>LOCAL_FILE</CODE>
  223. is not given.</P>
  224. <P></P>
  225. <DT><STRONG><A NAME="item_put">put ( LOCAL_FILE [, REMOTE_FILE ] )</A></STRONG><BR>
  226. <DD>
  227. Put a file on the remote server. <CODE>LOCAL_FILE</CODE> may be a name or a filehandle.
  228. If <CODE>LOCAL_FILE</CODE> is a filehandle then <CODE>REMOTE_FILE</CODE> must be specified. If
  229. <CODE>REMOTE_FILE</CODE> is not specified then the file will be stored in the current
  230. directory with the same leafname as <CODE>LOCAL_FILE</CODE>.
  231. <P>Returns <CODE>REMOTE_FILE</CODE>, or the generated remote filename if <CODE>REMOTE_FILE</CODE>
  232. is not given.</P>
  233. <P><STRONG>NOTE</STRONG>: If for some reason the transfer does not complete and an error is
  234. returned then the contents that had been transfered will not be remove
  235. automatically.</P>
  236. <P></P>
  237. <DT><STRONG><A NAME="item_put_unique">put_unique ( LOCAL_FILE [, REMOTE_FILE ] )</A></STRONG><BR>
  238. <DD>
  239. Same as put but uses the <CODE>STOU</CODE> command.
  240. <P>Returns the name of the file on the server.</P>
  241. <P></P>
  242. <DT><STRONG><A NAME="item_append">append ( LOCAL_FILE [, REMOTE_FILE ] )</A></STRONG><BR>
  243. <DD>
  244. Same as put but appends to the file on the remote server.
  245. <P>Returns <CODE>REMOTE_FILE</CODE>, or the generated remote filename if <CODE>REMOTE_FILE</CODE>
  246. is not given.</P>
  247. <P></P>
  248. <DT><STRONG><A NAME="item_unique_name">unique_name ()</A></STRONG><BR>
  249. <DD>
  250. Returns the name of the last file stored on the server using the
  251. <CODE>STOU</CODE> command.
  252. <P></P>
  253. <DT><STRONG><A NAME="item_mdtm">mdtm ( FILE )</A></STRONG><BR>
  254. <DD>
  255. Returns the <EM>modification time</EM> of the given file
  256. <P></P>
  257. <DT><STRONG><A NAME="item_size">size ( FILE )</A></STRONG><BR>
  258. <DD>
  259. Returns the size in bytes for the given file as stored on the remote server.
  260. <P><STRONG>NOTE</STRONG>: The size reported is the size of the stored file on the remote server.
  261. If the file is subsequently transfered from the server in ASCII mode
  262. and the remote server and local machine have different ideas about
  263. ``End Of Line'' then the size of file on the local machine after transfer
  264. may be different.</P>
  265. <P></P>
  266. <DT><STRONG><A NAME="item_supported">supported ( CMD )</A></STRONG><BR>
  267. <DD>
  268. Returns TRUE if the remote server supports the given command.
  269. <P></P></DL>
  270. <P>The following methods can return different results depending on
  271. how they are called. If the user explicitly calls either
  272. of the <A HREF="#item_pasv"><CODE>pasv</CODE></A> or <A HREF="#item_port"><CODE>port</CODE></A> methods then these methods will
  273. return a <EM>true</EM> or <EM>false</EM> value. If the user does not
  274. call either of these methods then the result will be a
  275. reference to a <CODE>Net::FTP::dataconn</CODE> based object.</P>
  276. <DL>
  277. <DT><STRONG><A NAME="item_nlst">nlst ( [ DIR ] )</A></STRONG><BR>
  278. <DD>
  279. Send a <CODE>NLST</CODE> command to the server, with an optional parameter.
  280. <P></P>
  281. <DT><STRONG><A NAME="item_list">list ( [ DIR ] )</A></STRONG><BR>
  282. <DD>
  283. Same as <A HREF="#item_nlst"><CODE>nlst</CODE></A> but using the <CODE>LIST</CODE> command
  284. <P></P>
  285. <DT><STRONG><A NAME="item_retr">retr ( FILE )</A></STRONG><BR>
  286. <DD>
  287. Begin the retrieval of a file called <CODE>FILE</CODE> from the remote server.
  288. <P></P>
  289. <DT><STRONG><A NAME="item_stor">stor ( FILE )</A></STRONG><BR>
  290. <DD>
  291. Tell the server that you wish to store a file. <CODE>FILE</CODE> is the
  292. name of the new file that should be created.
  293. <P></P>
  294. <DT><STRONG><A NAME="item_stou">stou ( FILE )</A></STRONG><BR>
  295. <DD>
  296. Same as <A HREF="#item_stor"><CODE>stor</CODE></A> but using the <CODE>STOU</CODE> command. The name of the unique
  297. file which was created on the server will be available via the <A HREF="#item_unique_name"><CODE>unique_name</CODE></A>
  298. method after the data connection has been closed.
  299. <P></P>
  300. <DT><STRONG><A NAME="item_appe">appe ( FILE )</A></STRONG><BR>
  301. <DD>
  302. Tell the server that we want to append some data to the end of a file
  303. called <CODE>FILE</CODE>. If this file does not exist then create it.
  304. <P></P></DL>
  305. <P>If for some reason you want to have complete control over the data connection,
  306. this includes generating it and calling the <CODE>response</CODE> method when required,
  307. then the user can use these methods to do so.</P>
  308. <P>However calling these methods only affects the use of the methods above that
  309. can return a data connection. They have no effect on methods <A HREF="#item_get"><CODE>get</CODE></A>, <A HREF="#item_put"><CODE>put</CODE></A>,
  310. <A HREF="#item_put_unique"><CODE>put_unique</CODE></A> and those that do not require data connections.</P>
  311. <DL>
  312. <DT><STRONG><A NAME="item_port">port ( [ PORT ] )</A></STRONG><BR>
  313. <DD>
  314. Send a <CODE>PORT</CODE> command to the server. If <CODE>PORT</CODE> is specified then it is sent
  315. to the server. If not the a listen socket is created and the correct information
  316. sent to the server.
  317. <P></P>
  318. <DT><STRONG><A NAME="item_pasv">pasv ()</A></STRONG><BR>
  319. <DD>
  320. Tell the server to go into passive mode. Returns the text that represents the
  321. port on which the server is listening, this text is in a suitable form to
  322. sent to another ftp server using the <A HREF="#item_port"><CODE>port</CODE></A> method.
  323. <P></P></DL>
  324. <P>The following methods can be used to transfer files between two remote
  325. servers, providing that these two servers can connect directly to each other.</P>
  326. <DL>
  327. <DT><STRONG><A NAME="item_pasv_xfer">pasv_xfer ( SRC_FILE, DEST_SERVER [, DEST_FILE ] )</A></STRONG><BR>
  328. <DD>
  329. This method will do a file transfer between two remote ftp servers. If
  330. <CODE>DEST_FILE</CODE> is omitted then the leaf name of <CODE>SRC_FILE</CODE> will be used.
  331. <P></P>
  332. <DT><STRONG><A NAME="item_pasv_xfer_unique">pasv_xfer_unique ( SRC_FILE, DEST_SERVER [, DEST_FILE ] )</A></STRONG><BR>
  333. <DD>
  334. Like <A HREF="#item_pasv_xfer"><CODE>pasv_xfer</CODE></A> but the file is stored on the remote server using
  335. the STOU command.
  336. <P></P>
  337. <DT><STRONG><A NAME="item_pasv_wait">pasv_wait ( NON_PASV_SERVER )</A></STRONG><BR>
  338. <DD>
  339. This method can be used to wait for a transfer to complete between a passive
  340. server and a non-passive server. The method should be called on the passive
  341. server with the <CODE>Net::FTP</CODE> object for the non-passive server passed as an
  342. argument.
  343. <P></P>
  344. <DT><STRONG><A NAME="item_abort">abort ()</A></STRONG><BR>
  345. <DD>
  346. Abort the current data transfer.
  347. <P></P>
  348. <DT><STRONG><A NAME="item_quit">quit ()</A></STRONG><BR>
  349. <DD>
  350. Send the QUIT command to the remote FTP server and close the socket connection.
  351. <P></P></DL>
  352. <P>
  353. <H2><A NAME="methods for the adventurous">Methods for the adventurous</A></H2>
  354. <P><CODE>Net::FTP</CODE> inherits from <CODE>Net::Cmd</CODE> so methods defined in <CODE>Net::Cmd</CODE> may
  355. be used to send commands to the remote FTP server.</P>
  356. <DL>
  357. <DT><STRONG><A NAME="item_quot">quot (CMD [,ARGS])</A></STRONG><BR>
  358. <DD>
  359. Send a command, that Net::FTP does not directly support, to the remote
  360. server and wait for a response.
  361. <P>Returns most significant digit of the response code.</P>
  362. <P><STRONG>WARNING</STRONG> This call should only be used on commands that do not require
  363. data connections. Misuse of this method can hang the connection.</P>
  364. <P></P></DL>
  365. <P>
  366. <HR>
  367. <H1><A NAME="the dataconn class">THE dataconn CLASS</A></H1>
  368. <P>Some of the methods defined in <CODE>Net::FTP</CODE> return an object which will
  369. be derived from this class.The dataconn class itself is derived from
  370. the <CODE>IO::Socket::INET</CODE> class, so any normal IO operations can be performed.
  371. However the following methods are defined in the dataconn class and IO should
  372. be performed using these.</P>
  373. <DL>
  374. <DT><STRONG><A NAME="item_read">read ( BUFFER, SIZE [, TIMEOUT ] )</A></STRONG><BR>
  375. <DD>
  376. Read <CODE>SIZE</CODE> bytes of data from the server and place it into <CODE>BUFFER</CODE>, also
  377. performing any <CRLF> translation necessary. <CODE>TIMEOUT</CODE> is optional, if not
  378. given the the timeout value from the command connection will be used.
  379. <P>Returns the number of bytes read before any <CRLF> translation.</P>
  380. <P></P>
  381. <DT><STRONG><A NAME="item_write">write ( BUFFER, SIZE [, TIMEOUT ] )</A></STRONG><BR>
  382. <DD>
  383. Write <CODE>SIZE</CODE> bytes of data from <CODE>BUFFER</CODE> to the server, also
  384. performing any <CRLF> translation necessary. <CODE>TIMEOUT</CODE> is optional, if not
  385. given the the timeout value from the command connection will be used.
  386. <P>Returns the number of bytes written before any <CRLF> translation.</P>
  387. <P></P>
  388. <DT><STRONG>abort ()</STRONG><BR>
  389. <DD>
  390. Abort the current data transfer.
  391. <P></P>
  392. <DT><STRONG><A NAME="item_close">close ()</A></STRONG><BR>
  393. <DD>
  394. Close the data connection and get a response from the FTP server. Returns
  395. <EM>true</EM> if the connection was closed successfully and the first digit of
  396. the response from the server was a '2'.
  397. <P></P></DL>
  398. <P>
  399. <HR>
  400. <H1><A NAME="unimplemented">UNIMPLEMENTED</A></H1>
  401. <P>The following RFC959 commands have not been implemented:</P>
  402. <DL>
  403. <DT><STRONG><A NAME="item_ALLO"><STRONG>ALLO</STRONG></A></STRONG><BR>
  404. <DD>
  405. Allocates storage for the file to be transferred.
  406. <P></P>
  407. <DT><STRONG><A NAME="item_SMNT"><STRONG>SMNT</STRONG></A></STRONG><BR>
  408. <DD>
  409. Mount a different file system structure without changing login or
  410. accounting information.
  411. <P></P>
  412. <DT><STRONG><A NAME="item_HELP"><STRONG>HELP</STRONG></A></STRONG><BR>
  413. <DD>
  414. Ask the server for ``helpful information'' (that's what the RFC says) on
  415. the commands it accepts.
  416. <P></P>
  417. <DT><STRONG><A NAME="item_MODE"><STRONG>MODE</STRONG></A></STRONG><BR>
  418. <DD>
  419. Specifies transfer mode (stream, block or compressed) for file to be
  420. transferred.
  421. <P></P>
  422. <DT><STRONG><A NAME="item_SYST"><STRONG>SYST</STRONG></A></STRONG><BR>
  423. <DD>
  424. Request remote server system identification.
  425. <P></P>
  426. <DT><STRONG><A NAME="item_STAT"><STRONG>STAT</STRONG></A></STRONG><BR>
  427. <DD>
  428. Request remote server status.
  429. <P></P>
  430. <DT><STRONG><A NAME="item_STRU"><STRONG>STRU</STRONG></A></STRONG><BR>
  431. <DD>
  432. Specifies file structure for file to be transferred.
  433. <P></P>
  434. <DT><STRONG><A NAME="item_REIN"><STRONG>REIN</STRONG></A></STRONG><BR>
  435. <DD>
  436. Reinitialize the connection, flushing all I/O and account information.
  437. <P></P></DL>
  438. <P>
  439. <HR>
  440. <H1><A NAME="reporting bugs">REPORTING BUGS</A></H1>
  441. <P>When reporting bugs/problems please include as much information as possible.
  442. It may be difficult for me to reproduce the problem as almost every setup
  443. is different.</P>
  444. <P>A small script which yields the problem will probably be of help. It would
  445. also be useful if this script was run with the extra options <CODE>Debug =</CODE> 1>
  446. passed to the constructor, and the output sent with the bug report. If you
  447. cannot include a small script then please include a Debug trace from a
  448. run of your program which does yield the problem.</P>
  449. <P>
  450. <HR>
  451. <H1><A NAME="author">AUTHOR</A></H1>
  452. <P>Graham Barr <<A HREF="mailto:gbarr@pobox.com">gbarr@pobox.com</A>></P>
  453. <P>
  454. <HR>
  455. <H1><A NAME="see also">SEE ALSO</A></H1>
  456. <P><A HREF="../../../site/lib/Net/Netrc.html">the Net::Netrc manpage</A>
  457. <A HREF="../../../site/lib/Net/Cmd.html">the Net::Cmd manpage</A></P>
  458. <P>ftp(1), ftpd(8), RFC 959
  459. <A HREF="http://www.cis.ohio-state.edu/htbin/rfc/rfc959.html">http://www.cis.ohio-state.edu/htbin/rfc/rfc959.html</A></P>
  460. <P>
  461. <HR>
  462. <H1><A NAME="credits">CREDITS</A></H1>
  463. <P>Henry Gabryjelski <<A HREF="mailto:henryg@WPI.EDU">henryg@WPI.EDU</A>> - for the suggestion of creating directories
  464. recursively.</P>
  465. <P>Nathan Torkington <<A HREF="mailto:gnat@frii.com">gnat@frii.com</A>> - for some input on the documentation.</P>
  466. <P>Roderick Schertler <<A HREF="mailto:roderick@gate.net">roderick@gate.net</A>> - for various inputs</P>
  467. <P>
  468. <HR>
  469. <H1><A NAME="copyright">COPYRIGHT</A></H1>
  470. <P>Copyright (c) 1995-1998 Graham Barr. All rights reserved.
  471. This program is free software; you can redistribute it and/or modify it
  472. under the same terms as Perl itself.</P>
  473. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  474. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  475. <STRONG><P CLASS=block> Net::FTP - FTP Client class</P></STRONG>
  476. </TD></TR>
  477. </TABLE>
  478.  
  479. </BODY>
  480.  
  481. </HTML>
  482.