Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

debugging Net::Sftp::Foreign using ssh2

by sdetweil (Sexton)
on Dec 12, 2012 at 12:58 UTC ( [id://1008498]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
            use Net::SSH2;
    
    ...
               
            $ftp = Net::SFTP::Foreign->new(ssh2 => $ssh2,
                        backend => 'Net_SSH2');
    
  2. or download this
            $ftp = Net::SFTP::Foreign->
                 new(host => $ftpSecureServer,
                     backend => 'Net_SSH2',
                     user => $ftpUser,
                     password => $ftpPW);
    
  3. or download this
               $ftp->put( $zipFileName, $ftpDir."/" . $newname );
               if ( !$@ )
    ...
               {
               printl("file $zipFileName upload failed, try later\n");
               }
    
  4. or download this
              $ftp->put( $zipFileName, $newname );
              if ( !$error )
              {
                # etc
    
  5. or download this
    libssh2_channel_open_ex(ss->session, pv_channel_type, len_channel_type
    +, window_s
    ize, packet_size, ((void *)0) , 0 ) -> 0x47dc418
    ...
    Net::SSH2::Channel::read(size = 5, ext = 0)
    - read 5 bytes
    - read 5 total
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://1008498]
Front-paged by ww
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (None)
    As of 2024-04-19 00:10 GMT
    Sections?
    Information?
    Find Nodes?
    Leftovers?
      Voting Booth?

      No recent polls found