Ignore:
Timestamp:
Dec 4, 2013 3:01:20 AM (10 years ago)
Author:
bennylp
Message:

Re #1519: doxygen fixes and other minor fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/pjsua2/pjsip/include/pjsua2/siptypes.hpp

    r4663 r4672  
    3030#include <vector> 
    3131 
    32 /** 
    33  * @defgroup PJSUA2_TYPES Data structure 
    34  * @ingroup PJSUA2_Ref 
    35  * @{ 
    36  */ 
    37  
    3832/** PJSUA2 API is inside pj namespace */ 
    3933namespace pj 
     
    4135 
    4236/** 
     37 * @defgroup PJSUA2_SIP_Types SIP Types 
     38 * @ingroup PJSUA2_DS 
     39 * @{ 
     40 */ 
     41 
     42/** 
    4343 * Credential information. Credential contains information to authenticate 
    4444 * against a service. 
     
    7575    /* 
    7676     * Digest AKA credential information. Note that when AKA credential 
    77      * is being used, the \a data field of this #pjsip_cred_info is 
     77     * is being used, the \a data field of this pjsip_cred_info is 
    7878     * not used, but it still must be initialized to an empty string. 
    79      * Please see \ref PJSIP_AUTH_AKA_API for more information. 
     79     * Please see PJSIP_AUTH_AKA_API for more information. 
    8080     */ 
    8181 
     
    146146 
    147147    /** 
    148      * TLS protocol method from #pjsip_ssl_method. 
     148     * TLS protocol method from pjsip_ssl_method. 
    149149     * 
    150150     * Default is PJSIP_SSL_UNSPECIFIED_METHOD (0), which in turn will 
     
    166166     * verification result: 
    167167     * - If \a verifyServer is disabled, TLS transport will just notify 
    168      *   the application via #pjsip_tp_state_callback with state 
     168     *   the application via pjsip_tp_state_callback with state 
    169169     *   PJSIP_TP_STATE_CONNECTED regardless TLS verification result. 
    170170     * - If \a verifyServer is enabled, TLS transport will be shutdown 
     
    173173     *   error, otherwise PJSIP_TP_STATE_CONNECTED will be notified. 
    174174     * 
    175      * In any cases, application can inspect #pjsip_tls_state_info in the 
     175     * In any cases, application can inspect pjsip_tls_state_info in the 
    176176     * callback to see the verification detail. 
    177177     * 
     
    184184     * verification result: 
    185185     * - If \a verifyClient is disabled, TLS transport will just notify 
    186      *   the application via #pjsip_tp_state_callback with state 
     186     *   the application via pjsip_tp_state_callback with state 
    187187     *   PJSIP_TP_STATE_CONNECTED regardless TLS verification result. 
    188188     * - If \a verifyClient is enabled, TLS transport will be shutdown 
     
    191191     *   error, otherwise PJSIP_TP_STATE_CONNECTED will be notified. 
    192192     * 
    193      * In any cases, application can inspect #pjsip_tls_state_info in the 
     193     * In any cases, application can inspect pjsip_tls_state_info in the 
    194194     * callback to see the verification detail. 
    195195     * 
     
    382382    string                  info; 
    383383 
    384     /** Transport flags (see #pjsip_transport_flags_e). */ 
     384    /** Transport flags (see pjsip_transport_flags_e). */ 
    385385    unsigned                flags; 
    386386 
     
    860860/* Utilities */ 
    861861#ifndef SWIG 
     862//! @cond Doxygen_Suppress 
    862863void readIntVector( ContainerNode &node, 
    863864                    const string &array_name, 
     
    876877                     const string &array_name, 
    877878                     const SipHeaderVector &headers) throw(Error); 
     879//! @endcond 
    878880#endif // SWIG 
    879881 
     882/** 
     883 * @}  PJSUA2 
     884 */ 
     885 
    880886} // namespace pj 
    881887 
    882 /** 
    883  * @}  PJSUA2 
    884  */ 
    885  
    886888 
    887889 
Note: See TracChangeset for help on using the changeset viewer.