blob: 9b64280fab6570148fafdf0fd8d20ae9389c9915 [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
Holger Hans Peter Freytherbc1626e2013-10-30 19:50:49 +010032 int update(uint32_t old_tlli, uint32_t new_tlli, uint8_t ta);
Holger Hans Peter Freyther111614a2013-10-19 20:04:57 +020033 int remember(uint32_t tlli, uint8_t ta);
34 int recall(uint32_t tlli);
35 int flush();
36
37private:
38 size_t m_ta_len;
39 llist_head m_ta_list;
40};