Koichiro IWAO
ee3a38f93d
xrdp: librfxcodc link fix
...
as same fix as done in 4a815d5 for libpainter
8 years ago
Jay Sorg
b24f8d8fef
remove a debug message
8 years ago
Jay Sorg
409878666f
xrdp: handle 3 byte PDU
8 years ago
Pavel Roskin
49ae93130a
Improve message about listening socket is a wrong state
8 years ago
Alex Illsley
47124df4ed
new options for xrdp.ini disableSSlv3=yes and tls_ciphers=HIGH and code to implement
8 years ago
Jay Sorg
bb7bac2d9b
add region intersect
8 years ago
Jay Sorg
58c777783b
add more advances region support using pixman
8 years ago
jsorg71
8353baab3d
Merge pull request #390 from proski/june21
...
Cleanups and C++ compatibility
8 years ago
Pavel Roskin
7cd9a5c4af
Cast fifo_remove_item() to XRDP_ENC_DATA* or XRDP_ENC_DATA_DONE* as needed
8 years ago
Pavel Roskin
5829323ad8
Use g_new or g_new0 when C++ compiler would complain about implicit cast
8 years ago
Pavel Roskin
aaa89ad4e6
Use const unsigned for hex arrays
...
Some constants are too big for the signed type.
8 years ago
Pavel Roskin
aeeb3d2c2e
Fix warnings detected by -Wwrite-strings
8 years ago
Pavel Roskin
6f5feb61e0
Shorten and clarify log window messages
...
Specify display in the "login failed" message. Print the section name
that wasn't found. Remove stdout message about missing section,
xrdp_wm_log_msg() already writes to stdout.
8 years ago
Pavel Roskin
a1b7de5679
Make xrdp_wm_log_msg() log its output
...
Accept variable arguments and the log level in xrdp_wm_log_msg(). Remove
logging that is done automatically now.
8 years ago
Pavel Roskin
27ba5b4e86
Rewrite add_string_to_logwindow()
...
Make static, fix formatting, shorten some variable names, use += to add
to variable, accept immutable strings.
8 years ago
Akira Taniguchi
b6ba95e179
Update xrdp_keyboard.ini
9 years ago
Pavel Roskin
77b380c0b5
Fix format warnings in log_message() calls
9 years ago
Pavel Roskin
be1d034f91
Report pid and listening address/port for xrdp and xrdp-sesman
...
For xrdp-sesman, don't report that the daemon is listening to a port if
it fails to attach to that port. Don't use LOG_LEVEL_ALWAYS for startup
message, it's not a critical error.
9 years ago
Pavel Roskin
ae5bb5bf9c
Fix incorrect use of "it's" and "its", adjust wording
9 years ago
speidy
b38dcf1bb0
xrdp_wm: fix for multimon, draw login window and log window on primary
...
monitor
9 years ago
Jay Sorg
dd906c3fc8
remove tabs
9 years ago
Jay Sorg
d27270ab1f
remove tabs
9 years ago
speidy
62799b8b10
xrdp_wm: in multimon scenario, draw log window and login window on
...
primary monitor
9 years ago
Pavel Roskin
b95dc9e12f
Remove extraneous color initialization
9 years ago
Pavel Roskin
ca9cbcafc8
Typo fixes
9 years ago
Pavel Roskin
bd0b1acf79
Fix format warnings caused by g_writeln("")
9 years ago
Jay Sorg
dbf6bcc8be
remove some warnings
9 years ago
Jay Sorg
6a692c96cf
remove some warnings
9 years ago
NerdKnight
99ebe1340f
Fix compile error "format not a string literal and no format arguments [-Werror=format-security]"
9 years ago
jsorg71
034ee36f9c
Merge pull request #341 from proski/sanity-checks
...
Sanity checks
9 years ago
Jay Sorg
38241f2a0b
Fix all format warnings and some unused variable warnings
9 years ago
Jay Sorg
7393579205
Don't attempt to intercept SIGKILL, it doesn't work on any OS
9 years ago
Pavel Roskin
e0a9c769e0
Be more specific in error messages about PID file location
9 years ago
Pavel Roskin
3eb495f425
Check if rsakeys.ini exists on startup, exit if it's missing
9 years ago
Pavel Roskin
86ec50789c
Move all sanity checks to a separate function xrdp_sanity_check()
9 years ago
Pavel Roskin
7642675ddf
Use "dist_" prefix to minimize use of EXTRA_DIST
...
"dist" is ignored in presense of "noinst", so keep noinst_man_MANS.
9 years ago
Pavel Roskin
59a5fb0ddb
Move headers from EXTRA_DIST to sources, sort alphabetically
...
There should be no functional difference.
9 years ago
Pavel Roskin
92a6833e9b
Fix typos
9 years ago
Pavel Roskin
81779ddb01
Use lowercase program names for syslog
...
Other programs typically use the same case as their execulables.
9 years ago
Pavel Roskin
dcab7552db
Stop redefining libdir, use moduledir for ${libdir}/xrdp
...
libdir is for shared and static libraries. Some xrdp libraries are loaded
dynamically from a non-standard directory, so they are used like modules.
Having separate libdir and moduledir would eventually allow to separate
dynamically loaded modules from shared libraries.
9 years ago
Pavel Roskin
22e808a186
Add missing spaces in the strings that are split for line wrapping
9 years ago
Pavel Roskin
9717e7392a
Spell "return value", not "returnvalue"
9 years ago
Pavel Roskin
eacfb00050
Declare xrdp_mm_frame_ack() in xrdp.h, it's used in xrdp_wm.c
9 years ago
Pavel Roskin
02c981e796
More spelling fixes found by codespell and aspell
9 years ago
Pavel Roskin
f8cb1588ef
Replace "charactor" with "character" everywhere
9 years ago
Pavel Roskin
a452d8d36a
Merge AM_CFLAGS and INCLUDES info AM_CPPFLAGS
...
AM_CPPFLAGS is for flags passed to the preprocessor, such as defines and
includes. AM_CFLAGS is for flags affecting the compiler, such as debug
and optimization settings.
INCLUDES is an obsolete name. Users can pass INCLUDES and break
compilation. AM_CPPFLAGS is more explicit that the flags come from
Automake and should not be overridden.
9 years ago
Pavel Roskin
ee1a237685
Remove GOT_PREFIX, it's a broken hack of limited utility
...
To add flags to the compiler, CFLAGS, CPPFLAGS or LDFLAGS can be used on
the configure command line.
The need to add flags depends on the location of the headers and
libraries of the dependencies, which is orthogonal to the directory where
xrdp will be installed.
The implementation in configure.ac has a stray closing bracket, making
GOT_PREFIX true even if --prefix is not passed.
The implementation is inconsistent - the only affected makefiles are for
xrdp and libxrdp.
Changing rpath manually is wrong in most cases. Libtool should be able to
set rpath correctly on its own.
Using $(prefix)/lib ignores the libdir setting. For many 64-bit systems,
/usr/lib is used for 32-bit libraries. Adding 32-bit libraries to the
rpath slows down 64-bit executables, as the dynamic loader searches for
libraries in a wrong directory.
There is no way to disable GOT_PREFIX if --prefix has to be passed.
Fedora RPM patches configure.ac and needs to rerun autoconf and automake
after that.
9 years ago
jsorg71
c6f27eb96c
Merge pull request #304 from proski/devel
...
Minor fixes
9 years ago
Koichiro IWAO
16a284d1dc
Drop exec permission of non executable files
9 years ago
Pavel Roskin
964e860072
Run through codespell
9 years ago
Jay Sorg
f49e2058df
xrdp: change when using xrdp.ini hidelogwindow
9 years ago
Jay Sorg
418637f72d
xrdp: fix --kill
9 years ago
Jay Sorg
fd793bd213
rename g_tcp_can_recv to g_sck_can_recv
9 years ago
Jay Sorg
6974dc5c6d
remove some more generated files
9 years ago
itamarjp
960cc62a0e
add missing files into extra_dist,
...
this is required when using make dist to generate a tarball
9 years ago
Jay Sorg
6c23b85593
add timeout to trans_get_wait_objs_rw
9 years ago
Jay Sorg
5d73cbd636
set the source for chansrv
9 years ago
Jay Sorg
4a553e07af
update the module API
9 years ago
Jay Sorg
b56aa9832e
work on main loop changes
10 years ago
Thomas Spalinger
04b729ccd1
finish for supporting swiss german keyboard
10 years ago
jsorg71
b55231f18a
Merge pull request #226 from metalefty/freebsd/openpam
...
xrdp: xrdp_mm.c detect and use OpenPAM
10 years ago
Jay Sorg
33167a7c74
add frame acks and h264 codec mode basics
10 years ago
Koichiro IWAO
283a16115a
xrdp: xrdp_mm.c detect and use OpenPAM
...
OpenPAM is used in FreeBSD, NetBSD, DragonFly BSD and Mac OS X.
On the Linux system, Linux-PAM is used. Detect PAM during configure
and use which the system has.
10 years ago
Koichiro IWAO
ba2237a3c4
xrdp: fix -h -v option if xrdp.ini is invalid
...
- log_start should be called after help and version
- Fixes neutrinolabs/xrdp#33 .
10 years ago
Akira Taniguchi
2fc1f3b811
xrdp_keyboard.ini: Fix jp keyboard model
10 years ago
Koichiro IWAO
2212991bd7
Add Japanese keymap codes in xrdp_keyboard.ini
10 years ago
Mike Rostermund
b3cc8f75d9
Fix spelling error and typo
10 years ago
jsorg71
c39d2b0912
Merge pull request #178 from mgorny/altgr-keymap
...
altgr+shift/capslock support in keymaps
10 years ago
Anthony Agresta
6ddc43c4fc
vnc: Added delay_ms option. Fixes neutrinolabs/xrdp#182
10 years ago
jsorg71
dd00c8691c
Merge pull request #173 from moobyfr/default-autorun-ini
...
Set a value for the default autorun session
10 years ago
Michał Górny
cc3231272d
Install and enable 0415/pl keymap
10 years ago
Michał Górny
20a962b640
keymap: support combining shift & capslock with altgr
...
Add support for combining shift & caps lock keys with altgr so that
capital national characters can be written. There was some support for
shift+altgr in xrdp-keygen but it was never actually used.
10 years ago
BLINDAUER Emmanuel
4dcc186299
Set a value for the default autorun session
10 years ago
Jay Sorg
2badb31bf2
big endian fix
10 years ago
Jay Sorg
f73f314c2c
no logic change, indent
10 years ago
jsorg71
0d63263772
Merge pull request #137 from ArvidNorr/choose_shortcutdev
...
support for preferred combo box choice added
10 years ago
Jay Sorg
4afe769467
xrdp: encoder shutdown fix
10 years ago
Jay Sorg
a6d71388c8
xrdp: add tcutils to xrdp.ini
10 years ago
Jay Sorg
8397055e8b
move some hard code paths to defines in header
10 years ago
Jay Sorg
ffed349875
added option to set rdp crypto level to none
10 years ago
Jay Sorg
779f0bf470
add xrdp_keyboard.ini to Makefile.am
10 years ago
Jay Sorg
d99181aa78
xrdp: added xrdp_keyboard.ini
10 years ago
Jay Sorg
29b2e42279
xrdp: if PACKAGE_VERSION not defined, define as ???
10 years ago
Jay Sorg
b7d15c55ed
xrdp: don't include config.h unless HAVE_CONFIG_H is defined
10 years ago
Laxmikant Rashinkar
e4654b57ca
coverity: Resource leak (2nd round)
10 years ago
Laxmikant Rashinkar
a9d7c13147
coverity: read from pointer after free
10 years ago
Laxmikant Rashinkar
67119ecc81
coverity: array compared against 0
10 years ago
Laxmikant Rashinkar
56e43c4a38
Merge branch 'devel' of github.com:NeutrinoLabs/xrdp into devel
10 years ago
Laxmikant Rashinkar
27055d5762
coverity: improper use of negative value
10 years ago
Idan Freiberg
16929efb05
Merge branch 'devel' of https://github.com/neutrinolabs/xrdp into
...
devel
Conflicts:
libxrdp/xrdp_sec.c
10 years ago
Idan Freiberg
afdf638c7b
libxrdp, common: work on TLS mode
10 years ago
Laxmikant Rashinkar
0c63a8feb3
coverity: Dereference after null check
10 years ago
Laxmikant Rashinkar
a990287c46
coverity: fixed unchecked return value from library
10 years ago
Jay Sorg
1291d2dbbe
work on codec mode
10 years ago
Laxmikant Rashinkar
3bb31876e7
coverity: fixed resolution leak issues
10 years ago
Jay Sorg
c64b154475
small fix for rdp scancode file
10 years ago
speidy
aa0f039cef
xrdp: fix for prefilled username issue
11 years ago
Jay Sorg
7d5f7d1133
added --enable-rfxcodec
11 years ago
Idan Freiberg
9007deae6f
libxrdp: added an option to enforce security layer in xrdp.ini
11 years ago
Jay Sorg
2a5e28de34
default max_bpp to 32
11 years ago
Jay Sorg
0cabb4a565
32 bpp compress the alpha, leave room for biggest 32 bpp data
11 years ago
Jay Sorg
ac4adf483f
libxrdp: cursor big endian fix
11 years ago
Jay Sorg
5d49553919
work on 32 bit planar bitmap compressor
11 years ago
ArvidNorr
19ef9ea3b7
support for preferred combo box choice added
11 years ago
ArvidNorr
5030b97d24
added support for optional background image
11 years ago
Jay Sorg
59fa8df434
xrdp: don't show connection log unless there is a problem
...
Conflicts:
xrdp/xrdp_mm.c
11 years ago
Jay Sorg
ec44b9dca1
xrdp: update web site
11 years ago
Jay Sorg
8b1639b96b
xrdp: allow xrdp to listen in UDS
11 years ago
Jay Sorg
0ea5c248c3
turn on bulk compressor by default
11 years ago
Cocoon
138de5c348
remove 1 from default title string
11 years ago
Cocoon
bf43deabf1
make login screen window title configurable
11 years ago
speidy
fc753a9504
xrdp: xrdp_wm: changed the autologin logic
11 years ago
speidy
9e4f4159ef
xrdp: indentation fix
11 years ago
speidy
5ff8aee291
xrdp: for proxy modules, pass target ip to module (if ip passed-in from
...
client into domain field (starting with _))
11 years ago
Jay Sorg
9a3679b1c1
improve debugging dump jpeg for codec mode
11 years ago
Jay Sorg
0748f41101
set codec mode according to client
11 years ago
Jay Sorg
575fc9fb6f
work on codec mode jpeg
11 years ago
BLINDAUER Emmanuel
185aafd12d
Call cleanup for encoder
11 years ago
Jay Sorg
6d7e315b0c
work on surface command
11 years ago
Jay Sorg
50a1b1fdb9
work on codec mode jpeg
11 years ago
Laxmikant Rashinkar
40ec8a1714
Merge branch 'devel' of github.com:/neutrinolabs/xrdp into devel
11 years ago
Laxmikant Rashinkar
9470b031aa
xrdp_encoder: developer checkin
11 years ago
Jay Sorg
8f05bee238
xrdp: add an option to do md5 bitmap hash for bitmap cache
11 years ago
Jay Sorg
da0d0e687a
reduce the memory needed for crc16 bitmap cache lists
11 years ago
Jay Sorg
f66c5911a2
xrdp: speed up bitmap cache lru using linked list
11 years ago
Jay Sorg
f94f5bec1c
xrdp: speed up bitmap cache lookup using hash table
11 years ago
speidy
8372cce84d
o libxrdp: fastpath output, added cursor and palette now updates
...
o xrdp.ini: changed default behavior: always new cursors, always use
fastpath input and output.
11 years ago
Laxmikant Rashinkar
ac6717e32e
fixed some connection issues when using xorg driver mode
11 years ago
Laxmikant Rashinkar
883650700f
added support for using Xorg driver model
11 years ago
Jay Sorg
932d785deb
fast path changes, iso never reads now
11 years ago
jsorg71
1ce75182af
Merge pull request #111 from speidy/fastpath
...
libxrdp: Fastpath input
11 years ago
speidy
43f4d439ec
libxrdp: work on fastpath, length issue
11 years ago
Jay Sorg
12cbbf74e6
xrdp:no logic change, comments and printfs
11 years ago
speidy
1f1e803140
Merge ../../neutrinolabs/xrdp into fastpath
...
Conflicts:
libxrdp/libxrdp.c
libxrdp/libxrdp.h
libxrdp/xrdp_iso.c
libxrdp/xrdp_sec.c
libxrdp/xrdp_tcp.c
xrdp/xrdp.ini
11 years ago
Jay Sorg
e9e14f22f9
started work on fastpath, restructure PDU in
11 years ago
Laxmikant Rashinkar
1f51f62df9
Merge branch 'devel' of github.com:/neutrinolabs/xrdp into devel
11 years ago
Laxmikant Rashinkar
76a0901964
o --enable-load_pulse_modules changed to --enable-loadpulsemodules
...
o color entries in xrdp.ini file are now specfied using RGB format only
o login screen now works with pixel depth of 8, 15, 16 and 24 bits
11 years ago
Jay Sorg
8cd57e0710
added server_paint_rects
11 years ago
Laxmikant Rashinkar
c5c8324d91
Merge branch 'devel' of github.com:/neutrinolabs/xrdp into devel
11 years ago
Laxmikant Rashinkar
e95edef44e
fixed an issue where channels with uppercase names were not being recognized
11 years ago
speidy
80204e2536
libxrdp: work on fastpath input, added fastpath option to xrdp.ini
11 years ago
Jay Sorg
43e388b7e5
remove some warning, move gethostname to os_calls
11 years ago
Jay Sorg
7b7debd56a
comment spelling fixes from univention
11 years ago
Laxmikant Rashinkar
c96dd8df2b
made login screen fully customizable
11 years ago
Jay Sorg
885804cf14
Merge branch 'master' into devel
11 years ago
Koichiro IWAO
25d795796a
xrdp: set default encryption level to high
11 years ago
Jay Sorg
086481395c
Merge branch 'multimon' of git://github.com/speidy/xrdp into speidy-multimon
...
Conflicts:
common/xrdp_client_info.h
libxrdp/xrdp_iso.c
libxrdp/xrdp_sec.c
11 years ago
Jay Sorg
7176f14647
added options to set tcp send and recv buffer sizes
11 years ago
Jay Sorg
8d8ec92d02
xrdp: fix after a8 merge
11 years ago
Jay Sorg
c1b7cbd657
merges from authentic8
11 years ago
Jay Sorg
cff17f3038
xrdp: fix a crash in painter when invalid target is set
11 years ago
Jay Sorg
f75b9143e2
VUL: make sure cache entries are in range
11 years ago
Jay Sorg
06d92b787a
VUL: call libxrdp_disconnect if libxrdp_process_incomming fails
11 years ago
Jay Sorg
f75ec32e7c
xrdp fix typeo in cache macro
11 years ago
Jay Sorg
1a616a1b46
move text2bool to os_calls
11 years ago
speidy
8e76b68102
neutrinordp: clean old freerdp moduels, add config, fix for RFX codec to
...
work.
11 years ago
Jim Grandy
a308d2e25c
Fix errors cause by previous merge ( 2361914
)
11 years ago
Jim Grandy
b7b3d9ef28
Hand-apply patches (misc) from Authentic8: b18667d 6d22ada 95d93a3 433b49c b96f85f 8c32c46 f87f6b3 c93cce0 26ce9ce
11 years ago
jgrandy
26ae5a60a8
Merge: add /opt/xrdp/lib to rpath in xrdp, for libfreerdp
11 years ago
Jim Grandy
981741f55c
Hand-apply patch (compositing) from Authentic8: 5d5e470 81c9c29 b0c2c10 27d8a01 a96a217 e512090 a9a6762 9c02bfa bd26fcc c0d29d9 676dd35 3b26737
11 years ago
Jim Grandy
45b0bc9f17
Hand-apply patches (glyph cache) from Authentic8 branch: 653869c 30f23d4 74b015d 4e51e6d 2829087
11 years ago
Jim Grandy
1ae9a7f2b6
Hand-apply patches (drawing configuration) from Authentic8 branch: 34b92df f994298 38e2def
11 years ago
Jim Grandy
af4e42a08d
Hand-apply patches (rail) from Authentic8: bc68076
11 years ago
Jim Grandy
53311f2b25
Hand-apply patches (rail improvements) from Authentic8 branch: 6e15b4a 2c99e69 3f30429 aad2aaa 4f8481e 5117ac2 f3dcf1a
11 years ago
Jim Grandy
dfe5911b55
Hand-apply patches (rail improvements) from Authentic8 branch: 507694d, 0e21d45, 44447d5, e452e4f, 3d05576, dd69d8f
11 years ago
Jay Sorg
4a66be133f
CRC optimize
11 years ago
Jay Sorg
e602a28d5c
common: transport aware when app is terminating
11 years ago
Laxmikant Rashinkar
474d17d556
xrdp: added support for forcing credentials on command line
11 years ago
speidy
151cc7b5d1
libxrdp: add xrdp.ini multi-mon config
12 years ago
Jay Sorg
42329bda00
adding xrdp.ini option to turn off new cursors
12 years ago
Jay Sorg
d4d6a65adb
merge from pmhahn
12 years ago
Jay Sorg
9f175d307b
no logic changes, cleanup and copyright year updates
12 years ago
Jay Sorg
64d821461c
fix for autologin
12 years ago
Jay Sorg
19a9ed47dc
xrdp: use full path for loading xrdp modules
12 years ago
Laxmikant Rashinkar
c5ebc9ae51
a debug version of xrdp/xrdp.ini was previously commited
12 years ago
Laxmikant Rashinkar
ef32626a9b
Merge branch 'fuse_speedup'
12 years ago
Laxmikant Rashinkar
97c483c8b3
swapped cb_lookup and cb_readdir
12 years ago
Jay Sorg
214a7b52bc
merge from ghomem
12 years ago
Gustavo Homem
23584f7e5f
remove legacy operation on rsakeys.ini
12 years ago
Gustavo Homem
e702ac79d4
don't copy stock rsakeys.init
12 years ago
Jay Sorg
6beddfde28
new(color) cursors working now
12 years ago
Jay Sorg
12f7cd64f1
work on new(color) cursors
12 years ago
Jay Sorg
494150f1a9
work on new(color) cursors
12 years ago
Jay Sorg
30f64f27b6
xrdp: xrdp_mm.c fix some warnings and code cleanup
12 years ago
Guan-Zhong Huang
6fd7deb510
Fix compilation error without PAM
12 years ago
Laxmikant Rashinkar
297fdaf1c6
o removed square brackets inside commented code in xrdp.ini
...
because due to parsing bug
12 years ago
Laxmikant Rashinkar
78d4e19258
o early checkin for drive redirection
...
o basic drive redirection is working
o functions currently supported: open:
read, write, create, get/set attribute
o requires latest NeutrinoRDP to work
o note: clipboard is broken because of the move from
linked lists to inodes in the FUSE code
12 years ago
ArvidNorr
fe69d2f07b
Comments and debug when blocking channels added. Fix for potential vulnerability in log.c
12 years ago
ArvidNorr
72c99794ee
Merge pull request #59 from ArvidNorr/morelogging
...
More logging for debug and trace.
12 years ago
ArvidNorr
9aa0cb4e61
Merge pull request #58 from ArvidNorr/pam-cont
...
PAM additions mostly for a gateway situation
12 years ago
ArvidNorr
876f356dad
deny access if group is undefined
12 years ago
ArvidNorr
0770f217fa
PAM error text can be configured
12 years ago
Philipp Hahn
f2b7aafb4e
X11rdp: fix spelling mistakes
...
exit -> exist
$mn -> $mod_name
folowed -> followed
blocket -> blocked
12 years ago
Philipp Hahn
ab60300e9a
xrdp: Ignore channels and logging sections
...
Ignore two more sections in xrdp.ini when looking for default session.
12 years ago
ArvidNorr
975d44e99f
More logging added
12 years ago
LawrenceK
266db3150b
refactor and use test2bool instead of duplicated code testing for on,yes,true, non zero
12 years ago
LawrenceK
c9e934c320
bug in find_name_in_lists
12 years ago
LawrenceK
36cf7532fa
Keep osirium master the same as freerdp master
...
Revert "Make this the osirium default xrdp file"
This reverts commit d26cb83a4f
.
12 years ago
ArvidNorr
a2bbbd8cc3
Display PAM error in gateway setup, use domain name as IP/DNS, changed how the socket is closed
12 years ago
LawrenceK
fd2d098f68
Merge branch 'master' of git://github.com/FreeRDP/xrdp
12 years ago