aboutsummaryrefslogtreecommitdiffstats
path: root/src/llc.h
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2015-06-16 10:18:42 +0200
committerJacob Erlbeck <jerlbeck@sysmocom.de>2015-06-22 10:39:06 +0200
commit1e50a3dadef7823b6f50bd387f84f324029a217d (patch)
tree1a45f77b8f629a6a984a8d58721030b7a38987c4 /src/llc.h
parent70b96aa232bd9784a94247bf7b193cb2147ada9d (diff)
llc: Make timeval arguments const
Some struct timeval pointer arguments do not have the const qualifier, albeit the methods do not write to the structures. The next commit will change related pointers to const, so this commit provides the required constness. Sponsored-by: On-Waves ehf
Diffstat (limited to 'src/llc.h')
-rw-r--r--src/llc.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/llc.h b/src/llc.h
index bd717739..065589db 100644
--- a/src/llc.h
+++ b/src/llc.h
@@ -63,8 +63,10 @@ struct gprs_llc {
* I store the LLC frames that come from the SGSN.
*/
struct gprs_llc_queue {
- static void calc_pdu_lifetime(BTS *bts, const uint16_t pdu_delay_csec, struct timeval *tv);
- static bool is_frame_expired(struct timeval *now, struct timeval *tv);
+ static void calc_pdu_lifetime(BTS *bts, const uint16_t pdu_delay_csec,
+ struct timeval *tv);
+ static bool is_frame_expired(const struct timeval *now,
+ const struct timeval *tv);
static bool is_user_data_frame(uint8_t *data, size_t len);
void init();