mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
MINOR: htx: Move the macro IS_HTX_STRM() in proto/stream.h
The macro IS_HTX_STRM() only relies on stream flags. So move it in proto/stream.h.
This commit is contained in:
parent
429b91d308
commit
c8b246f108
2 changed files with 2 additions and 2 deletions
|
|
@ -29,8 +29,6 @@
|
|||
#include <proto/channel.h>
|
||||
#include <proto/stream.h>
|
||||
|
||||
#define IS_HTX_STRM(strm) ((strm)->flags & SF_HTX)
|
||||
|
||||
extern struct pool_head *pool_head_uniqueid;
|
||||
|
||||
int process_cli(struct stream *s);
|
||||
|
|
|
|||
|
|
@ -31,6 +31,8 @@
|
|||
#include <proto/stick_table.h>
|
||||
#include <proto/task.h>
|
||||
|
||||
#define IS_HTX_STRM(strm) ((strm)->flags & SF_HTX)
|
||||
|
||||
extern struct pool_head *pool_head_stream;
|
||||
extern struct list streams;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue