Ignore:
Timestamp:
Mar 27, 2007 11:29:27 PM (17 years ago)
Author:
bennylp
Message:

Created doxygen documentation for PJNATH

File:
1 edited

Legend:

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

    r1106 r1110  
    1919#ifndef __PJNATH_STUN_SESSION_H__ 
    2020#define __PJNATH_STUN_SESSION_H__ 
     21 
     22/** 
     23 * @file stun_session.h 
     24 * @brief STUN session management for client/server. 
     25 */ 
    2126 
    2227#include <pjnath/stun_msg.h> 
     
    188193 * 
    189194 * @param sess      The STUN session instance. 
     195 * @param user_data The user data. 
    190196 * 
    191197 * @return          PJ_SUCCESS on success, or the appropriate error code. 
     
    352358 * the message via one of the pj_stun_session_cb callback. 
    353359 * 
    354  * @param sess       The STUN session instance. 
    355  * @param packet     The packet containing STUN message. 
    356  * @param pkt_size   Size of the packet. 
    357  * @param options    Options, from #pj_stun_decode_options. 
    358  * @param parsed_len Optional pointer to receive the size of the parsed 
    359  *                   STUN message (useful if packet is received via a 
    360  *                   stream oriented protocol). 
    361  * 
    362  * @return           PJ_SUCCESS on success, or the appropriate error code. 
     360 * @param sess          The STUN session instance. 
     361 * @param packet        The packet containing STUN message. 
     362 * @param pkt_size      Size of the packet. 
     363 * @param options       Options, from #pj_stun_decode_options. 
     364 * @param parsed_len    Optional pointer to receive the size of the parsed 
     365 *                      STUN message (useful if packet is received via a 
     366 *                      stream oriented protocol). 
     367 * @param src_addr      The source address of the packet. 
     368 * @param src_addr_len  Length of the source address. 
     369 * 
     370 * @return              PJ_SUCCESS on success, or the appropriate error code. 
    363371 */ 
    364372PJ_DECL(pj_status_t) pj_stun_session_on_rx_pkt(pj_stun_session *sess, 
Note: See TracChangeset for help on using the changeset viewer.