mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-20 00:10:41 -05:00
CONTRIB: debug: fix build related to conn_stream flags change
Commit53216e7db("MEDIUM: connections: Don't directly mess with the polling from the upper layers.") removed the CS_FL_DATA_RD_ENA and CS_FL_DATA_WR_ENA flags without updating flags.c, thus breaking the build. This patch also adds flag CL_FL_NOT_FIRST which was brought by commit08088e77c.
This commit is contained in:
parent
ffb1205a47
commit
d5016469bf
1 changed files with 1 additions and 2 deletions
|
|
@ -156,6 +156,7 @@ void show_cs_flags(unsigned int f)
|
|||
printf("0\n");
|
||||
return;
|
||||
}
|
||||
SHOW_FLAG(f, CS_FL_NOT_FIRST);
|
||||
SHOW_FLAG(f, CS_FL_WAIT_FOR_HS);
|
||||
SHOW_FLAG(f, CS_FL_REOS);
|
||||
SHOW_FLAG(f, CS_FL_EOS);
|
||||
|
|
@ -165,8 +166,6 @@ void show_cs_flags(unsigned int f)
|
|||
SHOW_FLAG(f, CS_FL_SHWN);
|
||||
SHOW_FLAG(f, CS_FL_SHRR);
|
||||
SHOW_FLAG(f, CS_FL_SHRD);
|
||||
SHOW_FLAG(f, CS_FL_DATA_WR_ENA);
|
||||
SHOW_FLAG(f, CS_FL_DATA_RD_ENA);
|
||||
|
||||
if (f) {
|
||||
printf("EXTRA(0x%08x)", f);
|
||||
|
|
|
|||
Loading…
Reference in a new issue