mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-07-22 05:21:51 +03:00
examples: Reformat senddata.c
Signed-off-by: Jakub Jelen <jjelen@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
committed by
Andreas Schneider
parent
320e5154b2
commit
babd891e82
@ -5,7 +5,8 @@
|
|||||||
|
|
||||||
#define LIMIT 0x100000000UL
|
#define LIMIT 0x100000000UL
|
||||||
|
|
||||||
int main(void) {
|
int main(void)
|
||||||
|
{
|
||||||
ssh_session session;
|
ssh_session session;
|
||||||
ssh_channel channel;
|
ssh_channel channel;
|
||||||
char buffer[1024 * 1024] = {0};
|
char buffer[1024 * 1024] = {0};
|
||||||
@ -37,7 +38,6 @@ int main(void) {
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
while ((rc = ssh_channel_write(channel, buffer, sizeof(buffer))) > 0) {
|
while ((rc = ssh_channel_write(channel, buffer, sizeof(buffer))) > 0) {
|
||||||
total += rc;
|
total += rc;
|
||||||
if (total / 2 >= lastshown) {
|
if (total / 2 >= lastshown) {
|
||||||
|
Reference in New Issue
Block a user