fix missing includes and forward declarations

Change-Id: I669e475f7ab74abef85f0f6194cc37db04af62e3
This commit is contained in:
Eric Wild 2021-08-24 01:36:49 +02:00
parent 374ad788d8
commit 1e8d5fa44b
3 changed files with 5 additions and 0 deletions

View File

@ -25,6 +25,7 @@
#include <osmocom/core/msgb.h>
#include <osmocom/gsm/i460_mux.h>
#include <osmocom/mgcp/mgcp_protocol.h>
struct sockaddr;
struct mgcp_conn;

View File

@ -25,10 +25,12 @@
#pragma once
#include <stdint.h>
#include <stdbool.h>
struct mgcp_conn;
struct mgcp_parse_data;
struct mgcp_endpoint;
struct mgcp_trunk;
void mgcp_disp_msg(unsigned char *message, unsigned int len, char *preamble);

View File

@ -2,6 +2,8 @@
#include <osmocom/gsm/i460_mux.h>
#include <osmocom/abis/e1_input.h>
#include <osmocom/mgcp/mgcp_ratectr.h>
#define LOGPTRUNK(trunk, cat, level, fmt, args...) \
LOGP(cat, level, "trunk:%u " fmt, \