search for: limitbw

Displaying 2 results from an estimated 2 matches for "limitbw".

Did you mean: limit
2003 May 01
8
[Bug 552] broken reference from scp.c
http://bugzilla.mindrot.org/show_bug.cgi?id=552 Summary: broken reference from scp.c Product: Portable OpenSSH Version: 3.6p1 Platform: All OS/Version: Linux Status: NEW Severity: major Priority: P2 Component: Build system AssignedTo: openssh-unix-dev at mindrot.org ReportedBy: dh at
2003 Oct 08
4
OS/390 openssh
...gt;= 0 ? EIO : errno; } +#ifdef CHARSET_EBCDIC + if (binary) { + /* Convert to EBCDIC */ + /* ssh will convert back to ASCII */ + __atoe_l(bp->buf,amt); + } +#endif if (haderr) (void) atomicio(vwrite, remout, bp->buf, amt); else { @@ -908,7 +927,13 @@ if (limitbw) bwlimit(4096); - +#ifdef CHARSET_EBCDIC + if (binary) { + /* Convert back to ASCII */ + /* ssh has converted to EBCDIC */ + __etoa_l(bp->buf,count); + } +#endif if (count == bp->cnt) { /* Keep reading so we stay sync'd up. */ if (wrerr == NO) { @@ -1072,7...