blob: 73453c4e28978bc9034cbd6638ed49e06233eff9 [file] [log] [blame]
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +02001/* (C) 2011 by Harald Welte <laforge@gnumonks.org>
2 * All Rights Reserved
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Affero General Public License as published by
6 * the Free Software Foundation; either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Affero General Public License for more details.
13 *
14 * You should have received a copy of the GNU Affero General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 *
17 */
18#include "internal.h"
Pablo Neira Ayusoe19c70a2011-06-12 15:15:30 +020019#include <osmocom/core/utils.h>
Pablo Neira Ayusofe8ab0a2011-07-02 18:48:45 +020020#include <osmocom/core/logging.h>
Harald Welte71d87b22011-07-18 14:49:56 +020021#include <osmocom/core/talloc.h>
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +020022
23void *libosmo_abis_ctx;
24
25void libosmo_abis_init(void *ctx)
26{
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +020027 libosmo_abis_ctx = talloc_named_const(ctx, 0, "abis");
28 e1inp_init();
29}