summaryrefslogtreecommitdiffstats
path: root/runtime/stpd/librelay.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/stpd/librelay.h')
-rw-r--r--runtime/stpd/librelay.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/runtime/stpd/librelay.h b/runtime/stpd/librelay.h
deleted file mode 100644
index 15ef6c40..00000000
--- a/runtime/stpd/librelay.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-#include <ctype.h>
-#include <unistd.h>
-#include <dirent.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
-#include <string.h>
-#include <stdint.h>
-
-#include "../transport/transport_msgs.h"
-
-#ifdef DEBUG
-#define dbug(args...) {fprintf(stderr,"%s:%d ",__FUNCTION__, __LINE__); fprintf(stderr,args); }
-#else
-#define dbug(args...) ;
-#endif /* DEBUG */
-
-/*
- * functions
- */
-int init_stp(int print_summary);
-int stp_main_loop(void);
-int send_request(int type, void *data, int len);
-void cleanup_and_exit (int);
-int do_module(void *);
-void do_kernel_symbols(void);
-
-/*
- * variables
- */
-extern int control_channel;