mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-04-01 22:48:25 +00: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
@ -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 New Issue
Block a user