From: Amos Jeffries Date: Sun, 12 Feb 2012 13:15:51 +0000 (-0700) Subject: Fix CommIO missing includes X-Git-Tag: BumpSslServerFirst.take05~12^2~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4194402defcccc990200b2960bb5ccc790ca2af7;p=thirdparty%2Fsquid.git Fix CommIO missing includes --- diff --git a/src/DiskIO/DiskThreads/CommIO.cc b/src/DiskIO/DiskThreads/CommIO.cc index dc2e70f634..0cf3a11d31 100644 --- a/src/DiskIO/DiskThreads/CommIO.cc +++ b/src/DiskIO/DiskThreads/CommIO.cc @@ -33,6 +33,7 @@ */ #include "squid.h" +#include "comm/Loops.h" #include "DiskIO/DiskThreads/CommIO.h" #include "fde.h" diff --git a/src/comm/Loops.h b/src/comm/Loops.h index 915abba73b..d3f7b4faf5 100644 --- a/src/comm/Loops.h +++ b/src/comm/Loops.h @@ -3,6 +3,9 @@ #include "comm_err_t.h" +// for PF +#include "typedefs.h" + /* Comm layer select loops API. * * These API functions must be implemented by all FD IO loops used by Squid.