Changeset 73889 in vbox
- Timestamp:
- Aug 25, 2018 1:27:37 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 124606
- Location:
- trunk
- Files:
-
- 1 added
- 2 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) -
trunk/src/VBox/Runtime/Makefile.kmk
r73879 r73889 543 543 common/rand/randadv.cpp \ 544 544 common/rand/randparkmiller.cpp \ 545 common/rest/RTCRestClientApiBase.cpp \ 545 546 common/rest/RTCRestJsonPrimaryCursor.cpp \ 546 547 common/rest/RTCRestObjectBase.cpp \
Note:
See TracChangeset
for help on using the changeset viewer.