You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
java.io.IOException: Illegal sftp packet len: 34025
at ch.ethz.ssh2.SFTPv3Client.receiveMessage(SFTPv3Client.java:245)
at ch.ethz.ssh2.SFTPv3Client.scanDirectory(SFTPv3Client.java:724)
at ch.ethz.ssh2.SFTPv3Client.ls(SFTPv3Client.java:927)
at com.alphait.features.integration.hrm.HrmSFTPManager.listRemoteFiles(HrmSFTPManager.java:463)
Original issue reported on code.google.com by [email protected] on 25 Aug 2014 at 7:41
The text was updated successfully, but these errors were encountered:
I also experienced this error when connecting to a GlobalScape server.
Appears to be a mismatch in MAX_PACKET_SIZE = 64 * 1024 in
main/java/ch/ethz/ssh2/transport/TransportManager.java
and hardcoded 34000 maxlen defined with all receiveMessage() calls.
my guess is either changing MAX_PACKET_SIZE = 32 * 1024 or recieveMessage(64 *
1024) will fix the issue.
Original issue reported on code.google.com by
[email protected]
on 25 Aug 2014 at 7:41The text was updated successfully, but these errors were encountered: