Changeset 102562 in vbox for trunk/include
- Timestamp:
- Dec 11, 2023 8:32:42 AM (16 months ago)
- svn:sync-xref-src-repo-rev:
- 160708
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/http-common.h
r98103 r102562 196 196 197 197 /** 198 * Returns the name of the HTTP method. 198 * Returns the name of the HTTP method as a string. 199 * 199 200 * @returns Read only string. 200 * @param enmMethod The HTTP method to name.201 * @param enmMethod The HTTP method to return string for. 201 202 */ 202 203 RTR3DECL(const char *) RTHttpMethodToStr(RTHTTPMETHOD enmMethod); 203 204 205 /** 206 * Returns the name of the HTTP status as a string. 207 * 208 * @returns Read only string. 209 * @param enmSts The HTTP status to return string for. 210 */ 204 211 RTR3DECL(const char *) RTHttpStatusToStr(RTHTTPSTATUS enmSts); 205 212 213 /** 214 * Initializes an HTTP header list. 215 * 216 * @returns VBox status code. 217 * @param hHdrList Header list to initialize. 218 */ 206 219 RTR3DECL(int) RTHttpHeaderListInit(PRTHTTPHEADERLIST hHdrList); 207 220 221 /** 222 * Destroys an HTTP header list. 223 * 224 * @param hHdrList Header list to destroy. 225 * The object will be invalid on return. 226 */ 208 227 RTR3DECL(void) RTHttpHeaderListDestroy(RTHTTPHEADERLIST hHdrList); 209 228
Note:
See TracChangeset
for help on using the changeset viewer.