blob: 0cd9a072266133f50f1d494b1a46aaca97906ea2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* Copyright (c) 2010, The Tor Project, Inc. */
/* See LICENSE for licensing information */
/**
* \file status.c
* \brief Keep status information and log the heartbeat messages.
**/
#include "or.h"
/****************************************************************************/
#define BEAT(x) log_fn(LOG_NOTICE, LD_HEARTBEAT, (x) )
void
log_heartbeat(time_t now) {
or_options_t *opt = get_options();
(void) now;
log_fn(LOG_NOTICE, LD_HEARTBEAT, "This is the Tor heartbeat message.");
if (!server_mode(opt))
BEAT("you are a client, hahaha");
}
|