dircollate.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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-2014, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file dirvote.h
  8. * \brief Header file for dirvote.c.
  9. **/
  10. #ifndef TOR_DIRCOLLATE_H
  11. #define TOR_DIRCOLLATE_H
  12. #include "testsupport.h"
  13. #include "or.h"
  14. typedef struct dircollator_s dircollator_t;
  15. dircollator_t *dircollator_new(int n_votes, int n_authorities);
  16. void dircollator_free(dircollator_t *obj);
  17. void dircollator_add_vote(dircollator_t *dc, networkstatus_t *v);
  18. void dircollator_collate(dircollator_t *dc);
  19. int dircollator_n_routers(dircollator_t *dc);
  20. vote_routerstatus_t **dircollator_get_votes_for_router(dircollator_t *dc,
  21. int idx);
  22. #ifdef DIRCOLLATE_PRIVATE
  23. struct dircollator_s {
  24. /**DOCDOC */
  25. int is_collated;
  26. int n_votes;
  27. int n_authorities;
  28. int next_vote_num;
  29. digestmap_t *by_rsa_sha1;
  30. smartlist_t *all_rsa_sha1_lst;
  31. };
  32. #endif
  33. #endif