Lines Matching refs:data

435  my($loc,$len,$buf,$resp,$data);
452 $data = $ftp->retr($remote) or
466 $data->abort;
474 $data->abort;
490 last unless $len = $data->read($buf,$blksize);
506 $data->abort;
524 unless ($data->close()) # implied $ftp->response
716 my $size = -f $local && -s _; # no ALLO if sending data from a pipe
931 my $data = undef;
944 $data = $pkg->new(PeerAddr => join(".",@port[0..3]),
952 $data = ${*$ftp}{'net_ftp_listen'}->accept($pkg);
956 if($data)
958 ${*$data} = "";
959 $data->timeout($ftp->timeout);
960 ${*$ftp}{'net_ftp_dataconn'} = $data;
961 ${*$data}{'net_ftp_cmd'} = $ftp;
962 ${*$data}{'net_ftp_blksize'} = ${*$ftp}{'net_ftp_blksize'};
965 $data;
976 my $data = $ftp->_data_cmd($cmd,@_);
979 unless(defined $data);
982 bless $data, "Net::FTP::A"; # Force ASCII mode
988 while($data->read($databuf,$blksize)) {
994 $data->close();
1022 my $data = undef;
1031 $data = $ftp->_dataconn();
1035 $data->reading
1036 if $data && $cmd =~ /RETR|LIST|NLST/;
1037 return $data
1039 $data->_close
1040 if $data;
1066 my $data = $ftp->_dataconn();
1068 $data->reading
1069 if $data && $cmd =~ /RETR|LIST|NLST/;
1071 return $data;
1257 sometimes with data).
1273 EBCDIC format. Binary (also known as image) format sends the data as
1274 a contiguous bit stream. Byte format transfers the data as bytes, the
1313 B<Passive> - If set to a non-zero value then all data transfers will be done
1356 to authorise the user to send data out. If both arguments are not specified
1402 Set the byte offset at which to begin the next data transfer. Net::FTP simply
1403 records this value and uses it when during the next data transfer. For this
1405 a subsequent data transfer to fail.
1432 you are transfering data from a socket, named pipe, or other stream not
1551 method after the data connection has been closed.
1555 Tell the server that we want to append some data to the end of a file
1560 If for some reason you want to have complete control over the data connection,
1565 can return a data connection. They have no effect on methods C<get>, C<put>,
1566 C<put_unique> and those that do not require data connections.
1608 Abort the current data transfer.
1631 data connections. Misuse of this method can hang the connection.
1647 Read C<SIZE> bytes of data from the server and place it into C<BUFFER>, also
1655 Write C<SIZE> bytes of data from C<BUFFER> to the server, also
1667 Abort the current data transfer.
1671 Close the data connection and get a response from the FTP server. Returns