Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OpenSSL::SSL::SSLContextOpenSSL::SSL::OP_LEGACY_SERVER_CONNECTを設定する #3

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions lib/file_downloader/service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
require 'net/http'
require 'logger'

# OpenSSL 3.x の制約を回避するために `OpenSSL::SSL::SSLContext` に `OpenSSL::SSL::OP_LEGACY_SERVER_CONNECT` を設定する。
# OpenSSL 3.x では「レガシーな TLS 再ネゴシエーション」がデフォルトで無効化されているため、これを有効化することで古い TLS 設定のサーバーとも通信できるようにする。
OpenSSL::SSL::SSLContext::DEFAULT_PARAMS[:options] |= OpenSSL::SSL::OP_LEGACY_SERVER_CONNECT

module FileDownloader
class NoResponseBodyError < StandardError; end
class NotEofError < StandardError; end
Expand Down