mirror of https://github.com/asterisk/asterisk
(closes issue #12950) Reported by: alea-soluciones Patches: ncs-pktccops-12950-r206803.patch uploaded by alea-soluciones (license 514) Tested by: alea-soluciones, adomjan, urtho, nahuelgreco git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@227049 65c4cc65-6c06-0410-ace0-fbb531ad65f3certified/1.8.6
parent
2c4d3b3168
commit
66579d9d49
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,32 @@
|
||||
; Sample res_pktccops.conf
|
||||
|
||||
[general]
|
||||
gateinfoperiod => 60 ; default 60s
|
||||
gatetimeout = 150 ; default 150
|
||||
t1 => 250 ; default 250s
|
||||
t7 => 200 ; default 200s
|
||||
t8 => 300 ; default 300s
|
||||
keepalive => 60 ; default 60s
|
||||
|
||||
[teszt]
|
||||
host => 192.168.0.24
|
||||
pool => 10.0.1.0 10.0.1.255
|
||||
pool => 10.0.3.0 10.0.3.255
|
||||
pool => 10.0.7.0 10.0.8.255
|
||||
pool => 10.0.10.0 10.0.11.255
|
||||
|
||||
[general]
|
||||
gateinfoperiod => 60 ; default 60s
|
||||
gatetimeout = 150 ; default 150
|
||||
t1 => 250 ; default 250s
|
||||
t7 => 200 ; default 200s
|
||||
t8 => 300 ; default 300s
|
||||
keepalive => 60 ; default 60s
|
||||
|
||||
[test]
|
||||
host => 192.168.0.24
|
||||
pool => 10.0.1.0 10.0.1.255
|
||||
pool => 10.0.3.0 10.0.3.255
|
||||
pool => 10.0.7.0 10.0.8.255
|
||||
pool => 10.0.10.0 10.0.11.255
|
||||
|
@ -0,0 +1,82 @@
|
||||
/*
|
||||
* 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 */
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue