Changeset 73889 in vbox for trunk/include/iprt
- Timestamp:
- Aug 25, 2018 1:27:37 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/restbase.h
r73887 r73889 360 360 * @param a_hHttp The HTTP handle to prepare for transmitting. 361 361 */ 362 virtual int xmitPrepare(RTHTTP a_hHttp) = 0;362 virtual int xmitPrepare(RTHTTP a_hHttp) const = 0; 363 363 364 364 /** … … 368 368 * @param a_hHttp The HTTP handle the request was performed on. 369 369 */ 370 virtual void xmitComplete(int a_rcStatus, RTHTTP a_hHttp) = 0;370 virtual void xmitComplete(int a_rcStatus, RTHTTP a_hHttp) const = 0; 371 371 }; 372 372 … … 449 449 * @param a_rcStatus Negative numbers are IPRT errors, positive are HTTP status codes. 450 450 * @param a_hHttp The HTTP handle the request was performed on. 451 * This can be NIL_RTHTTP should something fail early, in 452 * which case it is possible receivePrepare() wasn't called. 451 453 */ 452 454 virtual int receiveComplete(int a_rcStatus, RTHTTP a_hHttp)
Note:
See TracChangeset
for help on using the changeset viewer.