Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions common/common-lua.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

#include <stdint.h>
#include "common-lua.hh"

#ifdef HAVE_GEOIP
Expand Down
1 change: 1 addition & 0 deletions common/dns_lookup.hh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#include <memory>
#include <mutex>
#include <atomic>
#include <stdint.h>
#include "iputils.hh"

struct GetDNSContext {
Expand Down
1 change: 1 addition & 0 deletions common/iputils.hh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
#include <sstream>
#include <boost/tuple/tuple.hpp>
#include <boost/tuple/tuple_comparison.hpp>
#include <stdint.h>

#include "namespaces.hh"

Expand Down
1 change: 1 addition & 0 deletions common/minicurl.hh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
#include <sstream>
#include <vector>
#include <memory>
#include <stdint.h>
#include <curl/curlver.h>
#if defined(LIBCURL_VERSION_NUM) && LIBCURL_VERSION_NUM >= 0x073200
/* we need this so that 'CURL' is not typedef'd to void,
Expand Down
1 change: 1 addition & 0 deletions common/misc.hh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include <cstdio>
#include <regex.h>
#include <limits.h>
#include <stdint.h>
#include <boost/algorithm/string.hpp>
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/ordered_index.hpp>
Expand Down
1 change: 1 addition & 0 deletions common/twmap.hh
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
#include <boost/optional.hpp>
#include <iostream>
#include <sstream>
#include <stdint.h>
#include "ext/hyperloglog.hpp"
#include "ext/count_min_sketch.hpp"
#include "iputils.hh"
Expand Down
3 changes: 2 additions & 1 deletion common/webhook.hh
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
#include <mutex>
#include <curl/curl.h>
#include <condition_variable>
#include <queue>
#include <stdint.h>
#include "json11.hpp"
#include "dolog.hh"
#include "minicurl.hh"
#include "prometheus.hh"
#include <queue>

using WHConfigMap = std::map<std::string, std::string>;
using WHEvents = std::vector<std::string>;
Expand Down
1 change: 1 addition & 0 deletions common/wforce-geoip.hh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include <GeoIP.h>
#include <GeoIPCity.h>
#endif
#include <stdint.h>
#include "lock.hh"
#include "iputils.hh"

Expand Down
1 change: 1 addition & 0 deletions common/wforce-geoip2.hh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include <string>
#include <mutex>
#include <vector>
#include <stdint.h>
#include "lock.hh"
#include "iputils.hh"
#include "wforce-geoip.hh"
Expand Down
1 change: 1 addition & 0 deletions ext/ext/hyperloglog.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
#include <sstream>
#include <stdexcept>
#include <algorithm>
#include <stdint.h>
#include "murmur3.h"

#define HLL_HASH_SEED 313
Expand Down
1 change: 1 addition & 0 deletions ext/json11/json11.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
#include <cstdio>
#include <limits>
#include <string>
#include <stdint.h>

namespace json11 {

Expand Down
1 change: 1 addition & 0 deletions trackalert/trackalert.hh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#include <atomic>
#include <mutex>
#include <thread>
#include <stdint.h>
#include "sholder.hh"
#include "sstuff.hh"
#include "webhook.hh"
Expand Down
1 change: 1 addition & 0 deletions wforce/wforce-replication.cc
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#include "json11.hpp"
#include <unistd.h>
#include <sys/stat.h>
#include <stdint.h>
#include "sodcrypto.hh"
#include "perf-stats.hh"
#include "lock.hh"
Expand Down
1 change: 1 addition & 0 deletions wforce/wforce-sibling.cc
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include "wforce_exception.hh"
#include "wforce_ns.hh"
#include <stddef.h>
#include <stdint.h>
#include <netdb.h>

#define SYSLOG_NAMES
Expand Down
1 change: 1 addition & 0 deletions wforce/wforce.hh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#include <boost/circular_buffer.hpp>
#include <mutex>
#include <thread>
#include <stdint.h>
#include "sholder.hh"
#include "sstuff.hh"
#include "replication.hh"
Expand Down
Loading