blob: b522592b150ce504eb710c0e2a4d61babf3216db [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 *
Harald Welte323d39d2017-11-13 01:09:21 +09004 * SPDX-License-Identifier: AGPL-3.0+
5 *
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +02006 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 *
19 */
20#include "internal.h"
Pablo Neira Ayusoe19c70a2011-06-12 15:15:30 +020021#include <osmocom/core/utils.h>
Pablo Neira Ayusofe8ab0a2011-07-02 18:48:45 +020022#include <osmocom/core/logging.h>
Harald Welte71d87b22011-07-18 14:49:56 +020023#include <osmocom/core/talloc.h>
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +020024
25void *libosmo_abis_ctx;
26
27void libosmo_abis_init(void *ctx)
28{
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +020029 libosmo_abis_ctx = talloc_named_const(ctx, 0, "abis");
30 e1inp_init();
31}