Displaying 9 results from an estimated 9 matches for "i_symlink".
Did you mean:
is_symlink
2006 Apr 01
0
sftp tab completion patch (First release - NOT FOR INCLUDING YET)
...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 },
- { "progress", I_PROGRESS },
- { "put", I_PUT },
- { "mput", I_PUT },
- { "pwd", I_PWD },
- { "quit", I_QUIT },
-...
2007 Dec 12
0
Revisiting sftp tab completion patch
...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 },
- { "progress", I_PROGRESS },
- { "put", I_PUT },
- { "mput", I_PUT },
- { "pwd", I_PWD },
- { "quit", I_QUIT },
-...
2009 Feb 12
2
[patch] hard link protocol extension for sftp
...IR 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 },
{ "lls", I_LLS },
{ "lmkdir", I_LMKDIR },
{ "ln", I_SYMLINK },
@@ -198,6 +200,7 @@ help(void)
"get [-P] remote-path [local-path] Download file\n"
"help Display this help text\n"
"lcd path Change local directory to 'path'\n"
+ "link oldpa...
2002 Nov 05
0
[PATCH] Add getlink command to sftp
...is given the same name it has on
the
+ remote machine.
.It Ic help
Display help text.
.It Ic lls Op Ar ls-options Op Ar path
*** sftp-int.c@@\main\1 Tue Oct 1 17:27:02 2002
--- sftp-int.c Wed Oct 2 06:21:10 2002
***************
*** 74,79 ****
--- 74,80 ----
#define I_SHELL 20
#define 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 },...
2009 Oct 25
0
[fsc]Adding a generic path_lookup function in VFS
...p = part;
> while(*name && *name != '/')
> *p++ = *name++;
> *p = '\0';
> inode = this_fs->fs_ops->iget(part, parent); // get the inode
> if (!inode)
> goto err;
> if (inode->mode == I_SYMLINK) { // handle the SYMLINK
> file here
> if (!this_fs->fs_ops->follow_symlink ||
> --symlink_count == 0 || /* limit check
> */
> inode->size >= (uint32_t)inode->blksize)
> got...
2003 Oct 01
1
3.7.1p2 sftp recurse patch
...tp-int.c Thu Sep 25 16:56:13 2003
@@ -50,6 +50,9 @@
/* This is set to 0 if the progressmeter is not desired. */
int showprogress = 1;
+/* Recursive operations */
+int recursion = 0;
+
/* Seperators for interactive commands */
#define WHITESPACE " \t\r\n"
@@ -81,6 +84,7 @@
#define I_SYMLINK 21
#define I_VERSION 22
#define I_PROGRESS 23
+#define I_RECURSE 24
struct CMD {
const char *c;
@@ -113,6 +117,7 @@
{ "mput", I_PUT },
{ "pwd", I_PWD },
{ "quit", I_QUIT },
+ { "recurse", I_RECURSE },
{ "rename", I_RENAME },
{ "...
2009 Mar 05
3
[PATCH 0/2] ocfs2: two bug fixes about xattr and inline-data V2
Hi,
Thanks Tao and Joel's review, These are the second version of the patches.
Mark and Joel, you can correct my comments if you find they don't suitable.
thanks,
tiger
2003 Oct 30
2
sftp client reget reput
...int.c 2003-10-16 10:52:02.000000000 -0500
@@ -82,6 +82,11 @@
#define I_VERSION 22
#define I_PROGRESS 23
+#ifdef REGET
+# define I_REGET 24
+# define I_REPUT 25
+#endif
+
struct CMD {
const 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 ...
2009 Jul 27
11
[PATCH 0/8] Quota support for ocfs2-tools
Hi,
I'm sending a series of patches implementing quota support into ocfs2-tools.
It's the same as the original huge patch I've sent but now it's split as Joel
asked. I've also realized that when disabling SPARSE feature, we should update
quota information. That piece of code is missing, I'll implement it soon.
Comments welcome.
Honza