Files
Chris Rienzo 8330336e9a FS-6450 [unimrcp] Update library
[apr] Backport APR_RING_FOREACH and APR_RING_FOREACH_SAFE macros to APR for unimrcp compatibility.

 [unimrcp] configure.gnu - need full path, not relative path for library paths

 [unimrcp] added uni_revision.h - couldn't get it to autogenerate from build

 [mod_unimrcp] add better logging and error checking on module load.  Currently dumps core on MRCPv1 TTS attempt

 [mod_unimrcp] don't configure MRCPv1 session with a connection agent- causes crash
2014-11-18 14:23:54 -05:00

83 lines
2.3 KiB
C

/*
* Copyright 2008-2014 Arsen Chaloyan
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* $Id: mrcp_sofiasip_client_agent.h 2136 2014-07-04 06:33:36Z achaloyan@gmail.com $
*/
#ifndef MRCP_SOFIASIP_CLIENT_AGENT_H
#define MRCP_SOFIASIP_CLIENT_AGENT_H
/**
* @file mrcp_sofiasip_client_agent.h
* @brief Implementation of MRCP Signaling Interface using Sofia-SIP
*/
#include <apr_network_io.h>
#include "mrcp_sig_agent.h"
APT_BEGIN_EXTERN_C
/** Sofia-SIP config declaration */
typedef struct mrcp_sofia_client_config_t mrcp_sofia_client_config_t;
/** Sofia-SIP config */
struct mrcp_sofia_client_config_t {
/** Local IP address */
char *local_ip;
/** External (NAT) IP address */
char *ext_ip;
/** Local SIP port */
apr_port_t local_port;
/** Local SIP user name */
char *local_user_name;
/** User agent name */
char *user_agent_name;
/** SDP origin */
char *origin;
/** SIP transport */
char *transport;
/** SIP T1 timer */
apr_size_t sip_t1;
/** SIP T2 timer */
apr_size_t sip_t2;
/** SIP T4 timer */
apr_size_t sip_t4;
/** SIP T1x64 timer */
apr_size_t sip_t1x64;
/** Print out SIP messages to the console */
apt_bool_t tport_log;
/** Dump SIP messages to the specified file */
char *tport_dump_file;
};
/**
* Create Sofia-SIP signaling agent.
*/
MRCP_DECLARE(mrcp_sig_agent_t*) mrcp_sofiasip_client_agent_create(const char *id, mrcp_sofia_client_config_t *config, apr_pool_t *pool);
/**
* Allocate Sofia-SIP config.
*/
MRCP_DECLARE(mrcp_sofia_client_config_t*) mrcp_sofiasip_client_config_alloc(apr_pool_t *pool);
/**
* Initialize Sofia-SIP logger.
*/
MRCP_DECLARE(apt_bool_t) mrcp_sofiasip_client_logger_init(const char *name, const char *level_str, apt_bool_t redirect);
APT_END_EXTERN_C
#endif /* MRCP_SOFIASIP_CLIENT_AGENT_H */