chan_mgcp: Remove deprecated module.

Also removes res_pktcops to avoid merge conflicts
with ASTERISK~30301.

ASTERISK-30299

Change-Id: I41a316d327646a197b6f112f7f637aceb5111b41
This commit is contained in:
Mike Bradeen
2022-11-15 10:03:21 -07:00
committed by Friendly Automation
parent 841107f294
commit 89a7d30a97
21 changed files with 15 additions and 6873 deletions

View File

@@ -250,7 +250,7 @@
/*!
* \page Config_rtp RTP configuration
* \arg Implemented in \ref rtp.c
* Used in \ref chan_sip.c and \ref chan_mgcp.c (and various H.323 channels)
* Used in \ref chan_sip.c (and various H.323 channels)
* \section rtpconf rtp.conf
* \verbinclude rtp.conf.sample
*/

View File

@@ -1,82 +0,0 @@
/*
* Asterisk -- An open source telephony toolkit.
*
* Copyright (C) 2009, Attila Domjan
*
* Attila Domjan <attila.domjan.hu@gmail.com>
*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
* This program is free software, distributed under the terms of
* the GNU General Public License Version 2. See the LICENSE file
* at the top of the source tree.
*/
/*! \file
*
* \brief PacketCable COPS
*
* \author Attila Domjan <attila.domjan.hu@gmail.com>
*/
#ifndef _ASTERISK_PKTCCOPS_H
#define _ASTERISK_PKTCCOPS_H
#include "asterisk/optional_api.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
enum {
GATE_SET,
GATE_INFO,
GATE_SET_HAVE_GATEID,
GATE_DEL
};
enum {
GATE_ALLOC_FAILED,
GATE_ALLOC_PROGRESS,
GATE_ALLOCATED,
GATE_CLOSED,
GATE_CLOSED_ERR,
GATE_OPEN,
GATE_DELETED,
GATE_TIMEOUT
};
struct cops_gate {
AST_LIST_ENTRY(cops_gate) list;
uint32_t gateid;
uint16_t trid;
time_t in_transaction;
uint32_t mta;
int state;
time_t allocated;
time_t checked;
time_t deltimer;
struct cops_cmts *cmts;
int (* got_dq_gi) (struct cops_gate *gate);
int (* gate_remove) (struct cops_gate *gate);
int (* gate_open) (struct cops_gate *gate);
void *tech_pvt;
};
AST_OPTIONAL_API(struct cops_gate *, ast_pktccops_gate_alloc,
(int cmd, struct cops_gate *gate, uint32_t mta, uint32_t actcount,
float bitrate, uint32_t psize, uint32_t ssip, uint16_t ssport,
int (* const got_dq_gi) (struct cops_gate *gate),
int (* const gate_remove) (struct cops_gate *gate)),
{ return NULL; });
#if defined(__cplusplus) || defined(c_plusplus)
}
#endif
#endif /* _ASTERISK_PKTCCOPS_H */

View File

@@ -42,7 +42,6 @@ enum hepv3_capture_type {
HEPV3_CAPTURE_TYPE_SDP = 0x03,
HEPV3_CAPTURE_TYPE_RTP = 0x04,
HEPV3_CAPTURE_TYPE_RTCP = 0x05,
HEPV3_CAPTURE_TYPE_MGCP = 0x06,
HEPV3_CAPTURE_TYPE_MEGACO = 0x07,
HEPV3_CAPTURE_TYPE_M2UA = 0x08,
HEPV3_CAPTURE_TYPE_M3UA = 0x09,