mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
241c1505cc
It differs from the rest of the rephist code in that it's actually necessary for Tor to operate, so it should probably go somewhere else. I'm not sure where yet, so I'll leave it in the same directory, but give it its own file.
31 lines
1.0 KiB
C
31 lines
1.0 KiB
C
/* Copyright (c) 2001 Matej Pfajfar.
|
|
* Copyright (c) 2001-2004, Roger Dingledine.
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
|
* Copyright (c) 2007-2018, The Tor Project, Inc. */
|
|
/* See LICENSE for licensing information */
|
|
|
|
/**
|
|
* \file predict_portst.h
|
|
* \brief Header file for predict_ports.c.
|
|
**/
|
|
|
|
#ifndef TOR_PREDICT_PORTS_H
|
|
#define TOR_PREDICT_PORTS_H
|
|
|
|
void predicted_ports_init(void);
|
|
void rep_hist_note_used_port(time_t now, uint16_t port);
|
|
smartlist_t *rep_hist_get_predicted_ports(time_t now);
|
|
void rep_hist_remove_predicted_ports(const smartlist_t *rmv_ports);
|
|
void rep_hist_note_used_resolve(time_t now);
|
|
void rep_hist_note_used_internal(time_t now, int need_uptime,
|
|
int need_capacity);
|
|
int rep_hist_get_predicted_internal(time_t now, int *need_uptime,
|
|
int *need_capacity);
|
|
|
|
int any_predicted_circuits(time_t now);
|
|
int rep_hist_circbuilding_dormant(time_t now);
|
|
int predicted_ports_prediction_time_remaining(time_t now);
|
|
void predicted_ports_free_all(void);
|
|
|
|
#endif
|