Displaying 1 result from an estimated 1 matches for "i_recurse".
2003 Oct 01
1
3.7.1p2 sftp recurse patch
...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 },
{ "rm", I_RM },
{ "rmdir", I_RMDIR },
@@ -147,6 +15...