- Timestamp:
- Dec 4, 2013 3:01:20 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/pjsua2/pjsip/include/pjsua2/siptypes.hpp
r4663 r4672 30 30 #include <vector> 31 31 32 /**33 * @defgroup PJSUA2_TYPES Data structure34 * @ingroup PJSUA2_Ref35 * @{36 */37 38 32 /** PJSUA2 API is inside pj namespace */ 39 33 namespace pj … … 41 35 42 36 /** 37 * @defgroup PJSUA2_SIP_Types SIP Types 38 * @ingroup PJSUA2_DS 39 * @{ 40 */ 41 42 /** 43 43 * Credential information. Credential contains information to authenticate 44 44 * against a service. … … 75 75 /* 76 76 * Digest AKA credential information. Note that when AKA credential 77 * is being used, the \a data field of this #pjsip_cred_info is77 * is being used, the \a data field of this pjsip_cred_info is 78 78 * not used, but it still must be initialized to an empty string. 79 * Please see \refPJSIP_AUTH_AKA_API for more information.79 * Please see PJSIP_AUTH_AKA_API for more information. 80 80 */ 81 81 … … 146 146 147 147 /** 148 * TLS protocol method from #pjsip_ssl_method.148 * TLS protocol method from pjsip_ssl_method. 149 149 * 150 150 * Default is PJSIP_SSL_UNSPECIFIED_METHOD (0), which in turn will … … 166 166 * verification result: 167 167 * - If \a verifyServer is disabled, TLS transport will just notify 168 * the application via #pjsip_tp_state_callback with state168 * the application via pjsip_tp_state_callback with state 169 169 * PJSIP_TP_STATE_CONNECTED regardless TLS verification result. 170 170 * - If \a verifyServer is enabled, TLS transport will be shutdown … … 173 173 * error, otherwise PJSIP_TP_STATE_CONNECTED will be notified. 174 174 * 175 * In any cases, application can inspect #pjsip_tls_state_info in the175 * In any cases, application can inspect pjsip_tls_state_info in the 176 176 * callback to see the verification detail. 177 177 * … … 184 184 * verification result: 185 185 * - If \a verifyClient is disabled, TLS transport will just notify 186 * the application via #pjsip_tp_state_callback with state186 * the application via pjsip_tp_state_callback with state 187 187 * PJSIP_TP_STATE_CONNECTED regardless TLS verification result. 188 188 * - If \a verifyClient is enabled, TLS transport will be shutdown … … 191 191 * error, otherwise PJSIP_TP_STATE_CONNECTED will be notified. 192 192 * 193 * In any cases, application can inspect #pjsip_tls_state_info in the193 * In any cases, application can inspect pjsip_tls_state_info in the 194 194 * callback to see the verification detail. 195 195 * … … 382 382 string info; 383 383 384 /** Transport flags (see #pjsip_transport_flags_e). */384 /** Transport flags (see pjsip_transport_flags_e). */ 385 385 unsigned flags; 386 386 … … 860 860 /* Utilities */ 861 861 #ifndef SWIG 862 //! @cond Doxygen_Suppress 862 863 void readIntVector( ContainerNode &node, 863 864 const string &array_name, … … 876 877 const string &array_name, 877 878 const SipHeaderVector &headers) throw(Error); 879 //! @endcond 878 880 #endif // SWIG 879 881 882 /** 883 * @} PJSUA2 884 */ 885 880 886 } // namespace pj 881 887 882 /**883 * @} PJSUA2884 */885 886 888 887 889
Note: See TracChangeset
for help on using the changeset viewer.