search for: i_help

Displaying 6 results from an estimated 6 matches for "i_help".

Did you mean: r_help
2006 Apr 01
0
sftp tab completion patch (First release - NOT FOR INCLUDING YET)
...", I_CHDIR }, - { "chdir", I_CHDIR }, - { "chgrp", I_CHGRP }, - { "chmod", I_CHMOD }, - { "chown", I_CHOWN }, - { "dir", I_LS }, - { "exit", I_QUIT }, - { "get", I_GET }, - { "mget", I_GET }, - { "help", I_HELP }, - { "lcd", I_LCHDIR }, - { "lchdir", I_LCHDIR }, - { "lls", I_LLS }, - { "lmkdir", I_LMKDIR }, - { "ln", I_SYMLINK }, - { "lpwd", I_LPWD }, - { "ls", I_LS }, - { "lumask", I_LUMASK }, - { "mkdir", I_MKDIR...
2007 Dec 12
0
Revisiting sftp tab completion patch
...", I_CHDIR }, - { "chdir", I_CHDIR }, - { "chgrp", I_CHGRP }, - { "chmod", I_CHMOD }, - { "chown", I_CHOWN }, - { "dir", I_LS }, - { "exit", I_QUIT }, - { "get", I_GET }, - { "mget", I_GET }, - { "help", I_HELP }, - { "lcd", I_LCHDIR }, - { "lchdir", I_LCHDIR }, - { "lls", I_LLS }, - { "lmkdir", I_LMKDIR }, - { "ln", I_SYMLINK }, - { "lpwd", I_LPWD }, - { "ls", I_LS }, - { "lumask", I_LUMASK }, - { "mkdir", I_MKDIR...
2009 Feb 12
2
[patch] hard link protocol extension for sftp
...*/ xfree(request); Index: ssh/sftp.c =================================================================== --- ssh.orig/sftp.c 2009-02-10 14:54:58.000000000 +0100 +++ ssh/sftp.c 2009-02-10 15:15:19.000000000 +0100 @@ -98,6 +98,7 @@ int remote_glob(struct sftp_conn *, cons #define I_GET 5 #define I_HELP 6 #define I_LCHDIR 7 +#define I_LINK 25 #define I_LLS 8 #define I_LMKDIR 9 #define I_LPWD 10 @@ -135,6 +136,7 @@ static const struct CMD cmds[] = { { "help", I_HELP }, { "lcd", I_LCHDIR }, { "lchdir", I_LCHDIR }, + { "link", I_LINK }, { "...
2002 Nov 05
0
[PATCH] Add getlink command to sftp
...I_SYMLINK 21 #define I_VERSION 22 + #define I_GETLINK 23 struct CMD { const char *c; *************** *** 91,96 **** --- 92,98 ---- { "exit", I_QUIT }, { "get", I_GET }, { "mget", I_GET }, + { "getlink", I_GETLINK }, { "help", I_HELP }, { "lcd", I_LCHDIR }, { "lchdir", I_LCHDIR }, *************** *** 126,131 **** --- 128,134 ---- printf("chown own path Change owner of file 'path' to 'own'\n"); printf("help Display this help te...
2003 Oct 01
1
3.7.1p2 sftp recurse patch
...@@ abs_dst = make_absolute(tmp, pwd); printf("Uploading %s to %s\n", g.gl_pathv[i], abs_dst); - if (do_upload(conn, g.gl_pathv[i], abs_dst, pflag) == -1) + if (do_recursive_upload(conn, g.gl_pathv[i], abs_dst, + pflag) == -1) err = -1; } @@ -881,6 +988,7 @@ case I_HELP: case I_VERSION: case I_PROGRESS: + case I_RECURSE: break; default: fatal("Command not implemented"); @@ -1093,6 +1201,13 @@ else printf("Progress meter disabled\n"); break; + case I_RECURSE: + recursion = !recursion; + if (recursion) + printf("Rec...
2003 Oct 30
2
sftp client reget reput
...t char *c; const int n; @@ -118,6 +123,10 @@ { "rmdir", I_RMDIR }, { "symlink", I_SYMLINK }, { "version", I_VERSION }, +#ifdef REGET + { "reget", I_REGET }, + { "reput", I_REPUT }, +#endif { "!", I_SHELL }, { "?", I_HELP }, { NULL, -1} @@ -134,6 +143,9 @@ printf("chown own path Change owner of file 'path' to 'own'\n"); printf("help Display this help text\n"); printf("get remote-path [local-path] Download file\n"); +#ifd...