mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
fcdcb377a4
Because in 95 years, we or our successors will surely care about enforcing the BSD license terms on this code. Right?
19 lines
355 B
C
19 lines
355 B
C
/* Copyright (c) 2010-2014, The Tor Project, Inc. */
|
|
/* See LICENSE for licensing information */
|
|
|
|
#ifndef TOR_STATUS_H
|
|
#define TOR_STATUS_H
|
|
|
|
#include "testsupport.h"
|
|
|
|
int log_heartbeat(time_t now);
|
|
|
|
#ifdef STATUS_PRIVATE
|
|
STATIC int count_circuits(void);
|
|
STATIC char *secs_to_uptime(long secs);
|
|
STATIC char *bytes_to_usage(uint64_t bytes);
|
|
#endif
|
|
|
|
#endif
|
|
|