diff options
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index cb6f01d4d..50a70c12c 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -828,6 +828,10 @@ def create_parser(): 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, help='Suppress HTTPS certificate validation') |