summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHarald Welte2011-07-18 14:49:56 +0200
committerHarald Welte2011-07-18 14:51:16 +0200
commit71d87b2597bdbb6e555af43831b4ef7788f858e1 (patch)
treeb4f077ebe7474c131cf8f94ceb69e84754bf97e7 /src
parentipaccess: ipaccess_fd_cb needs to be extern (diff)
downloadlibosmo-abis-71d87b2597bdbb6e555af43831b4ef7788f858e1.tar.gz
libosmo-abis-71d87b2597bdbb6e555af43831b4ef7788f858e1.tar.xz
libosmo-abis-71d87b2597bdbb6e555af43831b4ef7788f858e1.zip
talloc: revert to use talloc inside libosmocore
It's not a good idea to confuse the two changes with each other. Moving the Abis part into a separate library is independent from the question whether we have talloc inside libosmocore or use a stand-alone talloc library.
Diffstat (limited to 'src')
-rw-r--r--src/e1_input.c2
-rw-r--r--src/e1_input_vty.c2
-rw-r--r--src/init.c2
-rw-r--r--src/input/dahdi.c2
-rw-r--r--src/input/hsl.c2
-rw-r--r--src/input/ipa.c2
-rw-r--r--src/input/ipaccess.c2
-rw-r--r--src/input/lapd.c2
-rw-r--r--src/input/misdn.c2
-rw-r--r--src/ipa_proxy.c2
-rw-r--r--src/subchan_demux.c2
11 files changed, 11 insertions, 11 deletions
diff --git a/src/e1_input.c b/src/e1_input.c
index 6873f21..9c2dcb7 100644
--- a/src/e1_input.c
+++ b/src/e1_input.c
@@ -47,7 +47,7 @@
#include <osmocom/abis/e1_input.h>
#include <osmocom/core/linuxlist.h>
#include <osmocom/abis/subchan_demux.h>
-#include <talloc.h>
+#include <osmocom/core/talloc.h>
#define NUM_E1_TS 32
diff --git a/src/e1_input_vty.c b/src/e1_input_vty.c
index 212a4ac..be51a16 100644
--- a/src/e1_input_vty.c
+++ b/src/e1_input_vty.c
@@ -31,7 +31,7 @@
#include <osmocom/abis/e1_input.h>
#include <osmocom/core/utils.h>
#include <osmocom/gsm/gsm_utils.h>
-#include <talloc.h>
+#include <osmocom/core/talloc.h>
#define E1_DRIVER_NAMES "(misdn|dahdi|ipa|hsl)"
#define E1_DRIVER_HELP "mISDN supported E1 Card\n" \
diff --git a/src/init.c b/src/init.c
index 2b21207..73453c4 100644
--- a/src/init.c
+++ b/src/init.c
@@ -18,7 +18,7 @@
#include "internal.h"
#include <osmocom/core/utils.h>
#include <osmocom/core/logging.h>
-#include <talloc.h>
+#include <osmocom/core/talloc.h>
void *libosmo_abis_ctx;
diff --git a/src/input/dahdi.c b/src/input/dahdi.c
index 3d33749..4ad32af 100644
--- a/src/input/dahdi.c
+++ b/src/input/dahdi.c
@@ -40,7 +40,7 @@
#include <osmocom/core/signal.h>
#include <osmocom/abis/subchan_demux.h>
#include <osmocom/abis/e1_input.h>
-#include <talloc.h>
+#include <osmocom/core/talloc.h>
#include <osmocom/abis/lapd.h>
diff --git a/src/input/hsl.c b/src/input/hsl.c
index 9861063..8f2bf73 100644
--- a/src/input/hsl.c
+++ b/src/input/hsl.c
@@ -52,7 +52,7 @@
#include <osmocom/abis/ipaccess.h>
#include <osmocom/core/socket.h>
#include <osmocom/abis/ipa.h>
-#include <talloc.h>
+#include <osmocom/core/talloc.h>
#define HSL_TCP_PORT 2500
#define HSL_PROTO_DEBUG 0xdd
diff --git a/src/input/ipa.c b/src/input/ipa.c
index c8ee781..dd740bf 100644
--- a/src/input/ipa.c
+++ b/src/input/ipa.c
@@ -15,7 +15,7 @@
#include <osmocom/gsm/tlv.h>
#include <osmocom/core/msgb.h>
#include <osmocom/core/logging.h>
-#include <talloc.h>
+#include <osmocom/core/talloc.h>
#include <osmocom/abis/e1_input.h>
#include <osmocom/abis/ipaccess.h>
#include <osmocom/core/socket.h>
diff --git a/src/input/ipaccess.c b/src/input/ipaccess.c
index d977bc2..6d55132 100644
--- a/src/input/ipaccess.c
+++ b/src/input/ipaccess.c
@@ -39,7 +39,7 @@
#include <osmocom/gsm/tlv.h>
#include <osmocom/core/msgb.h>
#include <osmocom/core/logging.h>
-#include <talloc.h>
+#include <osmocom/core/talloc.h>
#include <osmocom/abis/e1_input.h>
#include <osmocom/abis/ipaccess.h>
#include <osmocom/core/socket.h>
diff --git a/src/input/lapd.c b/src/input/lapd.c
index bd1c8ff..44031bd 100644
--- a/src/input/lapd.c
+++ b/src/input/lapd.c
@@ -40,7 +40,7 @@
#include <osmocom/core/linuxlist.h>
#include <osmocom/core/logging.h>
-#include <talloc.h>
+#include <osmocom/core/talloc.h>
#include <osmocom/core/msgb.h>
#include <osmocom/core/timer.h>
diff --git a/src/input/misdn.c b/src/input/misdn.c
index 252650b..dce4f42 100644
--- a/src/input/misdn.c
+++ b/src/input/misdn.c
@@ -45,7 +45,7 @@
#include <osmocom/core/msgb.h>
#include <osmocom/core/logging.h>
#include <osmocom/abis/e1_input.h>
-#include <talloc.h>
+#include <osmocom/core/talloc.h>
#define TS1_ALLOC_SIZE 300
diff --git a/src/ipa_proxy.c b/src/ipa_proxy.c
index c79b544..f90eb49 100644
--- a/src/ipa_proxy.c
+++ b/src/ipa_proxy.c
@@ -17,7 +17,7 @@
#include <osmocom/gsm/tlv.h>
#include <osmocom/core/msgb.h>
#include <osmocom/core/logging.h>
-#include <talloc.h>
+#include <osmocom/core/talloc.h>
#include <osmocom/abis/e1_input.h>
#include <osmocom/abis/ipaccess.h>
#include <osmocom/core/socket.h>
diff --git a/src/subchan_demux.c b/src/subchan_demux.c
index 73efd31..eaf2c83 100644
--- a/src/subchan_demux.c
+++ b/src/subchan_demux.c
@@ -28,7 +28,7 @@
#include <osmocom/abis/subchan_demux.h>
#include <osmocom/abis/trau_frame.h>
-#include <talloc.h>
+#include <osmocom/core/talloc.h>
void *tall_tqe_ctx;