From 784fcdb743d0211303cc21003a62dae12253301f Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 8 Jul 2018 19:48:05 +0200 Subject: [PATCH] Fix upgradability of keepalive status across exec. --- state.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/state.proto b/state.proto index 290c0ff..19b4b99 100644 --- a/state.proto +++ b/state.proto @@ -23,8 +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; + optional bool close_after_response = 23 [default=true]; + optional bool http_11 = 24 [default=false]; }; // Corresponds to struct Stream::FragmentStart. -- 2.39.2