summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to 'testing')
-rw-r--r--testing/DHT_test.c4
-rw-r--r--testing/Lossless_UDP_testclient.c4
-rw-r--r--testing/Lossless_UDP_testserver.c4
-rw-r--r--testing/Messenger_test.c2
-rw-r--r--testing/crypto_speed_test.c2
-rw-r--r--testing/nTox.h2
6 files changed, 9 insertions, 9 deletions
diff --git a/testing/DHT_test.c b/testing/DHT_test.c
index 53369794..d14f9781 100644
--- a/testing/DHT_test.c
+++ b/testing/DHT_test.c
@@ -28,8 +28,8 @@
28 */ 28 */
29 29
30//#include "../core/network.h" 30//#include "../core/network.h"
31#include "../core/DHT.h" 31#include "../toxcore/DHT.h"
32#include "../core/friend_requests.h" 32#include "../toxcore/friend_requests.h"
33#include "misc_tools.h" 33#include "misc_tools.h"
34 34
35#include <string.h> 35#include <string.h>
diff --git a/testing/Lossless_UDP_testclient.c b/testing/Lossless_UDP_testclient.c
index 09e9e0a3..af349863 100644
--- a/testing/Lossless_UDP_testclient.c
+++ b/testing/Lossless_UDP_testclient.c
@@ -28,8 +28,8 @@
28 * 28 *
29 */ 29 */
30 30
31#include "../core/network.h" 31#include "../toxcore/network.h"
32#include "../core/Lossless_UDP.h" 32#include "../toxcore/Lossless_UDP.h"
33 33
34#ifdef WIN32 34#ifdef WIN32
35 35
diff --git a/testing/Lossless_UDP_testserver.c b/testing/Lossless_UDP_testserver.c
index a82b787a..5c2cabd0 100644
--- a/testing/Lossless_UDP_testserver.c
+++ b/testing/Lossless_UDP_testserver.c
@@ -28,8 +28,8 @@
28 * 28 *
29 */ 29 */
30 30
31#include "../core/network.h" 31#include "../toxcore/network.h"
32#include "../core/Lossless_UDP.h" 32#include "../toxcore/Lossless_UDP.h"
33 33
34//Sleep function (x = milliseconds) 34//Sleep function (x = milliseconds)
35#ifdef WIN32 35#ifdef WIN32
diff --git a/testing/Messenger_test.c b/testing/Messenger_test.c
index c76584d7..19fd9ab7 100644
--- a/testing/Messenger_test.c
+++ b/testing/Messenger_test.c
@@ -37,7 +37,7 @@
37 * 37 *
38 */ 38 */
39 39
40#include "../core/Messenger.h" 40#include "../toxcore/Messenger.h"
41#include "misc_tools.h" 41#include "misc_tools.h"
42 42
43#ifdef WIN32 43#ifdef WIN32
diff --git a/testing/crypto_speed_test.c b/testing/crypto_speed_test.c
index a61b30e8..b06c25e1 100644
--- a/testing/crypto_speed_test.c
+++ b/testing/crypto_speed_test.c
@@ -28,7 +28,7 @@ double get_time()
28 28
29#endif 29#endif
30 30
31#include "../core/net_crypto.h" 31#include "../toxcore/net_crypto.h"
32#include <stdlib.h> 32#include <stdlib.h>
33#include <time.h> 33#include <time.h>
34 34
diff --git a/testing/nTox.h b/testing/nTox.h
index b27a956f..df9d404a 100644
--- a/testing/nTox.h
+++ b/testing/nTox.h
@@ -35,7 +35,7 @@
35#include <arpa/inet.h> 35#include <arpa/inet.h>
36#include <sys/types.h> 36#include <sys/types.h>
37#include <netdb.h> 37#include <netdb.h>
38#include "../core/tox.h" 38#include "../toxcore/tox.h"
39 39
40#define STRING_LENGTH 256 40#define STRING_LENGTH 256
41#define HISTORY 50 41#define HISTORY 50