in reply to Re^2: net::ssh2 connection
in thread net::ssh2 connection
I was thinking that perhaps, for windows line endings, that needs to be:while (!feof(fd) && (c = fgetc(fd)) != '\r' && c != '\n') pubkey_len++;
I guess you could check that by storing the keys in files with nix line endings, and see if that makes any difference. Other than that, it might be useful to find out what dispatch_protocol_error: type 90 seq 5 actually means. (Or it might not :-)while (!feof(fd) && (c = fgetc(fd)) != '\r' && c != '\n' && c != 10) pubkey_len++;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: net::ssh2 connection
by Anonymous Monk on Nov 04, 2008 at 11:13 UTC | |
by Anonymous Monk on Nov 04, 2008 at 17:00 UTC | |
by syphilis (Archbishop) on Nov 04, 2008 at 17:47 UTC |