![David Fort](/assets/img/avatar_default.png)
The rework introduce a stateful dynamic channel treatment, so that we can take early decisions for data packet (dropping all the current packet or pass it), but also reassemble important packets like channel creation.
18 lines
292 B
CMake
18 lines
292 B
CMake
|
|
set(MODULE_NAME pf_channels)
|
|
set(SOURCES
|
|
pf_channel_rdpdr.c
|
|
pf_channel_rdpdr.h
|
|
pf_channel_drdynvc.c
|
|
pf_channel_drdynvc.h
|
|
)
|
|
|
|
if (WITH_PROXY_EMULATE_SMARTCARD)
|
|
list(APPEND SOURCES
|
|
pf_channel_smartcard.c
|
|
pf_channel_smartcard.h
|
|
)
|
|
endif()
|
|
|
|
add_library(${MODULE_NAME} OBJECT ${SOURCES})
|