tor_main.c
上传用户:awang829
上传日期:2019-07-14
资源大小:2356k
文件大小:1k
源码类别:

网络

开发平台:

Unix_Linux

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