Changeset 43645 in vbox
- Timestamp:
- Oct 15, 2012 2:10:03 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 4 edited
-
include/iprt/err.h (modified) (1 diff)
-
include/iprt/http.h (added)
-
src/VBox/Runtime/Makefile.kmk (modified) (1 diff)
-
src/VBox/Runtime/common/misc/http.cpp (added)
-
src/VBox/Runtime/include/internal/magics.h (modified) (1 diff)
-
src/VBox/Runtime/testcase/Makefile.kmk (modified) (2 diffs)
-
src/VBox/Runtime/testcase/tstHttp.cpp (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/err.h
r43416 r43645 1564 1564 /** @} */ 1565 1565 1566 /** @name HTTP status codes 1567 * @{ */ 1568 /** The server has not found anything matching the URI given. */ 1569 #define VERR_HTTP_NOT_FOUND (-885) 1570 /** The request is for something forbidden. Authorization will not help. */ 1571 #define VERR_HTTP_ACCESS_DENIED (-886) 1572 /** The server did not understand the request due to bad syntax. */ 1573 #define VERR_HTTP_BAD_REQUEST (-887) 1574 1575 1566 1576 /** @name RTManifest status codes 1567 1577 * @{ */ -
trunk/src/VBox/Runtime/Makefile.kmk
r43575 r43645 1327 1327 ifdef VBOX_WITH_LIBCURL 1328 1328 VBoxRT_SOURCES += common/misc/s3.cpp 1329 VBoxRT_SOURCES += common/misc/http.cpp 1329 1330 endif 1330 1331 VBoxRT_SOURCES.$(KBUILD_TARGET) = $(RuntimeR3_SOURCES.$(KBUILD_TARGET)) -
trunk/src/VBox/Runtime/include/internal/magics.h
r41549 r43645 69 69 /** Magic number for RTHEAPSIMPLEINTERNAL::uMagic. (Kyoichi Katayama) */ 70 70 #define RTHEAPSIMPLE_MAGIC UINT32_C(0x19590105) 71 /** The magic value for RTHTTPINTERNAL::u32Magic. (Karl May) */ 72 #define RTHTTP_MAGIC UINT32_C(0x18420225) 73 /** The value of RTHTTPINTERNAL::u32Magic after close. */ 74 #define RTHTTP_MAGIC_DEAD UINT32_C(0x19120330) 71 75 /** The magic value for RTLDRMODINTERNAL::u32Magic. (Alan Moore) */ 72 76 #define RTLDRMOD_MAGIC UINT32_C(0x19531118) -
trunk/src/VBox/Runtime/testcase/Makefile.kmk
r42503 r43645 65 65 tstFileLock \ 66 66 tstFork \ 67 tstHttp \ 67 68 tstRTFsQueries \ 68 69 tstRTFilesystem \ … … 225 226 tstRTDigest_SOURCES = tstRTDigest.cpp 226 227 228 tstHttp_TEMPLATE = VBOXR3TSTEXE 229 tstHttp_SOURCES = tstHttp.cpp 230 tstHttp_SDKS = VBOX_LIBCURL 231 227 232 tstDir_TEMPLATE = VBOXR3TSTEXE 228 233 tstDir_SOURCES = tstDir.cpp
Note:
See TracChangeset
for help on using the changeset viewer.

