HomeSort by relevance Sort by last modified time
    Searched refs:cli_opts (Results 1 - 11 of 11) sorted by null

  /external/dropbear/
cli-runopts.c 33 cli_runopts cli_opts; /* GLOBAL */ variable
69 ,DROPBEAR_VERSION, cli_opts.progname);
89 cli_opts.progname = argv[0];
90 cli_opts.remotehost = NULL;
91 cli_opts.remoteport = NULL;
92 cli_opts.username = NULL;
93 cli_opts.cmd = NULL;
94 cli_opts.no_cmd = 0;
95 cli_opts.backgrounded = 0;
96 cli_opts.wantpty = 9; /* 9 means "it hasn't been touched", gets set later *
    [all...]
cli-main.c 56 TRACE(("user='%s' host='%s' port='%s'", cli_opts.username,
57 cli_opts.remotehost, cli_opts.remoteport))
63 sock = connect_remote(cli_opts.remotehost, cli_opts.remoteport,
71 len = strlen(cli_opts.remotehost);
75 cli_opts.remotehost, cli_opts.remoteport);
94 cli_opts.username, cli_opts.remotehost,
    [all...]
cli-tcpfwd.c 67 if (cli_opts.localfwds == NULL) {
68 TRACE(("cli_opts.localfwds == NULL"))
71 while (cli_opts.localfwds != NULL) {
72 ret = cli_localtcp(cli_opts.localfwds->listenport,
73 cli_opts.localfwds->connectaddr,
74 cli_opts.localfwds->connectport);
77 cli_opts.localfwds->listenport,
78 cli_opts.localfwds->connectaddr,
79 cli_opts.localfwds->connectport);
82 cli_opts.localfwds = cli_opts.localfwds->next
    [all...]
cli-authpubkey.c 45 previtem = &cli_opts.privkeys;
48 for (keyitem = cli_opts.privkeys; keyitem != NULL; keyitem = keyitem->next) {
83 for (keyitem = cli_opts.privkeys; keyitem != NULL; keyitem = keyitem->next) {
141 buf_putstring(ses.writepayload, cli_opts.username,
142 strlen(cli_opts.username));
176 if (cli_opts.privkeys != NULL) {
178 send_msg_userauth_pubkey(cli_opts.privkeys->key,
179 cli_opts.privkeys->type, 0);
180 cli_ses.lastprivkey = cli_opts.privkeys;
cli-authpasswd.c 125 cli_opts.username, cli_opts.remotehost);
135 buf_putstring(ses.writepayload, cli_opts.username,
136 strlen(cli_opts.username));
cli-session.c 216 if (cli_opts.backgrounded) {
238 if (!cli_opts.no_cmd) {
246 if (ses.chancount < 1 && !cli_opts.no_cmd) {
286 fprintf(stderr, "Connection to %s@%s:%s closed.\n", cli_opts.username,
287 cli_opts.remotehost, cli_opts.remoteport);
cli-kex.c 122 if (cli_opts.always_accept_key) {
124 cli_opts.remotehost,
130 cli_opts.remotehost,
228 hostlen = strlen(cli_opts.remotehost);
247 if (strncmp(cli_opts.remotehost, buf_getptr(line, hostlen),
287 cli_opts.remotehost,
302 if (!cli_opts.always_accept_key) {
runopts.h 121 extern cli_runopts cli_opts;
cli-chansession.c 323 if (cli_opts.cmd) {
333 if (cli_opts.cmd) {
334 buf_putstring(ses.writepayload, cli_opts.cmd, strlen(cli_opts.cmd));
355 if (cli_opts.wantpty) {
361 if (cli_opts.wantpty) {
cli-authinteract.c 146 buf_putstring(ses.writepayload, cli_opts.username,
147 strlen(cli_opts.username));
cli-auth.c 49 buf_putstring(ses.writepayload, cli_opts.username,
50 strlen(cli_opts.username));

Completed in 186 milliseconds