summaryrefslogtreecommitdiff
path: root/src/timing.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/timing.h')
-rw-r--r--src/timing.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/timing.h b/src/timing.h
deleted file mode 100644
index 7fbb2ae5..00000000
--- a/src/timing.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#ifndef _TIMING_H_
-#define _TIMING_H_
-
-#include "base.h"
-
-#define TIME_DIFF(t2, t1) \
- ((con->timestamps[t2].tv_sec - con->timestamps[t1].tv_sec) * 1000 + \
- (con->timestamps[t2].tv_usec - con->timestamps[t1].tv_usec) / 1000)
-
-LI_API void timing_log(server *srv, connection *con, int field);
-
-#endif