Ignore:
Timestamp:
Mar 18, 2007 5:39:27 PM (17 years ago)
Author:
bennylp
Message:

Changed pj_sockaddr structure and added pjnath project for ICE/STUN stuffs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjnath/include/pjnath/stun_transaction.h

    r1062 r1080  
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  
    1818 */ 
    19 #ifndef __PJLIB_UTIL_STUN_TRANSACTION_H__ 
    20 #define __PJLIB_UTIL_STUN_TRANSACTION_H__ 
     19#ifndef __PJNATH_STUN_TRANSACTION_H__ 
     20#define __PJNATH_STUN_TRANSACTION_H__ 
    2121 
    2222/** 
     
    2525 */ 
    2626 
    27 #include <pjlib-util/stun_msg.h> 
    28 #include <pjlib-util/stun_endpoint.h> 
     27#include <pjnath/stun_msg.h> 
     28#include <pjnath/stun_endpoint.h> 
    2929 
    3030 
     
    3434/* **************************************************************************/ 
    3535/** 
    36  * @defgroup PJLIB_UTIL_STUN_TRANSACTION STUN Client Transaction 
     36 * @defgroup PJNATH_STUN_TRANSACTION STUN Client Transaction 
    3737 * @brief STUN client transaction 
    38  * @ingroup PJLIB_UTIL_STUN 
     38 * @ingroup PJNATH_STUN 
    3939 * @{ 
    4040 * 
    41  The @ref PJLIB_UTIL_STUN_TRANSACTION is used to manage outgoing STUN request, 
     41 The @ref PJNATH_STUN_TRANSACTION is used to manage outgoing STUN request, 
    4242 for example to retransmit the request and to notify application about the 
    4343 completion of the request. 
    4444 
    45  The @ref PJLIB_UTIL_STUN_TRANSACTION does not use any networking operations, 
     45 The @ref PJNATH_STUN_TRANSACTION does not use any networking operations, 
    4646 but instead application must supply the transaction with a callback to 
    4747 be used by the transaction to send outgoing requests. This way the STUN 
     
    101101 * the request, if necessary. 
    102102 * 
    103  * @param endpt         The STUN endpoint, which will be used to retrieve 
     103 * @param cfg           The STUN endpoint, which will be used to retrieve 
    104104 *                      various settings for the transaction. 
    105105 * @param pool          Pool to be used to allocate memory from. 
     
    111111 * @return              PJ_SUCCESS on success, or the appropriate error code. 
    112112 */ 
    113 PJ_DECL(pj_status_t) pj_stun_client_tsx_create( pj_stun_endpoint *endpt, 
     113PJ_DECL(pj_status_t) pj_stun_client_tsx_create( pj_stun_config *cfg, 
    114114                                                pj_pool_t *pool, 
    115115                                                const pj_stun_tsx_cb *cb, 
     
    214214 
    215215 
    216 #endif  /* __PJLIB_UTIL_STUN_TRANSACTION_H__ */ 
    217  
     216#endif  /* __PJNATH_STUN_TRANSACTION_H__ */ 
     217 
Note: See TracChangeset for help on using the changeset viewer.