Differences
This shows you the differences between the selected revisions of the page.
| 2023-07-23 | 2023-07-24 | ||
| no summary (152.166.50.251) (hidden) (untrusted) | Restored revision 1683018051. Undoing revisions 1690137568, 1690137715, 1690142784, 1690143185. (martin) (hidden) | ||
| Line 212: | Line 212: | ||
| In [[scripting]], you can turn off the buffer optimization using [[rawsettings#sendbuf|''SendBuf'' raw session settings]]: | In [[scripting]], you can turn off the buffer optimization using [[rawsettings#sendbuf|''SendBuf'' raw session settings]]: | ||
| <code winscp> | <code winscp> | ||
| - | open sftp://user:password@example.com/ -rawsettings SendBuf=100 | + | open sftp://user:password@example.com/ -rawsettings SendBuf=0 |
| </code> | </code> | ||
| Line 219: | Line 219: | ||
| $sessionOptions = New-Object WinSCP.SessionOptions | $sessionOptions = New-Object WinSCP.SessionOptions | ||
| ... | ... | ||
| - | $sessionOptions.AddRawSettings("SendBuf", "100") | + | $sessionOptions.AddRawSettings("SendBuf", "0") |
| </code> | </code> | ||