blob: 8508acbf0e9ba576f2605b9825a69c95fbc83858 [file] [log] [blame]
Holger Hans Peter Freyther111614a2013-10-19 20:04:57 +02001/*
2 * Copyright (C) 2012 Ivan Klyuchnikov
3 * Copyright (C) 2012 Andreas Eversberg <jolly@eversberg.eu>
4 * Copyright (C) 2013 by Holger Hans Peter Freyther
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20#pragma once
21
22extern "C" {
23#include <osmocom/core/linuxlist.h>
24}
25
26#include <stdint.h>
27
28class TimingAdvance {
29public:
30 TimingAdvance();
31
32 int remember(uint32_t tlli, uint8_t ta);
33 int recall(uint32_t tlli);
34 int flush();
35
36private:
37 size_t m_ta_len;
38 llist_head m_ta_list;
39};