describe.h 696 B

12345678910111213141516171819202122232425
  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-2018, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file describe.h
  8. * \brief Header file for describe.c.
  9. **/
  10. #ifndef TOR_DESCRIBE_H
  11. #define TOR_DESCRIBE_H
  12. struct extend_info_t;
  13. struct node_t;
  14. struct routerinfo_t;
  15. struct routerstatus_t;
  16. const char *extend_info_describe(const struct extend_info_t *ei);
  17. const char *node_describe(const struct node_t *node);
  18. const char *router_describe(const struct routerinfo_t *ri);
  19. const char *routerstatus_describe(const struct routerstatus_t *ri);
  20. #endif