Moving gtcp_proxy and tcp_proxy to the tools/devel directory

This commit is contained in:
Alexandre Quesnel 2021-03-26 01:31:54 +00:00
parent 6479d54eaa
commit 16fe9a021a
15 changed files with 25 additions and 7 deletions

2
.gitignore vendored
View File

@ -44,7 +44,7 @@ sesman/sesman.ini
stamp-h1
test-driver
tests/memtest/memtest
tests/tcp_proxy/tcp_proxy
tools/devel/tcp_proxy/tcp_proxy
*.trs
xrdp/xrdp
xrdp/xrdp.ini

View File

@ -64,7 +64,8 @@ SUBDIRS = \
xrdpapi \
pkgconfig \
$(XRDPVRDIR) \
tests
tests \
tools
distclean-local:
-rm -f xrdp_configure_options.h

View File

@ -128,9 +128,17 @@ xrdp
├── mc ·········· media center module
├── neutrinordp · RDP client module for proxying RDP connections using NeutrinoRDP
├── pkgconfig ··· pkg-config configuration
├── sesman ······ session manager for xrdp
├── scripts ····· build scripts
├┬─ sesman ······ session manager for xrdp
|├── chansrv ···· channel server for xrdp
|├── libscp ····· authorization library
|└── tools ······ session management tools for sys admins
├── tcutils ····· QT based utility program for thin clients
├── tests ······· tests for the code
├┬─ tools ······· tools
|└┬─ devel ······ development tools
| ├── gtcp_proxy GTK app that forwards TCP connections to a remote host
| └── tcp_proxy · CLI app that forwards TCP connections to a remote host
├── vnc ········· VNC client module for xrdp
├── vrplayer ···· QT player redirecting video/audio to clients over xrdpvr channel
├── xrdp ········ main server code

View File

@ -399,7 +399,9 @@ AC_CONFIG_FILES([
sesman/tools/Makefile
tests/Makefile
tests/memtest/Makefile
tests/tcp_proxy/Makefile
tools/Makefile
tools/devel/Makefile
tools/devel/tcp_proxy/Makefile
vnc/Makefile
xrdpapi/Makefile
xrdp/Makefile

View File

@ -1,8 +1,6 @@
EXTRA_DIST = \
gtcp_proxy \
readme.txt
SUBDIRS = \
memtest \
tcp_proxy
memtest

3
tools/Makefile.am Normal file
View File

@ -0,0 +1,3 @@
SUBDIRS = \
devel

6
tools/devel/Makefile.am Normal file
View File

@ -0,0 +1,6 @@
EXTRA_DIST = \
gtcp_proxy
SUBDIRS = \
tcp_proxy