Arnaldo Carvalho de Melo | 36729c1 | 2005-08-28 00:47:15 -0300 | [diff] [blame] | 1 | #ifndef _TFRC_H_ |
| 2 | #define _TFRC_H_ |
| 3 | /* |
| 4 | * net/dccp/ccids/lib/tfrc.h |
| 5 | * |
| 6 | * Copyright (c) 2005 The University of Waikato, Hamilton, New Zealand. |
Ian McDonald | e6bccd3 | 2006-08-26 19:01:30 -0700 | [diff] [blame] | 7 | * Copyright (c) 2005 Ian McDonald <ian.mcdonald@jandi.co.nz> |
Arnaldo Carvalho de Melo | 36729c1 | 2005-08-28 00:47:15 -0300 | [diff] [blame] | 8 | * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br> |
| 9 | * Copyright (c) 2003 Nils-Erik Mattsson, Joacim Haggmark, Magnus Erixzon |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License as published by |
| 13 | * the Free Software Foundation; either version 2 of the License, or |
| 14 | * (at your option) any later version. |
| 15 | */ |
| 16 | |
| 17 | #include <linux/types.h> |
| 18 | |
| 19 | extern u32 tfrc_calc_x(u16 s, u32 R, u32 p); |
| 20 | extern u32 tfrc_calc_x_reverse_lookup(u32 fvalue); |
| 21 | |
| 22 | #endif /* _TFRC_H_ */ |