tor_api_internal.h 574 B

1234567891011121314151617181920
  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-2017, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. #ifndef TOR_API_INTERNAL_H
  7. #define TOR_API_INTERNAL_H
  8. /* The contents of this type are private; don't mess with them from outside
  9. * Tor. */
  10. struct tor_main_configuration_t {
  11. /** As in main() */
  12. int argc;
  13. /** As in main(). This pointer is owned by the caller */
  14. char **argv;
  15. };
  16. #endif /* !defined(TOR_API_INTERNAL_H) */