summaryrefslogtreecommitdiff
path: root/src/timing.c
blob: 94c9441bbbab3064155342d34b42843158a549bb (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "base.h"
#include "timing.h"

void timing_log(server *srv, connection *con, int field) {
#ifdef HAVE_GLIB_H
	if (srv->srvconf.log_timing) {
		g_get_current_time(&(con->timestamps[field]));
	}
#endif
}