fix typo
[tor.git] / src / or / circuitmux_ewma.h
bloba7b8961ac6729c4f6fac6f48759f2d4d0fc1f1f9
1 /* * Copyright (c) 2012-2016, The Tor Project, Inc. */
2 /* See LICENSE for licensing information */
4 /**
5 * \file circuitmux_ewma.h
6 * \brief Header file for circuitmux_ewma.c
7 **/
9 #ifndef TOR_CIRCUITMUX_EWMA_H
10 #define TOR_CIRCUITMUX_EWMA_H
12 #include "or.h"
13 #include "circuitmux.h"
15 extern circuitmux_policy_t ewma_policy;
17 /* Externally visible EWMA functions */
18 int cell_ewma_enabled(void);
19 unsigned int cell_ewma_get_tick(void);
20 void cell_ewma_set_scale_factor(const or_options_t *options,
21 const networkstatus_t *consensus);
23 #endif /* TOR_CIRCUITMUX_EWMA_H */