aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-php-shim/src
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-php-shim/src')
-rw-r--r--crates/shirabe-php-shim/src/curl.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/shirabe-php-shim/src/curl.rs b/crates/shirabe-php-shim/src/curl.rs
index 316e8fd..35ba391 100644
--- a/crates/shirabe-php-shim/src/curl.rs
+++ b/crates/shirabe-php-shim/src/curl.rs
@@ -75,6 +75,9 @@ pub struct CurlMultiHandle;
pub struct CurlShareHandle;
pub fn curl_version() -> Option<IndexMap<String, PhpMixed>> {
+ // Shirabe's HTTP layer is reqwest, not libcurl; no consumer needs real curl_version() data
+ // (the User-Agent reports "reqwest", RequestProxy::supports_secure_proxy is unconditionally
+ // true, and DiagnoseCommand has a phase-D TODO). Left unimplemented until a real need arises.
todo!()
}