Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/rofl0r/proxychains-ng.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorrofl0r <retnyg@gmx.net>2012-11-08 01:00:03 +0400
committerrofl0r <retnyg@gmx.net>2012-11-08 01:00:03 +0400
commitc698d48c03f1ba486cdd4a44e4107acc23991e77 (patch)
tree6d37d8e2c962435dff272cafa94ff3b162056b1f /tests
parent8b19829de48724cf421143d585cecda2b027eb64 (diff)
move stringfromipv4 into common.c
Diffstat (limited to 'tests')
-rw-r--r--tests/test_gethostent.c2
-rw-r--r--tests/test_proxy_gethostbyname.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_gethostent.c b/tests/test_gethostent.c
index 855b2c2..13c3913 100644
--- a/tests/test_gethostent.c
+++ b/tests/test_gethostent.c
@@ -1,6 +1,6 @@
#include <netdb.h>
#include <stdio.h>
-#include "../src/core.h"
+#include "../src/common.h"
void printhostent(struct hostent *hp) {
char ipbuf[16];
diff --git a/tests/test_proxy_gethostbyname.c b/tests/test_proxy_gethostbyname.c
index a0902fe..c735d5c 100644
--- a/tests/test_proxy_gethostbyname.c
+++ b/tests/test_proxy_gethostbyname.c
@@ -1,4 +1,5 @@
#include "../src/core.h"
+#include "../src/common.h"
#include <stdio.h>
void printhostent(struct hostent *hp) {