- Timestamp:
- Dec 28, 2016 3:40:07 AM (8 years ago)
- Location:
- pjproject/branches/projects/uwp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/uwp
- Property svn:mergeinfo changed
/pjproject/trunk (added) merged: 5209,5212-5234,5237-5253,5255,5257-5292,5294-5297,5299-5332,5334-5394,5396-5438,5440-5469,5471-5496,5498-5510
- Property svn:mergeinfo changed
-
pjproject/branches/projects/uwp/pjnath/include/pjnath/nat_detect.h
r3553 r5513 175 175 * asynchronously. Application can register a callback to be notified 176 176 * when such detection has completed. 177 * 178 * See also #pj_stun_detect_nat_type2() which supports IPv6. 177 179 * 178 180 * @param server STUN server address. … … 198 200 199 201 /** 202 * Variant of #pj_stun_detect_nat_type() that supports IPv6. 203 * 204 * @param server STUN server address. 205 * @param stun_cfg A structure containing various STUN configurations, 206 * such as the ioqueue and timer heap instance used 207 * to receive network I/O and timer events. 208 * @param user_data Application data, which will be returned back 209 * in the callback. 210 * @param cb Callback to be registered to receive notification 211 * about detection result. 212 * 213 * @return If this function returns PJ_SUCCESS, the procedure 214 * will complete asynchronously and callback will be 215 * called when it completes. For other return 216 * values, it means that an error has occured and 217 * the procedure did not start. 218 */ 219 PJ_DECL(pj_status_t) pj_stun_detect_nat_type2(const pj_sockaddr *server, 220 pj_stun_config *stun_cfg, 221 void *user_data, 222 pj_stun_nat_detect_cb *cb); 223 224 225 /** 200 226 * @} 201 227 */
Note: See TracChangeset
for help on using the changeset viewer.