mirror of
http://git.haproxy.org/git/haproxy.git
synced 2026-02-05 03:53:26 +02:00
MINOR: stream-int: Remove SI_FL_SRC_ADDR to rely on stream flags instead
Flag to get the source ip/port with getsockname is now handled at the stream level. Thus SI_FL_SRC_ADDR stream-int flag is replaced by SF_SRC_ADDR stream flag.
This commit is contained in:
@@ -269,7 +269,6 @@ void show_si_flags(unsigned int f)
|
||||
|
||||
SHOW_FLAG(f, SI_FL_WAIT_DATA);
|
||||
SHOW_FLAG(f, SI_FL_ISBACK);
|
||||
SHOW_FLAG(f, SI_FL_SRC_ADDR);
|
||||
SHOW_FLAG(f, SI_FL_WANT_GET);
|
||||
SHOW_FLAG(f, SI_FL_CLEAN_ABRT);
|
||||
SHOW_FLAG(f, SI_FL_RXBLK_CHAN);
|
||||
@@ -380,6 +379,7 @@ void show_strm_flags(unsigned int f)
|
||||
return;
|
||||
}
|
||||
|
||||
SHOW_FLAG(f, SF_SRC_ADDR);
|
||||
SHOW_FLAG(f, SF_WEBSOCKET);
|
||||
SHOW_FLAG(f, SF_SRV_REUSED_ANTICIPATED);
|
||||
SHOW_FLAG(f, SF_SRV_REUSED);
|
||||
|
||||
Reference in New Issue
Block a user