File: exec.c

package info (click to toggle)
libssh 0.4.5-3%2Bsqueeze2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,984 kB
  • ctags: 2,355
  • sloc: ansic: 22,009; sh: 22; makefile: 20; python: 9
file content (57 lines) | stat: -rw-r--r-- 1,023 bytes parent folder | download | duplicates (2)
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
/* simple exec example */
#include <stdio.h>

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

int main(void) {
  ssh_session session;
  ssh_channel channel;
  char buf[4096];
  int rc;

  session = connect_ssh("localhost", NULL, 0);
  if (session == NULL) {
    return 1;
  }

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

  rc = channel_open_session(channel);
  if (rc < 0) {
    channel_close(channel);
    ssh_disconnect(session);
    ssh_finalize();
    return 1;
  }

  rc = channel_request_exec(channel, "ps aux");
  if (rc < 0) {
    channel_close(channel);
    ssh_disconnect(session);
    ssh_finalize();
    return 1;
  }

  do {
    if (channel_is_open(channel)) {
      rc = channel_read(channel, buf, sizeof(buf), 0);
      if(rc > 0){
        fwrite(buf,1,rc,stdout);
      }
    }
  } while(rc > 0);

  channel_send_eof(channel);
  channel_close(channel);

  ssh_disconnect(session);
  ssh_finalize();

  return 0;
}