hibernate.h 1018 B

1234567891011121314151617181920212223242526272829
  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-2011, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file hibernate.h
  8. * \brief Header file for hibernate.c.
  9. **/
  10. #ifndef _TOR_HIBERNATE_H
  11. #define _TOR_HIBERNATE_H
  12. int accounting_parse_options(const or_options_t *options, int validate_only);
  13. int accounting_is_enabled(const or_options_t *options);
  14. void configure_accounting(time_t now);
  15. void accounting_run_housekeeping(time_t now);
  16. void accounting_add_bytes(size_t n_read, size_t n_written, int seconds);
  17. int accounting_record_bandwidth_usage(time_t now, or_state_t *state);
  18. void hibernate_begin_shutdown(void);
  19. int we_are_hibernating(void);
  20. void consider_hibernation(time_t now);
  21. int getinfo_helper_accounting(control_connection_t *conn,
  22. const char *question, char **answer,
  23. const char **errmsg);
  24. #endif