blob: 982a311d0d903e599b62562841bfdee57400dd1b [file] [log] [blame]
Philipp Maier87bd9be2017-08-22 16:35:41 +02001/* Message connection list handling */
2
3/*
4 * (C) 2017 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
5 * All Rights Reserved
6 *
7 * Author: Philipp Maier
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
18 *
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 *
22 */
23
24#pragma once
25
26#include <osmocom/mgcp/mgcp_internal.h>
27#include <osmocom/core/linuxlist.h>
28#include <inttypes.h>
29
30struct mgcp_conn *mgcp_conn_alloc(void *ctx, struct mgcp_endpoint *endp,
Philipp Maier01d24a32017-11-21 17:26:09 +010031 const char *id, enum mgcp_conn_type type,
Philipp Maier87bd9be2017-08-22 16:35:41 +020032 char *name);
Philipp Maier01d24a32017-11-21 17:26:09 +010033struct mgcp_conn *mgcp_conn_get(struct mgcp_endpoint *endp, const char *id);
Philipp Maier87bd9be2017-08-22 16:35:41 +020034struct mgcp_conn_rtp *mgcp_conn_get_rtp(struct mgcp_endpoint *endp,
Philipp Maier01d24a32017-11-21 17:26:09 +010035 const char *id);
36void mgcp_conn_free(struct mgcp_endpoint *endp, const char *id);
Philipp Maier87bd9be2017-08-22 16:35:41 +020037void mgcp_conn_free_oldest(struct mgcp_endpoint *endp);
38void mgcp_conn_free_all(struct mgcp_endpoint *endp);
39char *mgcp_conn_dump(struct mgcp_conn *conn);
40struct mgcp_conn *mgcp_find_dst_conn(struct mgcp_conn *conn);