Changeset 74202 in vbox for trunk/include/iprt
- Timestamp:
- Sep 11, 2018 10:48:41 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/http.h
r74126 r74202 332 332 333 333 /** 334 * Gets the number of headers specified by RTHttpAddHeader, RTHttpAddRawHeader or RTHttpSetHeaders. 335 * 336 * @returns Number of headers. 337 * @param hHttp The HTTP client handle. 338 * @note This can be slow and is only really intended for test cases and debugging! 339 */ 340 RTR3DECL(size_t) RTHttpGetHeaderCount(RTHTTP hHttp); 341 342 /** 343 * Gets a header by ordinal. 344 * 345 * Can be used together with RTHttpGetHeaderCount by test case and debug code to 346 * iterate headers specified by RTHttpAddHeader, RTHttpAddRawHeader or RTHttpSetHeaders. 347 * 348 * @returns Number of headers. 349 * @param hHttp The HTTP client handle. 350 * @note This can be slow and is only really intended for test cases and debugging! 351 */ 352 RTR3DECL(const char *) RTHttpGetByOrdinal(RTHTTP hHttp, size_t iOrdinal); 353 354 /** 334 355 * Sign all headers present according to pending "Signing HTTP Messages" RFC. 335 356 *
Note:
See TracChangeset
for help on using the changeset viewer.