在 nghttp2 示例中看不到 Http-Settings Header

Cannot see the Http-Settings Header in the nghttp2 example

我目前正在尝试学习 nghttp2 并尝试执行本页底部提供的客户端代码:

https://nghttp2.org/documentation/tutorial-client.html

我执行了上面的 C 代码并执行了以下操作:

./libevent-client URL

我的服务器是 Windows IIS 10.0,我想在 header 的输出中看到 http2-settings 框架。截至目前,它显示以下输出:

Connected
Request headers:
:method: GET
:scheme: https
:authority: MY URL
:path: /

Response headers from stream ID=1:
:status: 200
content-type: text/html
last-modified: Mon, 01 Jul 2019 17:57:17 GMT
accept-ranges: bytes
etag: "c7c5406c3630d51:0"
server: Microsoft-IIS/10.0
date: Mon, 08 Jul 2019 16:02:27 GMT
content-length:51
All headers received

<html><head>Hello</head><html>

我需要知道我在代码中需要什么来查看 http-settings 是否随请求一起传递。我知道以下函数会根据请求发送 SETTINGS 帧:

static void send_client_connection_header(http2_session_data *session_data) {
  nghttp2_settings_entry iv[1] = {
      {NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS, 100}};
  int rv;

  /* client 24 bytes magic string will be sent by nghttp2 library */
  rv = nghttp2_submit_settings(session_data->session, NGHTTP2_FLAG_NONE, iv,
                               ARRLEN(iv));
  if (rv != 0) {
    errx(1, "Could not submit SETTINGS: %s", nghttp2_strerror(rv));
  }
}

我也不知道我们在 http2 协议中用于 HTTP-Settings 的标签是什么,就像我们有“:method”的方法,用于方案“:scheme”等。我找不到它甚至在 RFC 中。

HTTP/2 设置框架不是 HTTP Header - 它是在连接开始时发送的单独消息。因此不可能像 HTTP Header.

那样显示它

HTTP/2 包含许多这样的 non-visible 控制帧:

  • SETTINGS 框架定义如何使用连接
  • WINDOW_UPDATE实现流量控制的框架
  • PRIORITY 帧重新确定流(以及响应)的优先级。

...等等

通常情况下,浏览器和服务器不会向用户显示这些控制消息,甚至不会在开发人员工具中显示。 Chrome 允许您使用 chrome://net-export URL 查看它们,或者您可以使用像 Wireshark 这样的网络嗅探工具来查看它们。

然而,最简单的方法之一,也是通过检查原始帧来学习 HTTP/2 的一种非常好的方法,是使用 nghttpd 工具(它是 nghttp2 套件的一部分)创建一个 HTTP/2 服务器可以在 运行 详细模式下记录发送给它的任何消息,如下所示:

nghttpd -v 443 server.key server.crt

我在我的书中更深入地讨论了如何做到这一点,您可以每天免费在线预览 5 分钟,网址为:https://livebook.manning.com/#!/book/http2-in-action/chapter-4/176

我应该说的一件事是,当通过 non-encrypted HTTP/1.1(与 HTTPS 相对)连接然后升级到 HTTP/2 时,设置将在 HTTP 中发送Header(称为 HTTP2-Settings) but this is a special case, and when this is sent the message is an HTTP/1.1 message. Additionally browsers only support HTTP/2 over HTTPS (for good reasons),我看到您也在使用 HTTPS。所以我会忽略这一点,只是为了完整起见才提到它。