summaryrefslogtreecommitdiff
path: root/client/services.c
AgeCommit message (Collapse)AuthorFilesLines
2013-04-04client: Move boolean parsing helper function to commands filePatrik Flykt1-26/+0
The helper function is not used elsewhere, thus move it.
2013-04-04client: Remove now obsolete functions and filesPatrik Flykt1-494/+0
Remove now obsolete files from services. Remove data_manager, dbus and technology .h and .c files. Update Makefile.am accordingly.
2013-04-04client: Add pretty-printing for ServicesChanged signalPatrik Flykt1-1/+119
Create a set of helper functions for pretty-printing both the added and the removed services dictionaries in the ServicesChanged signal.
2013-02-21client: Remove unused functionsPatrik Flykt1-60/+0
Remove find_service() as it is no longer used and match_service_name() which was only used by find_service().
2013-02-21client: Wait for a reply when removing servicePatrik Flykt1-9/+10
2013-02-21client: Fix setting service propertiesPatrik Flykt1-8/+25
Set properties for a service ignoring any cached lookups. Send the method call only if ther is no error. When sending, wait for the result in order to see if the method call succeeded.
2013-02-21client: Quick fix for parsing IPv6.Configuration correctlyPatrik Flykt1-7/+26
Fixes BMC#25925
2013-02-21client: Return number of arguments processed when setting propertiesPatrik Flykt1-3/+6
2013-02-21client: Return number of proxies addedPatrik Flykt1-3/+3
2013-02-21client: Return the number of added dict entriesPatrik Flykt1-3/+12
Check that both the dict entry name and data are non-NULL, the dict data does not start with '--' indicating a new option and that the length is not exhausted. Return the number of dict entries.
2013-02-21client: Return the number of added array entriesPatrik Flykt1-4/+9
Check that the array element is non-NULL, does not start with '--' indicating a new option or that the array length is not exhausted. Return the number of array elements added.
2013-02-21client: Add boolean parsing helper functionPatrik Flykt1-0/+26
2012-12-11client: Fix up header inclusion messMarcel Holtmann1-1/+1
2012-12-11client: Do not include headers from the coreMarcel Holtmann1-8/+9
2012-12-11client: Provide own D-Bus helper functionsMarcel Holtmann1-2/+2
2012-12-11client: Add missing includes of config.hMarcel Holtmann1-0/+4
2012-12-11client: Fix the mangled copyright statementMarcel Holtmann1-2/+3
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/+31
2012-10-17client: Fix various memory leaks in monitor and services partsTomasz Bursztyka1-2/+8
2012-09-24client: Show ready and online state correctlyJukka Rissanen1-3/+5
2012-09-14client: Service API command line client supportTudor Marcu1-0/+490
Support Service API message D-Bus message parsing. Functions are provided for configuring properties, iterating through D-Bus messages and extracting properties in a useful manner.