mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 21:53:48 +01:00
19 lines
384 B
C
19 lines
384 B
C
/* Copyright (c) 2010-2017, 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 /* !defined(TOR_STATUS_H) */
|
|
|