Displaying 1 result from an estimated 1 matches for "i_reget".
Did you mean:
_reset
2003 Oct 30
2
sftp client reget reput
...diff -u -r openssh-3.7.1p2/sftp-int.c openssh-3.7.1p2_sftp/sftp-int.c
--- openssh-3.7.1p2/sftp-int.c 2003-09-23 04:24:21.000000000 -0500
+++ openssh-3.7.1p2_sftp/sftp-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 },
+#en...