aboutsummaryrefslogtreecommitdiff
path: root/examples/senddata.c
blob: acc1bebcda161a8a0a2ad919ff3a4e964083f6a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include <stdio.h>

#include <libssh/libssh.h>
#include "examples_common.h"

#define LIMIT 0x100000000

int main(void) {
  ssh_session session;
  ssh_channel channel;
  char buffer[1024*1024];
  int rc;
  uint64_t total=0;
  uint64_t lastshown=4096;
  session = connect_ssh("localhost", NULL, 0);
  if (session == NULL) {
    return 1;
  }

  channel = ssh_channel_new(session);;
  if (channel == NULL) {
    ssh_disconnect(session);
    return 1;
  }

  rc = ssh_channel_open_session(channel);
  if (rc < 0) {
    ssh_channel_close(channel);
    ssh_disconnect(session);
    return 1;
  }

  rc = ssh_channel_request_exec(channel, "cat > /dev/null");
  if (rc < 0) {
    ssh_channel_close(channel);
    ssh_disconnect(session);
    return 1;
  }


  while ((rc = ssh_channel_write(channel, buffer, sizeof(buffer))) > 0) {
    total += rc;
    if(total/2 >= lastshown){
      printf("written %llx\n", (long long unsigned int) total);
      lastshown=total;
    }
    if(total > LIMIT)
      break;
  }
    
  if (rc < 0) {
    printf("error : %s\n",ssh_get_error(session));
    ssh_channel_close(channel);
    ssh_disconnect(session);
    return 1;
  }

  ssh_channel_send_eof(channel);
  ssh_channel_close(channel);

  ssh_disconnect(session);

  return 0;
}