search for: ssh2_fxp_status

Displaying 6 results from an estimated 6 matches for "ssh2_fxp_status".

2004 May 06
2
ID mismatch
Hi, When do the sftp to remote server with file system full, sftp connection get "ID mismatch" and connection closed. Is it supposed to get the "sftp>" prompt back? I try with V3.7.1p2 and V3.8.1p1 and have the same result. Please help. rdsosl.sef_cdf-831# sftp -v edosuser at rdsosl Connecting to rdsosl... OpenSSH_3.8.1p1, OpenSSL 0.9.7d 17 Mar 2004 debug1: Reading
2017 Jun 29
2
[Bug 2733] New: sftp wildcard list missing stats if more than one match
...order by also not working. For example: when there is one match to wildcard: sftp> ls -l /var* debug3: Sending SSH2_FXP_READDIR I:3 debug3: Received reply T:104 I:3 debug3: Received 25 SSH2_FXP_NAME responses debug3: Sending SSH2_FXP_READDIR I:4 debug3: Received reply T:101 I:4 debug3: Received SSH2_FXP_STATUS 1 debug3: Sent message SSH2_FXP_CLOSE I:5 debug3: SSH2_FXP_STATUS 0 debug3: Sent message fd 3 T:7 I:6 debug3: Received stat reply T:105 I:6 debug3: Sending SSH2_FXP_READDIR I:8 debug3: Received reply T:104 I:8 debug3: Received 13 SSH2_FXP_NAME responses debug3: Sending SSH2_FXP_READDIR I:9 debug3:...
2001 Feb 22
3
Problems with sftp under SCO OpenServer
Hello, I compiled OpenSSH 2.5.1p1 for SCO OpenServer 5.0.5, HPUX B.11.00, and SunOS 5.7. When I sftp into the HP or Sun box, everything works fine. However, whenever I sftp into the OpenServer box, all remote filenames are shown as "(null)". File sizes, owners, etc. display properly. This behavior is exhibited from all origination points. OpenSSH was configured with identical
2014 Jan 24
1
Question Reagrding open SSH
...mote file: No such file or directory Uploading /cust01/dellinvs/edi_prod/push/snd/OUT100000157152.INT.sch to /home/700000035/tovan/OUT100000157152.INT.wrk debug3: Sent message SSH2_FXP_OPEN I:3 P:/home/700000035/tovan/OUT100000157152.INT.wrk debug3: Sent message SSH2_FXP_WRITE I:4 O:0 S:564 debug3: SSH2_FXP_STATUS 0 debug3: In write loop, ack for 4 564 bytes at 0 debug3: Sent message SSH2_FXP_CLOSE I:4 debug3: SSH2_FXP_STATUS 0 sftp> rename /home/700000035/tovan/OUT100000157152.INT.wrk /home/700000035/tovan/OUT100000157152.INT debug3: Sent message SSH2_FXP_RENAME "/home/700000035/tovan/OUT10000015715...
2002 Jan 03
3
[PATCH] Improving sftp client performance
...+ } buffer_clear(&msg); - get_msg(fd_in, &msg); type = buffer_get_char(&msg); id = buffer_get_int(&msg); debug3("Received reply T:%d I:%d", type, id); - if (id != expected_id) - fatal("ID mismatch (%d != %d)", id, expected_id); - if (type == SSH2_FXP_STATUS) { + reply = find_request(req, num_req, id); + + switch (type) { + case SSH2_FXP_STATUS: status = buffer_get_int(&msg); + if (status != SSH2_FX_EOF) + read_error = 1; + max_req = 0; + remove_request(req, &num_req, reply); + break; + case SSH2_FXP_DATA: + data = buffer_g...
2002 Jan 06
3
sftp/scp performance testing
Folks, I've noticed poor performance using sftp. If anyone has any advice on how to improve performance, I'd like to hear it. Test simply involved transferring a single 143MB MP3 file using defaults for all the program configs. The opensshd 3.0.2p1 server is used in all tests. Software: openssh suite 3.0.2p1 psftp (putty sftp client) latest dev snapshot pscp (putty scp client) latest