mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-12-10 00:35:13 +01:00
Add option --legacy-server-connect (#778)
to allow HTTPS connection to servers that do not support RFC 5746 secure renegotiation Authored by: xtkoba
This commit is contained in:
parent
6c73052c0a
commit
f81c62a6a4
4 changed files with 9 additions and 0 deletions
|
|
@ -827,6 +827,10 @@ def create_parser():
|
|||
'--encoding',
|
||||
dest='encoding', metavar='ENCODING',
|
||||
help='Force the specified encoding (experimental)')
|
||||
workarounds.add_option(
|
||||
'--legacy-server-connect',
|
||||
action='store_true', dest='legacy_server_connect', default=False,
|
||||
help='Explicitly allow HTTPS connection to servers that do not support RFC 5746 secure renegotiation')
|
||||
workarounds.add_option(
|
||||
'--no-check-certificates',
|
||||
action='store_true', dest='no_check_certificate', default=False,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue