Displaying 1 result from an estimated 1 matches for "nolowport".
Did you mean:
nolowports
1999 Dec 27
0
1.2pre17: -C option to scp
...----------- next part --------------
--- scp.cscp-L Tue Dec 7 05:38:32 1999
+++ scp.c Mon Dec 27 19:29:26 1999
@@ -87,6 +87,10 @@
and passphrase queries are not allowed). */
int batchmode = 0;
+/* This is set to non-zero if the use of low ports (for rhost-RSA)
+ * should be disabled */
+int nolowports;
+
/* This is set to the cipher type string if given on the command line. */
char *cipher = NULL;
@@ -167,6 +171,8 @@
args[i++] = "-l";
args[i++] = remuser;
}
+ if (nolowports)
+ args[i++] = "-P";
args[i++] = host;
args[i++] = cmd;
args[i++] = NULL;
@...