BUILD: stream-int: fix a few includes dependencies

The stream-int code doesn't need to load server.h as it doesn't use
servers at all. However removing this one reveals that proxy.h was
lacking types/checks.h that used to be silently inherited from
types/server.h loaded before in stream_interface.h.
This commit is contained in:
Willy Tarreau 2020-03-11 14:10:23 +01:00
parent 855796bdc8
commit 638698da37
2 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,6 @@
#include <stdlib.h>
#include <common/config.h>
#include <types/server.h>
#include <types/stream.h>
#include <types/stream_interface.h>
#include <proto/applet.h>

View File

@ -40,6 +40,7 @@
#include <types/acl.h>
#include <types/backend.h>
#include <types/checks.h>
#include <types/counters.h>
#include <types/filters.h>
#include <types/freq_ctr.h>