summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 340af42..df55b80 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,10 +1,15 @@
#define _XOPEN_SOURCE 600
#include <stdio.h>
+/* #define DC_NETREQ */
+#ifdef DC_NETREQ
FILE * netreq;
+#endif
#include <ui.c>
int main (int argc, char ** argv) {
srand(time(NULL));
+#ifdef DC_NETREQ
netreq = fopen("netreq.log", "w");
+#endif
int rs = 0;
int opt;
pthread_t api_thread, ui_thread;
@@ -67,7 +72,9 @@ int main (int argc, char ** argv) {
pthread_join(api_thread, NULL);
pthread_join(ui_thread, NULL);
rc:
+#ifdef DC_NETREQ
fclose(netreq);
+#endif
dc_client_free(c);
if (api_ret || ui_ret); /* to hide warnings */
return rs;