From e6b85158f077a85bf2c0be644f2b44adf261d91b Mon Sep 17 00:00:00 2001 From: thorkill Date: Sun, 8 May 2016 16:12:41 +0200 Subject: [PATCH] Added symbols necessary to link with logger.o --- src/sptps_speed.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/sptps_speed.c b/src/sptps_speed.c index ef4103e7..8403f697 100644 --- a/src/sptps_speed.c +++ b/src/sptps_speed.c @@ -28,6 +28,14 @@ #include "ecdsagen.h" #include "sptps.h" +// Symbols necessary to link with logger.o +bool send_request(void *c, const char *msg, ...) { return false; } +struct list_t *connection_list = NULL; +bool send_meta(void *c, const char *msg , int len) { return false; } +char *logfilename = NULL; +bool do_detach = false; +struct timeval now; + static bool send_data(void *handle, uint8_t type, const void *data, size_t len) { int fd = *(int *)handle; UNUSED(type);