denyhosts/nginx.h

21 lines
342 B
C
Raw Permalink Normal View History

2024-05-21 09:08:14 +08:00
#ifndef NGINX_H
#define NGINX_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/inotify.h>
#include <errno.h>
#include <fcntl.h>
2024-05-21 15:28:20 +08:00
#include "rhost.h"
2024-05-27 16:05:31 +08:00
#include "common.h"
2024-05-21 15:28:20 +08:00
#include "libiptc.h"
#include "ip2region/ip2region.h"
2024-05-21 09:08:14 +08:00
2024-05-21 15:28:20 +08:00
extern int nginx_read_log(const char *filename, conf * conf);
2024-05-21 09:08:14 +08:00
#endif