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:
Christopher Faulet 2019-05-14 22:05:28 +02:00 committed by Willy Tarreau
parent 429b91d308
commit c8b246f108
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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;