summaryrefslogtreecommitdiff
path: root/src/lib/wpad.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/wpad.c')
-rw-r--r--src/lib/wpad.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/wpad.c b/src/lib/wpad.c
index 7c18ef4..65fffad 100644
--- a/src/lib/wpad.c
+++ b/src/lib/wpad.c
@@ -18,6 +18,9 @@
******************************************************************************/
#include "misc.h"
+#include "dhcp.h"
+#include "dns.h"
+#include "slp.h"
#include "wpad.h"
struct _pxWPAD {
@@ -71,7 +74,7 @@ px_wpad_next(pxWPAD *self)
{
if (!self) return NULL;
- /* Check all the detectors for a PAC */
+ // Check all the detectors for a PAC
pxPAC *pac = NULL;
if (!(pac = px_dhcp_next(self->dhcp)))
if (!(pac = px_slp_next(self->slp)))