Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Make `--tls` option and have `--ssl` be an alias for it #588
Comments
@thornjad: Is this issue still relevant? I have been meaning to get back into OSS & this seemed like an easy win. :) |
Yeah, this is still outstanding, go for it! |
@thornjad: Looks like @dalgleish already beat me to it. :) |
A small pet peeve of mine is that the
--ssl
option enables TLS, not SSL. I accept that the tech world uses these related but different terms interchangeably, but I'd rather be more correct by default.To do:
--ssl
option with--tls
.a. Note that this enables "TLS/SSL" in the documentation so it doesn't confuse people.
b. The short option
-S
could stay the same, having it stand for "Secure".--ssl
option as an alias for--tls
.a. Note in the documentation that it's an alias
b. In the code, if
ssl
is specified, translate it directly into thetls
option.c. If for some reason the user specifies both options, like
--tls --no-ssl
, consider--tls
to be the authoritative option (i.e. allow thetls
option to overridessl
).