Displaying 14 results from an estimated 14 matches for "num_request".
Did you mean:
num_requests
2019 Aug 09
2
[Bug 3054] New: sftp -R num_requests allows num_requests+1
https://bugzilla.mindrot.org/show_bug.cgi?id=3054
Bug ID: 3054
Summary: sftp -R num_requests allows num_requests+1
Product: Portable OpenSSH
Version: 8.0p1
Hardware: All
OS: All
Status: NEW
Severity: minor
Priority: P5
Component: sftp
Assignee: unassigned-bugs at mindrot.org
Report...
2017 Sep 28
2
Call for testing: OpenSSH 7.6
On Wed, 27 Sep 2017, Martin Hecht wrote:
> all tests passed on
>
> Ubuntu 16.04.3 LTS and
> Scientific Linux release 6.9 (Carbon)
>
> On SUSE Linux Enterprise Server 11 SP3 LTSS I had to provide a local
> installation of a newer openssl. I have chosen their current LTS version
> 1.0.2l with shared library support enabled, and I had to tweak with
> CFLAGS and LDFLAGS
2007 Sep 05
1
Openssh4.6p1 Make tests failed in sftp
Hi All,
After configuring and compiling OpenSSH version 4.6p1 in my SUN Solaris8
ultrasparc machine, I run "make tests" and got the following errors. The
compiler used is GCC3.3.
run test sftp.sh ...
test basic sftp put/get: buffer_size 5 num_requests 1
sftp failed with 1
test basic sftp put/get: buffer_size 5 num_requests 2
sftp failed with 1
test basic sftp put/get: buffer_size 5 num_requests 10
sftp failed with 1
test basic sftp put/get: buffer_size 1000 num_requests 1
sftp failed with 1
test basic sftp put/get: buffer_size 1000 num_requests...
2002 Jul 17
13
Testing Call
Ok.. I'm starting official testing calls early this release. I'd like to
have more feedback and more time for handling fixes.
If people could test snapshots (http://www.openssh.org/portable.html, pick
your favorate mirror and select snapshots directory) and report failures
it would be useful.
For those with pmake install there is regress/ which you can try out. It
may help any platform
2004 Apr 13
8
OpenSSH 3.8.1p1: call for testing
Hello All.
Portable OpenSSH version 3.8.1p1 nearing release. This is primarily a
bug fix release and we're asking for interested parties to try a
snapshot [1]. A reminder: we rely on community feedback to find out
about problems, particularly as there are many platforms any
configurations that we don't have access to and can't test.
In most cases, running the built-in tests is
2007 Apr 25
2
SFTP and outstanding requests
...t the SFTP code and the filexfer RFC (and ended up
answering my prior questions). I was wondering if anyone had any
thoughts as to what might happen if the maximum number of outstanding
requests was increased.
Currently its set in sftp.c at
/* Number of concurrent outstanding requests */
size_t num_requests = 16;
2017 Sep 23
3
Call for testing: OpenSSH 7.6
> Portable OpenSSH is also available via [...] Github:
https://github.com/openssh/openssh-portable
>
> Running the regression tests supplied with Portable OpenSSH does not
require installation and is a simply:
>
> $ ./configure && make tests
I was going to try this on Kali Linux (latest version), but ran into
trouble right away. No "configure" script exists
2006 Jan 24
4
sftp performance problem, cured by TCP_NODELAY
In certain situations sftp download speed can be much less than that
of scp.
After many days of trying to find the cause finally I found it to be
the tcp nagle algorithm, which if turned off with TCP_NODELAY
eliminates the problem.
Now I see it being discussed back in 2002, but it still unresolved in
openssh-4.2 :(
Simple solution would be to add a NoDelay option to ssh which sftp
would set.
2020 May 08
79
[Bug 3162] New: Tracking bug for 8.4 release
https://bugzilla.mindrot.org/show_bug.cgi?id=3162
Bug ID: 3162
Summary: Tracking bug for 8.4 release
Product: Portable OpenSSH
Version: -current
Hardware: Other
OS: All
Status: NEW
Keywords: meta
Severity: enhancement
Priority: P5
Component: Miscellaneous
Assignee:
2002 Jul 22
9
[Patch] Improve portability of regression tests
...ATA=/bin/ls
COPY=${OBJ}/copy
+cat >`pwd`/batch <<EOF
+version
+get $DATA ${COPY}.1
+put $DATA ${COPY}.2
+EOF
+
BUFFERSIZE="5 1000 32000 64000"
REQUESTS="1 2 10"
@@ -13,12 +19,8 @@
for R in ${REQUESTS}; do
verbose "test $tid: buffer_size $B num_requests $R"
rm -f ${COPY}.1 ${COPY}.2
- ${SFTP} -P ${SFTPSERVER} -B $B -R $R -b /dev/stdin \
- > /dev/null 2>&1 << EOF
- version
- get $DATA ${COPY}.1
- put $DATA ${COPY}.2
-EOF
+ ${SFTP} -P ${SFTPSERVER} -B $B -R $R -b `pwd`/batch \
+ > /dev/null 2>&1
r=$?
i...
2006 Apr 01
0
sftp tab completion patch (First release - NOT FOR INCLUDING YET)
...;
el_source(el, NULL);
+
+ /* Tab Completion */
+ el_set(el, EL_ADDFN, "ftp-complete",
+ "Context senstive argument completion", complete);
+ el_set(el, EL_BIND, "^I", "ftp-complete", NULL);
}
conn = do_init(fd_in, fd_out, copy_buffer_len, num_requests);
2007 Dec 12
0
Revisiting sftp tab completion patch
...;
el_source(el, NULL);
+
+ /* Tab Completion */
+ el_set(el, EL_ADDFN, "ftp-complete",
+ "Context senstive argument completion", complete);
+ el_set(el, EL_BIND, "^I", "ftp-complete", NULL);
}
conn = do_init(fd_in, fd_out, copy_buffer_len, num_requests);
if (conn == NULL)
fatal("Couldn't initialise connection to server");
- pwd = do_realpath(conn, ".");
- if (pwd == NULL)
+ remote_path = do_realpath(conn, ".");
+ if (remote_path == NULL)
fatal("Need cwd");
if (file1 != NULL) {
dir =...
2003 Jun 20
0
[PATCH] Regression test portabilization.
...h
+
+cat >$SFTPCMDFILE <<EOF
+version
+get $DATA ${COPY}.1
+put $DATA ${COPY}.2
+EOF
BUFFERSIZE="5 1000 32000 64000"
REQUESTS="1 2 10"
@@ -12,18 +19,17 @@
for B in ${BUFFERSIZE}; do
for R in ${REQUESTS}; do
verbose "test $tid: buffer_size $B num_requests $R"
- rm -f ${COPY}.1 ${COPY}.2
- ${SFTP} -P ${SFTPSERVER} -B $B -R $R -b /dev/stdin \
- > /dev/null 2>&1 << EOF
- version
- get $DATA ${COPY}.1
- put $DATA ${COPY}.2
-EOF
+ rm -f ${COPY}.1 ${COPY}.2
+ ${SFTP} -P ${SFTPSERVER} -B $B -R $R -b $SFTPCMDFIL...
2020 May 05
7
Parallel transfers with sftp (call for testing / advice)
Peter Stuge wrote:
>
> Matthieu Hautreux wrote:
>> The change proposed by Cyril in sftp is a very pragmatic approach to
>> deal with parallelism at the file transfer level. It leverages the
>> already existing sftp protocol and its capability to write/read file
>> content at specified offsets. This enables to speed up sftp transfers
>> significantly by