Skip to content

Commit 4069873

Browse files
committed
MINOR: mux-quic: add missing values for show flags
Add QCC QC_CF_WAIT_FOR_HS and QCS QC_SF_TXBUB_OOB flags to their respective show_flags to be able to decipher them via dev flags utility. These values have been added in the current dev version, thus no need to backport this patch.
1 parent 8540886 commit 4069873

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

include/haproxy/mux_quic-t.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,8 @@ static forceinline char *qcc_show_flags(char *buf, size_t len, const char *delim
232232
_(QC_CF_ERRL_DONE,
233233
_(QC_CF_CONN_FULL,
234234
_(QC_CF_APP_SHUT,
235-
_(QC_CF_ERR_CONN)))));
235+
_(QC_CF_ERR_CONN,
236+
_(QC_CF_WAIT_FOR_HS))))));
236237
/* epilogue */
237238
_(~0U);
238239
return buf;
@@ -267,13 +268,14 @@ static forceinline char *qcs_show_flags(char *buf, size_t len, const char *delim
267268
_(QC_SF_FIN_STREAM,
268269
_(QC_SF_BLK_MROOM,
269270
_(QC_SF_DETACH,
271+
_(QC_SF_TXBUB_OOB,
270272
_(QC_SF_DEM_FULL,
271273
_(QC_SF_READ_ABORTED,
272274
_(QC_SF_TO_RESET,
273275
_(QC_SF_HREQ_RECV,
274276
_(QC_SF_TO_STOP_SENDING,
275277
_(QC_SF_UNKNOWN_PL_LENGTH,
276-
_(QC_SF_RECV_RESET)))))))))));
278+
_(QC_SF_RECV_RESET))))))))))));
277279
/* epilogue */
278280
_(~0U);
279281
return buf;

0 commit comments

Comments
 (0)