dircollate.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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-2016, 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, int consensus_method);
  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 ddmap_entry_s;
  24. typedef HT_HEAD(double_digest_map, ddmap_entry_s) double_digest_map_t;
  25. struct dircollator_s {
  26. /**DOCDOC */
  27. int is_collated;
  28. int n_votes;
  29. int n_authorities;
  30. int next_vote_num;
  31. digestmap_t *by_rsa_sha1;
  32. struct double_digest_map by_both_ids;
  33. digestmap_t *by_collated_rsa_sha1;
  34. smartlist_t *all_rsa_sha1_lst;
  35. };
  36. #endif
  37. #endif