aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-08-12 14:52:45 +0200
committerHarald Welte <laforge@gnumonks.org>2017-08-12 15:09:40 +0200
commit0078446985c382ade663010b377e3563111d256c (patch)
tree55ae69e7226afec0e890f1b9338412b456c5ef6e
parentdb644d3979cbdf3a7db9e84392678b16730a038c (diff)
libgtp: Remove ctrl_handle from gsn_t, replace with private context
The control interface handle never belonged into libgtp in the first place. Commit 727417dd28813c697b4820aef9f54f249e30c4b8 should not have added this to the shared library (used by sgsnemu, osmo-sgsn, ...), but to some private state of the GGSN. Introducing a private context pointer at the same location will keep ABI compatibilty. Change-Id: I4f17516dae3e04114564828a3e5f6e2ea54212a5
-rw-r--r--gtp/gtp.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/gtp/gtp.h b/gtp/gtp.h
index fd138cc..825a142 100644
--- a/gtp/gtp.h
+++ b/gtp/gtp.h
@@ -12,8 +12,6 @@
#ifndef _GTP_H
#define _GTP_H
-#include <osmocom/ctrl/control_if.h>
-
#define GTP_MODE_GGSN 1
#define GTP_MODE_SGSN 2
@@ -247,7 +245,7 @@ struct gsn_t {
unsigned char restart_counter; /* Increment on restart. Stored on disk */
char *statedir; /* Disk location for permanent storage */
- struct ctrl_handle *ctrl; /* Control Interface */
+ void *priv; /* used by libgtp users to attach their own state) */
struct queue_t *queue_req; /* Request queue */
struct queue_t *queue_resp; /* Response queue */