php / php/php-src

Support "protocol_version" stream context option for proxy connections

未关闭
#8,832 2 条评论 1 个 reaction 已指派 0 人 在 GitHub 查看

还没有人认领这个 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.

贡献指南

打开贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

调研方向

从 PHP 的 HTTP 流包装器和代理 CONNECT 请求路径开始,将其与直接请求现有的 protocol_version 处理进行比较。验证该选项适用于代理连接,并运行 HTTPS-through-proxy 示例,确认 CONNECT 请求使用配置的 HTTP 版本。

由索引模型根据 Issue 内容生成。

评估

技术栈
c, php
领域
networking
Issue 类型
功能
难度
4/5
预计耗时
3-5 天
活跃度
停滞
描述清晰度
基本清楚
新手友好度
35/100

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。