mgcp_trunk: move enum mgcp_trunk_type to mgcp_trunk.h

The enum mgcp_trunk_type, which is currently located in mgcp_internal.h
makes more sense in mgcp_trunk.h, so lets move it.

Related: OS#2659
Change-Id: I077121503c44fc112a33f1c946f368414e28f841
This commit is contained in:
Philipp Maier 2020-07-01 23:18:58 +02:00
parent 48bcc2ee12
commit bea56788cb
2 changed files with 5 additions and 5 deletions

View File

@ -32,11 +32,6 @@
#define CI_UNUSED 0
enum mgcp_trunk_type {
MGCP_TRUNK_VIRTUAL,
MGCP_TRUNK_E1,
};
struct mgcp_rtp_stream_state {
uint32_t ssrc;
uint16_t last_seq;

View File

@ -1,5 +1,10 @@
#pragma once
enum mgcp_trunk_type {
MGCP_TRUNK_VIRTUAL,
MGCP_TRUNK_E1,
};
struct mgcp_trunk {
struct llist_head entry;