I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2006-12-26 17:08:18-08 by konrath
Could get, put, rename return the SSH2_FX_XXX code ?

Hi!


I can see that the new releases does not return the code as the stable release 0_61 of SSH2_FX_XX, like as SSH2_FX_NO_SUCH_FILE(2), SSH2_FX_PERMISSION_DENIED(3), SSH2_FX_FAILURE(4), just the error message and not more the code error of SSH2_FX.


Could the get, put and rename return the SSH2_FX_XX codes again?

Thank you very much..

Cheers

Konrath
Direct Responses: 3898 | Write a response
Posted on 2006-12-26 17:50:22-08 by salva in response to 3897
Re: Could get, put, rename return the SSH2_FX_XXX code ?
Hi,

As stated on the module documentation, to report bugs or ask for new features or help, please, mail me (the author) or use the CPAN bug tracking system.

Perlmonks is also a good place to get help.

SSH2_FX_xxx are low level protocol error codes and so, meaningless for high level methods suchs as get or put. Anyway, you can get the result for the last protocol interaction from $sftp->status

Direct Responses: Write a response