Update copyrights to 2021, using "make update-copyright"
[tor.git] / src / feature / api / tor_api_internal.h
blob5075922676fc8ad0b5e69885aa29f5f9201a1b1a
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 */
7 /**
8 * @file tor_api_internal.h
9 * @brief Internal declarations for in-process Tor API.
10 **/
12 #ifndef TOR_API_INTERNAL_H
13 #define TOR_API_INTERNAL_H
15 #include "lib/net/nettypes.h"
17 /* The contents of this type are private; don't mess with them from outside
18 * Tor. */
19 struct tor_main_configuration_t {
20 /** As in main() */
21 int argc;
22 /** As in main(). This pointer is owned by the caller */
23 char **argv;
25 /** As argc, but describes the number of elements in argv_owned */
26 int argc_owned;
27 /** As argv, but is owned by the tor_main_configuration_t object. */
28 char **argv_owned;
30 /** Socket that Tor will use as an owning control socket. Owned. */
31 tor_socket_t owning_controller_socket;
34 #endif /* !defined(TOR_API_INTERNAL_H) */