tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

main.h (730B)


      1 /* Copyright (c) 2001 Matej Pfajfar.
      2 * Copyright (c) 2001-2004, Roger Dingledine.
      3 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
      4 * Copyright (c) 2007-2021, The Tor Project, Inc. */
      5 /* See LICENSE for licensing information */
      6 
      7 /**
      8 * \file main.h
      9 * \brief Header file for main.c.
     10 **/
     11 
     12 #ifndef TOR_MAIN_H
     13 #define TOR_MAIN_H
     14 
     15 void handle_signals(void);
     16 void activate_signal(int signal_num);
     17 
     18 int try_locking(const or_options_t *options, int err_if_locked);
     19 int have_lockfile(void);
     20 void release_lockfile(void);
     21 
     22 void tor_remove_file(const char *filename);
     23 
     24 int tor_init(int argc, char **argv);
     25 
     26 int run_tor_main_loop(void);
     27 
     28 void pubsub_install(void);
     29 void pubsub_connect(void);
     30 
     31 #endif /* !defined(TOR_MAIN_H) */