aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/programs/Xserver/hw/nxagent/Args.c
Commit message (Collapse)AuthorAgeFilesLines
* Args.c: adapt message to use same format as similar messagespr/extend_manpageUlrich Sibiller2020-06-291-1/+1
|
* manpage and usage output: add -irlimitUlrich Sibiller2020-06-291-0/+1
| | | | Fixes ArcticaProject/nx-libs#796
* Extend some manpage entriesUlrich Sibiller2020-06-291-1/+1
| | | | | | | Fixes ArcticaProject/nx-libs#241 Fixes ArcticaProject/nx-libs#495 Fixes ArcticaProject/nx-libs#535 Fixes ArcticaProject/nx-libs#565
* nxagent: re-implement timeout handlingUlrich Sibiller2020-04-071-2/+0
| | | | | | Option -timeout used the screensaver facility. This patch changes that to an own timer that is independent. This effectly means we can drop most of the derived screensaving stuff in a follow-up commit.
* Error.c: make nxagentClientsLogName a pointerUlrich Sibiller2020-01-051-1/+11
| | | | no more hardcoded string length
* nxagent: central check for keyboard clone modeUlrich Sibiller2020-01-051-1/+14
|
* Args.c: more debug outputUlrich Sibiller2020-01-051-0/+3
|
* Args.c: do not parse nx/nx marker as optionUlrich Sibiller2020-01-051-9/+32
| | | | slight optimization
* Args.c: fix: do not modify options stringUlrich Sibiller2020-01-051-2/+9
| | | | | This resulted in a garbled option string on reconnect where everything after the first '=' was lost!
* Keyboard.c: use "\0" instead of "0"Ulrich Sibiller2020-01-051-3/+3
|
* Args.c: reformat switch blocksUlrich Sibiller2019-11-151-135/+22
| | | | This makes them much more readable
* Args.c: Unify formattingUlrich Sibiller2019-11-151-188/+91
|
* Args.c: do not print function name in errors or warningsUlrich Sibiller2019-11-151-6/+6
|
* Args.c: scope improvementsUlrich Sibiller2019-11-151-29/+16
|
* Args.c: simplify options string allocationUlrich Sibiller2019-11-151-18/+4
|
* Args.c: fix clipboard=0 or -clipboard 0Ulrich Sibiller2019-11-151-1/+1
| | | | This should disable clipboard but effictively did activate clipboard=both.
* Args.c: remove unreachable codeUlrich Sibiller2019-11-151-24/+0
| | | | | | Right at the beginnigng of nxagentParseSingleOption we check for "clipboard" and prepare argv and argc accordingly for ddxProcessArgument. The removed code thus could never be reached.
* Args.c: fix unitialized variableUlrich Sibiller2019-11-151-0/+1
| | | | | | | "clipboard=something" does not need to be passed on, so return after setting nxagentOptions accordingly. This fixes [nx-X11/programs/Xserver/hw/nxagent/Args.c:1584]: (error) Uninitialized variable: argc
* Fix segfault in argument parsingUlrich Sibiller2019-10-031-0/+3
| | | | | | | | Using arguments that need a parameter without providing one would lead a segfault due to calling strcmp() will NULL. Triggered by running "nxagent -ac :1 -options nx/nx,fullscreen" or similar, Fixes ArcticaProject/nx-libs#847
* Args.c: make autograb available via options file, too.Ulrich Sibiller2019-08-271-0/+13
|
* Args.c: Add command line option -autograb.Ulrich Sibiller2019-08-271-0/+9
|
* Args.c: use SAFE_freeUlrich Sibiller2019-08-061-8/+6
|
* Drop Ipaq supportUlrich Sibiller2019-06-271-9/+0
| | | | Did we ever provide a binary?
* nxagent: Determine nxagentProgName only onceUlrich Sibiller2019-05-101-7/+21
| | | | | | | also add TEST prints, init nxagentProgName with NULL and add const where it was missing. Fixes ArcticaProject/nx-libs#803
* Revert "nxagent: rework Bool handling"Ulrich Sibiller2019-02-151-16/+16
| | | | | | | | | | | | This reverts commit 16cd2bbe1c4425e3fa557f9ca0723aa94a50b071. It turned out that I had missed some of the Booleans being actually tristate variables. I think I can fix this (they do not need to be tristate) but I revert this for now to get back to a working state (there are reports about non-working fullscreen mode and reconnect problems). Refers to ArcticaProject/nx-libs#772
* nxagent: rework Bool handlingUlrich Sibiller2019-02-111-16/+16
| | | | drop "== False", "== 0", "== True" and "== 0" for nxagentOptions and Traps
* Use basename() to derive nxagentProgName cleanly.Mike Gabriel2018-08-241-2/+5
|
* Call checkX2goAgent much earlier (in ddxProcessArgument) and adapt ↵Mike Gabriel2018-08-241-1/+14
| | | | NXAGENTWINDOWNAMELENGTH to its result.
* Args.c: allow options to contain URL encoded charactersUlrich Sibiller2018-08-241-0/+35
| | | | | | Same as in nxcomp's option handling. We really only need it for "," (%2C) and "=" (%3D), currently, but it can handle all encoded characters.
* Args.c: rename nxagentParseOptions to nxagentParseSingleOptionUlrich Sibiller2018-08-241-14/+14
| | | | new name is more descriptive
* nxagent: rearrange nx options in usageUlrich Sibiller2018-02-281-4/+4
| | | | | make them appear in the nx section. Also separate the nx section from the other options by an extra emtpy line.
* nxagent: Also provide auto DPI feature via nx/nx option 'autodpi', taking ↵Mike Gabriel2018-02-271-0/+19
| | | | only effect on session startups.
* nxagent: Auto-detect client-side DPI at session startup.Simon Matter2018-02-271-0/+8
|
* hw/nxagent/: Stop using non-portable '__progname', set up our own ↵Mike Gabriel2018-02-261-3/+5
| | | | 'nxagentProgName' instead and pass it around where needed.
* hw/nxagent/: Use <function>(void) rather than <function>().Mike Gabriel2018-02-261-6/+6
|
* nxagent/Args.c: Mention new -options cmdline parameter in usage info.Simon Matter2018-02-261-0/+1
| | | | Fixes ArcticaProject/nx-libs#639
* nxagent: Add -version cmdline option.Simon Matter2018-02-261-0/+11
| | | | Fixes ArcticaProject/nx-libs#653.
* nxagent: Add support for optionally enabling/disabling the magic pixel feature.Mike Gabriel2018-02-261-0/+18
| | | | Fixes ArcticaProject/nx-libs#657.
* Args.c: simplify nxagentGetDialogName()Ulrich Sibiller2018-01-071-11/+4
|
* Args.c, Error.[ch]: introduce own length macro for nxagentClientsLogNameUlrich Sibiller2018-01-071-1/+1
|
* Args.c: use strdup instead of mallocUlrich Sibiller2018-01-071-35/+7
|
* Replace hardcoded string lengths by macrosUlrich Sibiller2018-01-071-53/+18
|
* add option keyconv=(auto|on|off)Ulrich Sibiller2017-11-231-0/+19
| | | | | | | | | | | | Adds a new option called "keyconv" to control keycode conversion. Before commit 2f2ade61a8823bad012737b2b388dcc168cccbbf keycode conversion was activated if the client was Linux and client side rules and/or model was "evdev". The only (and undocumented) way to disable that was providing a value different from "linux" for the "client" option (which had no other effect). The mentioned commit removed the dependency on Linux and so there was no way anymore to disable keycode conversion.
* simply free() callsUlrich Sibiller2017-11-211-6/+2
| | | | free() can handle NULL so there's no need to check this ourselves
* Args.c: simplify nxagentProcessOptionsFile()Ulrich Sibiller2017-11-181-20/+16
|
* Args.c: Fix compile bug with DEBUG enabledUlrich Sibiller2017-11-181-1/+1
|
* Fix options parsing on reconnectUlrich Sibiller2017-11-181-34/+40
| | | | | | Commit 3f7b3001988bf921e6cd860f03a6256b1451ee3d was incomplete: the options parameter was not parsed as a string on reconnect. It was always assumed to be a filename.
* treat options parameter as option string if it starts with nx/nxUlrich Sibiller2017-07-251-1/+16
| | | | | | | | | | This way one can easily pass options to nxagent run as Xnest replacement without having to create a temporary options file. Please note that it is not of much use for normal sessions. Options passed like this cannot be changed after startup so a reconnect may not work as expected. Fixes ArcticaProject/nx-libs#476
* rename nxagentOptionFile to nxagentOptionsFilenameUlrich Sibiller2017-07-241-13/+13
|
* pass filename as parameter to nxagentProcessOptionsFile()Ulrich Sibiller2017-07-231-14/+14
| | | | Do not use global variables where it is not necessary.