]> git.sesse.net Git - cubemap/commitdiff
Fix that HTTP keepalive information would get lost across exec(), which could lead...
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 8 Jul 2018 17:44:07 +0000 (19:44 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 8 Jul 2018 17:44:07 +0000 (19:44 +0200)
client.cpp
state.proto

index d7bec0986983cb438322941f636a59bd45210003..2552c6951067b4c99ebc192ad24ccb6a08fd9260 100644 (file)
@@ -59,6 +59,8 @@ Client::Client(const ClientProto &serialized, const vector<shared_ptr<const stri
          request(serialized.request()),
          url(serialized.url()),
          stream(stream),
+         close_after_response(serialized.close_after_response()),
+         http_11(serialized.http_11()),
          header_or_short_response_bytes_sent(serialized.header_or_short_response_bytes_sent()),
          stream_pos(serialized.stream_pos()),
          stream_pos_end(serialized.stream_pos_end()),
@@ -138,6 +140,8 @@ ClientProto Client::serialize(unordered_map<const string *, size_t> *short_respo
        serialized.set_bytes_sent(bytes_sent);
        serialized.set_bytes_lost(bytes_lost);
        serialized.set_num_loss_events(num_loss_events);
+       serialized.set_http_11(http_11);
+       serialized.set_close_after_response(close_after_response);
 
        if (tls_context != nullptr) {
                bool small_version = false;
index 90d86e4170f5448f794c3be910193c74f7000e9d..290c0fff14a8ffa15f8fe7589998c13d8887c6dd 100644 (file)
@@ -23,6 +23,8 @@ message ClientProto {
        optional int64 tls_output_bytes_already_consumed = 18;
        optional bool in_ktls_mode = 19;
        optional bytes x_playback_session_id = 22;
+       optional bool close_after_response = 23;
+       optional bool http_11 = 24;
 };
 
 // Corresponds to struct Stream::FragmentStart.