diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-08-12 00:19:10 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-08-12 00:19:36 +0900 |
| commit | 561924db750cbb4e4c183f9616472ed9a5b0fc7f (patch) | |
| tree | 13d27f8c4d3a0fca8cfd447ea32befa9aa358228 /crates/shirabe-ca-bundle | |
| parent | daa1acf091627f4f1af63ad44eee988048fa4136 (diff) | |
| download | php-shirabe-561924db750cbb4e4c183f9616472ed9a5b0fc7f.tar.gz php-shirabe-561924db750cbb4e4c183f9616472ed9a5b0fc7f.tar.zst php-shirabe-561924db750cbb4e4c183f9616472ed9a5b0fc7f.zip | |
docs(todo): retag TODO markers by root cause
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe-ca-bundle')
| -rw-r--r-- | crates/shirabe-ca-bundle/src/ca_bundle.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/shirabe-ca-bundle/src/ca_bundle.rs b/crates/shirabe-ca-bundle/src/ca_bundle.rs index 3c372cb1..b8e4c391 100644 --- a/crates/shirabe-ca-bundle/src/ca_bundle.rs +++ b/crates/shirabe-ca-bundle/src/ca_bundle.rs @@ -5,7 +5,7 @@ pub struct CaBundle; impl CaBundle { // TODO(plugin): unused for now; kept for API parity. - // TODO(phase-c): The original inspects the linked OpenSSL version to decide + // TODO(http): The original inspects the linked OpenSSL version to decide // whether openssl_x509_parse can be called safely. Certificate handling is // slated to move to reqwest, so this dummy always reports safe. pub fn is_openssl_parse_safe() -> bool { @@ -16,7 +16,7 @@ impl CaBundle { // `()` placeholder: CaBundle is expected to be subsumed by a Rust TLS // library and removed, so it does not need a real logger. // - // TODO(phase-c): Dummy stand-in until HTTP handling moves to reqwest, which + // TODO(http): Dummy stand-in until HTTP handling moves to reqwest, which // discovers the system CA bundle itself. This probes the SSL_CERT_FILE / // SSL_CERT_DIR environment variables and the common distribution CA // locations, returning the first that exists. Unlike the original it does @@ -65,7 +65,7 @@ impl CaBundle { String::new() } - // TODO(phase-c): Dummy stand-in until reqwest validates certificates itself. + // TODO(http): Dummy stand-in until reqwest validates certificates itself. // The original parses the file with OpenSSL and rejects malformed or expired // bundles; here we only require the file to exist and be non-empty. pub fn validate_ca_file(ca_file: &str, _logger: ()) -> bool { |
