tor_main.c 920 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* Copyright 2001-2004 Roger Dingledine.
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2016, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. extern const char tor_git_revision[];
  6. /** String describing which Tor Git repository version the source was
  7. * built from. This string is generated by a bit of shell kludging in
  8. * src/or/include.am, and is usually right.
  9. */
  10. const char tor_git_revision[] =
  11. #ifndef _MSC_VER
  12. #include "micro-revision.i"
  13. #endif
  14. "";
  15. /**
  16. * \file tor_main.c
  17. * \brief Stub module containing a main() function. Allows unit
  18. * test binary to link against main.c.
  19. **/
  20. int tor_main(int argc, char *argv[]);
  21. /** We keep main() in a separate file so that our unit tests can use
  22. * functions from main.c)
  23. */
  24. int
  25. main(int argc, char *argv[])
  26. {
  27. int r = tor_main(argc, argv);
  28. if (r < 0 || r > 255)
  29. return 1;
  30. else
  31. return r;
  32. }