We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b7d57f commit 2cdd63bCopy full SHA for 2cdd63b
lib/tunnel.js
@@ -782,6 +782,26 @@ function addArguments_(self, fnCallback) {
782
binaryArgs.push(value);
783
}
784
break;
785
+
786
+ case 'ntlm':
787
+ if (value) {
788
+ binaryArgs.push('--ntlm');
789
+ }
790
+ break;
791
792
+ case 'ntlmusername':
793
794
+ binaryArgs.push('--ntlm-username');
795
+ binaryArgs.push(value)
796
797
798
799
+ case 'ntlmpassword':
800
801
+ binaryArgs.push('--ntlm-password');
802
803
804
805
806
807
if (binaryArgs.indexOf('--controller') === -1) {
0 commit comments