mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-04 18:27:36 +00:00
b7c6c0e483
Thu Nov 15 08:40:38 EST 2007 Pekka.Pessi@nokia.com * htable2.h: fixed usize_t/size_t confusion Fri Nov 16 06:38:51 EST 2007 Youness Alaoui <youness.alaoui@collabora.co.uk> * Added #include <stdio.h> Fri Nov 16 10:27:58 EST 2007 Pekka.Pessi@nokia.com * auth_client.c: allow multiple challenges in auc_credentials() or auc_all_credentials() Fri Nov 16 10:29:00 EST 2007 Pekka.Pessi@nokia.com * nua/test_proxy.[hc], nua/test_register.c: test support of multiple realms. Fri Nov 16 11:17:09 EST 2007 Pekka.Pessi@nokia.com * sofia-sip/su_alloc.h, su_alloc.c: added su_home_lock(), su_home_trylock(), su_home_unlock() Added test in torture_su_alloc.c. Using in su_pthread_port.c. Fri Nov 16 12:29:55 EST 2007 Pekka.Pessi@nokia.com * test_register.c, test_proxy.c: use realm "test-proxy" during normal tests Fri Nov 16 12:34:00 EST 2007 Pekka.Pessi@nokia.com * nua_register.c: sf.net bug #1816647: Outbound contact does not make it to dialogs Now use Contact from first registration instead of Contact generated from transport. Mon Nov 19 12:00:06 EST 2007 Pekka Pessi <Pekka.Pessi@nokia.com> * su_alloc.c: silenced warnings on Sun CC git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6338 d0543943-73ff-0310-b7d9-9358b9ac24b2
81 lines
2.4 KiB
C
81 lines
2.4 KiB
C
/*
|
|
* This file is part of the Sofia-SIP package
|
|
*
|
|
* Copyright (C) 2005 Nokia Corporation.
|
|
*
|
|
* Contact: Pekka Pessi <pekka.pessi@nokia.com>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
* as published by the Free Software Foundation; either version 2.1 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
|
* 02110-1301 USA
|
|
*
|
|
*/
|
|
|
|
#ifndef TEST_PROXY_H
|
|
#define TEST_PROXY_H
|
|
|
|
#include <sofia-sip/su_wait.h>
|
|
#include <sofia-sip/nta.h>
|
|
|
|
SOFIA_BEGIN_DECLS
|
|
|
|
struct proxy;
|
|
struct domain;
|
|
|
|
struct proxy *test_proxy_create(su_root_t *, tag_type_t, tag_value_t, ...);
|
|
|
|
void test_proxy_destroy(struct proxy *);
|
|
|
|
url_t const *test_proxy_uri(struct proxy const *);
|
|
|
|
char const *test_proxy_route_uri(struct proxy const *p,
|
|
sip_route_t const **return_route);
|
|
|
|
struct domain *test_proxy_add_domain(struct proxy *,
|
|
url_t const *domain,
|
|
tag_type_t, tag_value_t, ...);
|
|
|
|
void test_proxy_domain_set_expiration(struct domain *,
|
|
sip_time_t min_expires,
|
|
sip_time_t expires,
|
|
sip_time_t max_expires);
|
|
|
|
void test_proxy_domain_get_expiration(struct domain *,
|
|
sip_time_t *return_min_expires,
|
|
sip_time_t *return_expires,
|
|
sip_time_t *return_max_expires);
|
|
|
|
void test_proxy_set_session_timer(struct proxy *p,
|
|
sip_time_t session_expires,
|
|
sip_time_t min_se);
|
|
|
|
void test_proxy_get_session_timer(struct proxy *p,
|
|
sip_time_t *return_session_expires,
|
|
sip_time_t *return_min_se);
|
|
|
|
int test_proxy_domain_set_authorize(struct domain *, char const *realm);
|
|
int test_proxy_domain_get_authorize(struct domain *,
|
|
char const **return_realm);
|
|
|
|
void test_proxy_domain_set_outbound(struct domain *d,
|
|
int use_outbound);
|
|
void test_proxy_domain_get_outbound(struct domain *d,
|
|
int *return_use_outbound);
|
|
|
|
int test_proxy_close_tports(struct proxy *p);
|
|
|
|
SOFIA_END_DECLS
|
|
|
|
#endif
|