aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/congestion_control_westwood.h
blob: c6fd596df4549f5473da359e01f025f3aef1e93d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* Copyright (c) 2019-2021, The Tor Project, Inc. */
/* See LICENSE for licensing information */

/**
 * \file congestion_control_westwood.h
 * \brief Private-ish APIs for the TOR_WESTWOOD congestion control algorithm
 **/

#ifndef TOR_CONGESTION_CONTROL_WESTWOOD_H
#define TOR_CONGESTION_CONTROL_WESTWOOD_H

#include "core/or/crypt_path_st.h"
#include "core/or/circuit_st.h"

/* Processing SENDME cell. */
int congestion_control_westwood_process_sendme(struct congestion_control_t *cc,
                                               const circuit_t *circ,
                                               const crypt_path_t *layer_hint);
void congestion_control_westwood_set_params(struct congestion_control_t *cc);

/* Private section starts. */
#ifdef TOR_CONGESTION_CONTROL_WESTWOOD_PRIVATE

/*
 * Unit tests declaractions.
 */
#ifdef TOR_UNIT_TESTS

#endif /* defined(TOR_UNIT_TESTS) */

#endif /* defined(TOR_CONGESTION_CONTROL_WESTWOOD_PRIVATE) */

#endif /* !defined(TOR_CONGESTION_CONTROL_WESTWOOD_H) */