Displaying 1 result from an estimated 1 matches for "i_link".
Did you mean:
if_link
2009 Feb 12
2
[patch] hard link protocol extension for sftp
...===================================================================
--- 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 },
{ "lls", I_LLS },
{ "lmkdir&qu...