123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- /*
- * 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>
- #include <pj/sock_qos.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
- };
- /**
- * Settings to be specified when creating the UDP transport. Application
- * should initialize this structure with its default values by calling
- * pjsip_udp_transport_cfg_default().
- */
- typedef struct pjsip_udp_transport_cfg
- {
- /**
- * Address family to use. Valid values are pj_AF_INET() and
- * pj_AF_INET6(). Default is pj_AF_INET().
- */
- int af;
- /**
- * Address to bind the socket to.
- */
- pj_sockaddr bind_addr;
- /**
- * Optional published address, which is the address to be
- * advertised as the address of this SIP transport.
- * By default the bound address will be used as the published address.
- */
- pjsip_host_port addr_name;
- /**
- * Number of simultaneous asynchronous accept() operations to be
- * supported. It is recommended that the number here corresponds to
- * the number of processors in the system (or the number of SIP
- * worker threads).
- *
- * Default: 1
- */
- unsigned async_cnt;
- /**
- * QoS traffic type to be set on this transport. When application wants
- * to apply QoS tagging to the transport, it's preferable to set this
- * field rather than \a qos_param fields since this is more portable.
- *
- * Default is QoS not set.
- */
- pj_qos_type qos_type;
- /**
- * Set the low level QoS parameters to the transport. This is a lower
- * level operation than setting the \a qos_type field and may not be
- * supported on all platforms.
- *
- * Default is QoS not set.
- */
- pj_qos_params qos_params;
- /**
- * Specify options to be set on the transport.
- *
- * By default there is no options.
- *
- */
- pj_sockopt_params sockopt_params;
- } pjsip_udp_transport_cfg;
- /**
- * Initialize pjsip_udp_transport_cfg structure with default values for
- * the specifed address family.
- *
- * @param cfg The structure to initialize.
- * @param af Address family to be used.
- */
- PJ_DECL(void) pjsip_udp_transport_cfg_default(pjsip_udp_transport_cfg *cfg,
- int af);
- /**
- * Start UDP IPv4/IPv6 transport.
- *
- * @param endpt The SIP endpoint.
- * @param cfg UDP transport settings. Application should initialize
- * this setting with #pjsip_udp_transport_cfg_default().
- * @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_start2(
- pjsip_endpoint *endpt,
- const pjsip_udp_transport_cfg *cfg,
- pjsip_transport **p_transport);
- /**
- * 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.
- *
- * Note that prior to calling this method, any locks acquired need to
- * be released temporarily to avoid any deadlock scenario.
- * This method will loop to wait for read operation to finish before actually
- * restart the transport. This might lead to deadlock if any other thread with
- * the read operation tries to acquire the same lock held by the thread calling
- * this method.
- * Please see https://github.com/pjsip/pjproject/pull/2731 for more details.
- *
- * @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);
- /**
- * 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. This is another version of pjsip_udp_transport_restart()
- * able to restart IPv6 transport.
- *
- * Note that prior to calling this method, any locks acquired need to
- * be released temporarily to avoid any deadlock scenario.
- * This method will loop to wait for read operation to finish before actually
- * restart the transport. This might lead to deadlock if any other thread with
- * the read operation tries to acquire the same lock held by the thread calling
- * this method.
- * Please see https://github.com/pjsip/pjproject/pull/2731 for more details.
- *
- * @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_restart2(pjsip_transport *transport,
- unsigned option,
- pj_sock_t sock,
- const pj_sockaddr *local,
- const pjsip_host_port *a_name);
- PJ_END_DECL
- /**
- * @}
- */
- #endif /* __PJSIP_TRANSPORT_UDP_H__ */
|