2017-06-18 21:27:56 +00:00
|
|
|
add_definitions(-DUNICODE -D_UNICODE -DRDBSS_TRACKER)
|
[RDBSS]
[RXCE]
[DDK]
Add an initial implementation of the RXCE and RDBSS libraries that are used to implement mini-redirectors
The associated headers are also added to DDK
The implementation is partial (really!) and is only working for read-only operations.
It leaks memory as hell (no refcounting implemented) and thus, objects freeing is not implemented.
It was tested with NFS41 driver. With such RDBSS, it's possible for the driver to mount a remote share, to list
files, to query their properties, to query volume properties, and finally to read files (with some corruption under
specific conditions).
Please refrain from committing in this (especially for modifying whitespaces or fixing comments...), this is still WIP
and under development, it would mess with my local changes!
In itself, it doesn't bring anything to ReactOS yet, as no mini redirector is available in ReactOS source tree.
This may come later on with NFS41.
More to follow...
CORE-11327
svn path=/trunk/; revision=74674
2017-05-26 20:52:18 +00:00
|
|
|
|
2017-07-02 17:04:12 +00:00
|
|
|
include_directories(${REACTOS_SOURCE_DIR}/drivers/filesystems/mup
|
|
|
|
${REACTOS_SOURCE_DIR}/sdk/lib/drivers/copysup)
|
[RDBSS]
[RXCE]
[DDK]
Add an initial implementation of the RXCE and RDBSS libraries that are used to implement mini-redirectors
The associated headers are also added to DDK
The implementation is partial (really!) and is only working for read-only operations.
It leaks memory as hell (no refcounting implemented) and thus, objects freeing is not implemented.
It was tested with NFS41 driver. With such RDBSS, it's possible for the driver to mount a remote share, to list
files, to query their properties, to query volume properties, and finally to read files (with some corruption under
specific conditions).
Please refrain from committing in this (especially for modifying whitespaces or fixing comments...), this is still WIP
and under development, it would mess with my local changes!
In itself, it doesn't bring anything to ReactOS yet, as no mini redirector is available in ReactOS source tree.
This may come later on with NFS41.
More to follow...
CORE-11327
svn path=/trunk/; revision=74674
2017-05-26 20:52:18 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
rdbss.c)
|
|
|
|
|
|
|
|
add_library(rdbsslib ${SOURCE})
|
2021-04-22 15:28:52 +00:00
|
|
|
target_link_libraries(rdbsslib PRIVATE pseh)
|
2017-06-18 21:27:56 +00:00
|
|
|
add_dependencies(rdbsslib bugcodes xdk)
|