summaryrefslogtreecommitdiff
path: root/client/commands.c
AgeCommit message (Collapse)AuthorFilesLines
2013-02-21client: Remove the now obsolete command parsing functionsPatrik Flykt1-26/+1
2013-02-21client: Factor out monitor commandPatrik Flykt1-129/+30
2013-02-21client: Factor out technology enable and disable commandsPatrik Flykt1-40/+48
2013-02-21client: Factor out scan commandPatrik Flykt1-12/+19
2013-02-21client: Factor out disconnect commandPatrik Flykt1-12/+13
2013-02-21client: Factor out connect commandPatrik Flykt1-12/+13
2013-02-21client: Factor out technologies commandPatrik Flykt1-9/+4
2013-02-21client: Factor out state commandPatrik Flykt1-9/+4
2013-02-21client: Print out any errors on command executionPatrik Flykt1-2/+6
2013-02-21client: Factor out config commandPatrik Flykt1-110/+130
Using the lengths returned from the property setting functions more than one config option can be specified on the command line. Use the simple argument parsing function as getopt is slightly limited in functionality.
2013-02-21client: Factor out services commandPatrik Flykt1-60/+45
Update the help printout as well, '--properties' is not mandatory. Add a simple argument parsing function.
2013-02-21client: Factor out help implementationPatrik Flykt1-70/+82
Use command table to produce help text. Add description texts for various options and use both option and description arrays to produce option help texts. Remove old help printing function.
2013-02-21client: Create prototypes for all commandsPatrik Flykt1-0/+114
Provide the infrastructure to factor out the commands.
2012-12-11client: Fix up header inclusion messMarcel Holtmann1-6/+5
2012-12-11client: Add missing includes of config.hMarcel Holtmann1-0/+4
2012-12-11client: Fix the mangled copyright statementMarcel Holtmann1-2/+5
In addition relax it to GPLv2 or later to make linking against newer versions of readline library possible.
2012-10-17client: Add Remove() method support for serviceTomasz Bursztyka1-0/+5
2012-10-17client: Fix some memory leaks in commands partTomasz Bursztyka1-81/+78
2012-09-24client: Fix AutoConnect configurationJustin Maggard1-8/+12
Changing the AutoConnect setting via connmanctl does not work, due to the mistaken use of || instead of &&. This patch fixes the issue, and tries to make things a little more readable.
2012-09-19client: Enter interactive shell when no command is specifiedMarcel Holtmann1-1/+0
2012-09-14client: Add printout about connmanctl experimental statusPatrik Flykt1-1/+2
The arguments and output may see changes, warn users that the current ones are experimental.
2012-09-14client: Change 'tech' to 'technologies'Patrik Flykt1-2/+2
Update argument and man page to use 'technologies'
2012-09-14client: Implement command line client commandsCeara Chewning1-0/+526
Implement all of the command handling that connmanctl uses. Both the main program and interactive mode should use the same commands, thus there is no separation between the abilities of the two modes.