summaryrefslogtreecommitdiffstats
path: root/src/shared/log.h
diff options
context:
space:
mode:
authorSimon Rettberg2017-11-08 16:14:32 +0100
committerSimon Rettberg2017-11-08 16:14:32 +0100
commit01a2ebb9a402dc4c3f9183d457565685885f6fb9 (patch)
treeb54fd8702865fcb02abf865536734987e1b52a01 /src/shared/log.h
parent[SERVER] Add multiple config options for limiting stuff (diff)
downloaddnbd3-01a2ebb9a402dc4c3f9183d457565685885f6fb9.tar.gz
dnbd3-01a2ebb9a402dc4c3f9183d457565685885f6fb9.tar.xz
dnbd3-01a2ebb9a402dc4c3f9183d457565685885f6fb9.zip
[SERVER] rpc: Add q=logfile, q=altservers and q=config to /query
Diffstat (limited to 'src/shared/log.h')
-rw-r--r--src/shared/log.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shared/log.h b/src/shared/log.h
index ac5bb92..da34fc3 100644
--- a/src/shared/log.h
+++ b/src/shared/log.h
@@ -22,6 +22,7 @@
#define LOG_H_
#include <stdbool.h>
+#include <unistd.h>
typedef unsigned int logmask_t;
#define LOG_ERROR ((logmask_t)1) // Fatal error, server will terminate
@@ -57,6 +58,6 @@ void logadd(const logmask_t mask, const char *text, ...)
/**
* Return last size bytes of log.
*/
-bool log_fetch(char *buffer, int size);
+ssize_t log_fetch(char *buffer, int size);
#endif /* LOG_H_ */