aboutsummaryrefslogtreecommitdiffstats
path: root/src/rlc.cpp
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-11-13 20:45:40 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-11-19 21:26:43 +0100
commit58db60c68ebf137ae2a886ec3bd1188431c84721 (patch)
tree7f7ad8e152d20fdd338e6ccf0ebeb2df8096d9ee /src/rlc.cpp
parentc3d5325fc85eba3110f229546bc2b4fe91e3e1c2 (diff)
rlc: Start to move things out of the tbf into the rlc
Add remarks of possible broken behavior inside the tbf routines. Move the preparation (and init) into the new rlc.cpp file.
Diffstat (limited to 'src/rlc.cpp')
-rw-r--r--src/rlc.cpp33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/rlc.cpp b/src/rlc.cpp
new file mode 100644
index 00000000..4319c499
--- /dev/null
+++ b/src/rlc.cpp
@@ -0,0 +1,33 @@
+/*
+ * Copyright (C) 2013 by Holger Hans Peter Freyther
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#include "tbf.h"
+
+extern "C" {
+#include <osmocom/core/utils.h>
+}
+
+
+uint8_t *gprs_rlc_data::prepare(size_t block_data_len)
+{
+ /* todo.. only set it once if it turns out to be a bottleneck */
+ memset(block, 0x0, ARRAY_SIZE(block));
+ memset(block, 0x2b, block_data_len);
+
+ return block;
+}