blob: 27c643a7408ec2e991cfed6db608f549dc9c7430 [file] [log] [blame]
/* $Id$ */
/*
* Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com)
* Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __PJSIP_TRANSPORT_UDP_H__
#define __PJSIP_TRANSPORT_UDP_H__
/**
* @file sip_transport_udp.h
* @brief SIP UDP Transport.
*/
#include <pjsip/sip_transport.h>
PJ_BEGIN_DECL
/**
* @defgroup PJSIP_TRANSPORT_UDP UDP Transport
* @ingroup PJSIP_TRANSPORT
* @brief API to create and register UDP transport.
* @{
* The functions below are used to create UDP transport and register
* the transport to the framework.
*/
/**
* Flag that can be specified when calling #pjsip_udp_transport_pause() or
* #pjsip_udp_transport_restart().
*/
enum
{
/**
* This flag tells the transport to keep the existing/internal socket
* handle.
*/
PJSIP_UDP_TRANSPORT_KEEP_SOCKET = 1,
/**
* This flag tells the transport to destroy the existing/internal socket
* handle. Naturally this flag and PJSIP_UDP_TRANSPORT_KEEP_SOCKET are
* mutually exclusive.
*/
PJSIP_UDP_TRANSPORT_DESTROY_SOCKET = 2
};
/**
* Start UDP transport.
*
* @param endpt The SIP endpoint.
* @param local Optional local address to bind. If this argument
* is NULL, the UDP transport will be bound to arbitrary
* UDP port.
* @param a_name Published address (only the host and port portion is
* used). If this argument is NULL, then the bound address
* will be used as the published address.
* @param async_cnt Number of simultaneous async operations.
* @param p_transport Pointer to receive the transport.
*
* @return PJ_SUCCESS when the transport has been successfully
* started and registered to transport manager, or
* the appropriate error code.
*/
PJ_DECL(pj_status_t) pjsip_udp_transport_start(pjsip_endpoint *endpt,
const pj_sockaddr_in *local,
const pjsip_host_port *a_name,
unsigned async_cnt,
pjsip_transport **p_transport);
/**
* Start IPv6 UDP transport.
*/
PJ_DECL(pj_status_t) pjsip_udp_transport_start6(pjsip_endpoint *endpt,
const pj_sockaddr_in6 *local,
const pjsip_host_port *a_name,
unsigned async_cnt,
pjsip_transport **p_transport);
/**
* Attach IPv4 UDP socket as a new transport and start the transport.
*
* @param endpt The SIP endpoint.
* @param sock UDP socket to use.
* @param a_name Published address (only the host and port portion is
* used).
* @param async_cnt Number of simultaneous async operations.
* @param p_transport Pointer to receive the transport.
*
* @return PJ_SUCCESS when the transport has been successfully
* started and registered to transport manager, or
* the appropriate error code.
*/
PJ_DECL(pj_status_t) pjsip_udp_transport_attach(pjsip_endpoint *endpt,
pj_sock_t sock,
const pjsip_host_port *a_name,
unsigned async_cnt,
pjsip_transport **p_transport);
/**
* Attach IPv4 or IPv6 UDP socket as a new transport and start the transport.
*
* @param endpt The SIP endpoint.
* @param type Transport type, which is PJSIP_TRANSPORT_UDP for IPv4
* or PJSIP_TRANSPORT_UDP6 for IPv6 socket.
* @param sock UDP socket to use.
* @param a_name Published address (only the host and port portion is
* used).
* @param async_cnt Number of simultaneous async operations.
* @param p_transport Pointer to receive the transport.
*
* @return PJ_SUCCESS when the transport has been successfully
* started and registered to transport manager, or
* the appropriate error code.
*/
PJ_DECL(pj_status_t) pjsip_udp_transport_attach2(pjsip_endpoint *endpt,
pjsip_transport_type_e type,
pj_sock_t sock,
const pjsip_host_port *a_name,
unsigned async_cnt,
pjsip_transport **p_transport);
/**
* Retrieve the internal socket handle used by the UDP transport. Note
* that this socket normally is registered to ioqueue, so if application
* wants to make use of this socket, it should temporarily pause the
* transport.
*
* @param transport The UDP transport.
*
* @return The socket handle, or PJ_INVALID_SOCKET if no socket
* is currently being used (for example, when transport
* is being paused).
*/
PJ_DECL(pj_sock_t) pjsip_udp_transport_get_socket(pjsip_transport *transport);
/**
* Temporarily pause or shutdown the transport. When transport is being
* paused, it cannot be used by the SIP stack to send or receive SIP
* messages.
*
* Two types of operations are supported by this function:
* - to temporarily make this transport unavailable for SIP uses, but
* otherwise keep the socket handle intact. Application then can
* retrieve the socket handle with #pjsip_udp_transport_get_socket()
* and use it to send/receive application data (for example, STUN
* messages). In this case, application should specify
* PJSIP_UDP_TRANSPORT_KEEP_SOCKET when calling this function, and
* also to specify this flag when calling #pjsip_udp_transport_restart()
* later.
* - to temporarily shutdown the transport, including closing down
* the internal socket handle. This is useful for example to
* temporarily suspend the application for an indefinite period. In
* this case, application should specify PJSIP_UDP_TRANSPORT_DESTROY_SOCKET
* flag when calling this function, and specify a new socket when
* calling #pjsip_udp_transport_restart().
*
* @param transport The UDP transport.
* @param option Pause option.
*
* @return PJ_SUCCESS if transport is paused successfully,
* or the appropriate error code.
*/
PJ_DECL(pj_status_t) pjsip_udp_transport_pause(pjsip_transport *transport,
unsigned option);
/**
* Restart the transport. Several operations are supported by this function:
* - if transport was made temporarily unavailable to SIP stack with
* pjsip_udp_transport_pause() and PJSIP_UDP_TRANSPORT_KEEP_SOCKET,
* application can make the transport available to the SIP stack
* again, by specifying PJSIP_UDP_TRANSPORT_KEEP_SOCKET flag here.
* - if application wants to replace the internal socket with a new
* socket, it must specify PJSIP_UDP_TRANSPORT_DESTROY_SOCKET when
* calling this function, so that the internal socket will be destroyed
* if it hasn't been closed. In this case, application has two choices
* on how to create the new socket: 1) to let the transport create
* the new socket, in this case the \a sock option should be set
* to \a PJ_INVALID_SOCKET and optionally the \a local parameter can be
* filled with the desired address and port where the new socket
* should be bound to, or 2) to specify its own socket to be used
* by this transport, by specifying a valid socket in \a sock argument
* and set the \a local argument to NULL. In both cases, application
* may specify the published address of the socket in \a a_name
* argument.
*
* @param transport The UDP transport.
* @param option Restart option.
* @param sock Optional socket to be used by the transport.
* @param local The address where the socket should be bound to.
* If this argument is NULL, socket will be bound
* to any available port.
* @param a_name Optionally specify the published address for
* this transport. If the socket is not replaced
* (PJSIP_UDP_TRANSPORT_KEEP_SOCKET flag is
* specified), then if this argument is NULL, the
* previous value will be used. If the socket is
* replaced and this argument is NULL, the bound
* address will be used as the published address
* of the transport.
*
* @return PJ_SUCCESS if transport can be restarted, or
* the appropriate error code.
*/
PJ_DECL(pj_status_t) pjsip_udp_transport_restart(pjsip_transport *transport,
unsigned option,
pj_sock_t sock,
const pj_sockaddr_in *local,
const pjsip_host_port *a_name);
PJ_END_DECL
/**
* @}
*/
#endif /* __PJSIP_TRANSPORT_UDP_H__ */