Janitor.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* vim: set expandtab ts=4 sw=4: */
  2. /*
  3. * You may redistribute this program and/or modify it under the terms of
  4. * the GNU General Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #ifndef Janitor_H
  16. #define Janitor_H
  17. #include "crypto/random/Random.h"
  18. #include "dht/Address.h"
  19. #include "dht/dhtcore/RouterModule.h"
  20. #include "dht/dhtcore/SearchRunner.h"
  21. #include "dht/dhtcore/NodeStore.h"
  22. #include "dht/dhtcore/RumorMill.h"
  23. #include "memory/Allocator.h"
  24. #include "util/events/EventBase.h"
  25. #include "util/log/Log.h"
  26. #include "util/Linker.h"
  27. Linker_require("dht/dhtcore/Janitor.c")
  28. #include <stdint.h>
  29. struct Janitor;
  30. struct Janitor* Janitor_new(uint64_t localMaintainenceMilliseconds,
  31. uint64_t globalMaintainenceMilliseconds,
  32. struct RouterModule* routerModule,
  33. struct NodeStore* nodeStore,
  34. struct SearchRunner* searchRunner,
  35. struct RumorMill* rumorMill,
  36. struct Log* logger,
  37. struct Allocator* alloc,
  38. struct EventBase* eventBase,
  39. struct Random* rand);
  40. #endif