add -p in readme and usage

pull/394/head
oxis 2021-08-13 12:18:51 +01:00
parent 490b818630
commit d01445dbf4
2 changed files with 4 additions and 0 deletions

3
README
View File

@ -52,6 +52,9 @@ ProxyChains-NG ver 4.15 README
Changelog: Changelog:
---------- ----------
Version 4.16
- add -p argument to pick first proxy without using config file
Version 4.15 Version 4.15
- fix configure script for buggy binutils version - fix configure script for buggy binutils version
- initialize rand_seed with nano-second granularity - initialize rand_seed with nano-second granularity

View File

@ -27,6 +27,7 @@ static int usage(char **argv) {
printf("\nUsage:\t%s -q -f config_file program_name [arguments]\n" printf("\nUsage:\t%s -q -f config_file program_name [arguments]\n"
"\t-q makes proxychains quiet - this overrides the config setting\n" "\t-q makes proxychains quiet - this overrides the config setting\n"
"\t-f allows one to manually specify a configfile to use\n" "\t-f allows one to manually specify a configfile to use\n"
"\t-p allows to manually specify a single SOCKS5 proxy to use, IP:PORT\n"
"\tfor example : proxychains telnet somehost.com\n" "More help in README file\n\n", argv[0]); "\tfor example : proxychains telnet somehost.com\n" "More help in README file\n\n", argv[0]);
return EXIT_FAILURE; return EXIT_FAILURE;
} }