Displaying 1 result from an estimated 1 matches for "proxy_serv".
Did you mean:
  proxy_server
  
2002 Jul 17
2
[Patch] SSH through HTTP proxy using CONNECT
...d },
+	{ "proxyserver", oProxyServer },
+	{ "proxyport", oProxyPort },
 	{ "port", oPort },
 	{ "cipher", oCipher },
 	{ "ciphers", oCiphers },
@@ -484,6 +487,14 @@
 			xfree(string);
 		return 0;
 
+	case oProxyServer:
+		charptr = &options->proxy_server;
+		goto parse_string;
+
+	case oProxyPort:
+		intptr = &options->proxy_port;
+		goto parse_int;
+
 	case oPort:
 		intptr = &options->port;
 parse_int:
@@ -765,6 +776,8 @@
 	options->hostname = NULL;
 	options->host_key_alias = NULL;
 	options->proxy_command = NULL;
+	opti...