blob: 35b56b3988ea2278d29740d297640ce90a41c964 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* Copyright (c) 2003-2004, Roger Dingledine
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
* Copyright (c) 2007-2021, The Tor Project, Inc. */
/* See LICENSE for licensing information */
/**
* \file daemon.h
* \brief Header for daemon.c
**/
#ifndef TOR_DAEMON_H
#define TOR_DAEMON_H
#include <stdbool.h>
int start_daemon(void);
int finish_daemon(const char *desired_cwd);
bool start_daemon_has_been_called(void);
#endif /* !defined(TOR_DAEMON_H) */
|