Moved flood control stuff to the util package.
This commit is contained in:
parent
35b055f9b7
commit
1af7e26c52
|
@ -136,7 +136,6 @@ libuhub_SOURCES := \
|
|||
src/core/commands.c \
|
||||
src/core/config.c \
|
||||
src/core/eventqueue.c \
|
||||
src/core/floodctl.c \
|
||||
src/core/hub.c \
|
||||
src/core/hubevent.c \
|
||||
src/core/hubio.c \
|
||||
|
@ -165,6 +164,7 @@ libadc_common_SOURCES := \
|
|||
libutils_SOURCES := \
|
||||
src/util/config_token.c \
|
||||
src/util/credentials.c \
|
||||
src/util/floodctl.c \
|
||||
src/util/ipcalc.c \
|
||||
src/util/list.c \
|
||||
src/util/log.c \
|
||||
|
|
|
@ -60,6 +60,7 @@ extern "C" {
|
|||
|
||||
#include "util/config_token.h"
|
||||
#include "util/credentials.h"
|
||||
#include "util/floodctl.h"
|
||||
#include "util/ipcalc.h"
|
||||
#include "util/list.h"
|
||||
#include "util/log.h"
|
||||
|
@ -76,7 +77,6 @@ extern "C" {
|
|||
|
||||
#include "core/auth.h"
|
||||
#include "core/config.h"
|
||||
#include "core/floodctl.h"
|
||||
#include "core/eventid.h"
|
||||
#include "core/eventqueue.h"
|
||||
#include "core/netevent.h"
|
||||
|
|
Loading…
Reference in New Issue