Support "protocol_version" stream context option for proxy connections
未关闭
还没有人认领这个 Issue。
Category: Streams
Feature
Status: Verified
- 主要语言
- C
- 星标
- 40.4k
- 派生
- 8.1k
- 平均合并
- 2 天 13 小时
- 30 天内合并 PR
- 96
描述
Description
Hello. We have protocol_version option for talking with remote host using specified HTTP protocol version. However, HTTP connection to proxy always goes with HTTP/1.0 which upsets my proxy server.
Example:
<?php
$ctx = stream_context_create(
['http' => ['proxy' => 'tcp://corporate-proxy.example:3128']]
);
echo file_get_contents("https://getcomposer.org/versions", false, $ctx);
Result:
Warning: file_get_contents(): SSL: Connection reset by peer in a.php on line 5
Warning: file_get_contents(https://getcomposer.org/versions):
Failed to open stream: Cannot connect to HTTPS server through proxy in a.php on line 5
Actual request as seen by wireshark:
CONNECT getcomposer.org:443 HTTP/1.0
HTTP/1.1 426 Upgrade Required
date: Mon, 20 Jun 2022 10:23:30 GMT
server: envoy
connection: close
content-length: 0
My proxy server supports only HTTP/1.1. So it's would be very handy to have an option for configuring http protocol version for proxy connections.
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从 PHP 的 HTTP 流包装器和代理 CONNECT 请求路径开始,将其与直接请求现有的 protocol_version 处理进行比较。验证该选项适用于代理连接,并运行 HTTPS-through-proxy 示例,确认 CONNECT 请求使用配置的 HTTP 版本。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- c, php
- 领域
- networking
- Issue 类型
- 功能
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100