summaryrefslogtreecommitdiff
path: root/src/ecommon/ip.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ecommon/ip.c')
-rw-r--r--src/ecommon/ip.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/ecommon/ip.c b/src/ecommon/ip.c
deleted file mode 100644
index eb6d792..0000000
--- a/src/ecommon/ip.c
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL.
-// Copyright (c) 2014 Evol developers
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-#include "common/HPMi.h"
-#include "common/malloc.h"
-#include "common/mmo.h"
-#include "common/socket.h"
-#include "common/strlib.h"
-
-#include "ecommon/ip.h"
-
-bool checkAllowedIp(const char* const mask, const char* const ip)
-{
- char buf[1000];
-
- strcpy(buf, ",");
- strcat(buf, ip);
- strcat(buf, ",");
-
- return strstr(mask, buf) != NULL;
-}