tor

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

conffile.h (640B)


      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 #ifndef TOR_CONFFILE_H
      8 #define TOR_CONFFILE_H
      9 
     10 /**
     11 * \file conffile.h
     12 *
     13 * \brief Header for conffile.c
     14 **/
     15 
     16 struct smartlist_t;
     17 struct config_line_t;
     18 
     19 int config_get_lines_include(const char *string, struct config_line_t **result,
     20                             int extended, int *has_include,
     21                             struct smartlist_t *opened_lst);
     22 
     23 #endif /* !defined(TOR_CONFFILE_H) */