From: Mikel Astiz <mikel.astiz@xxxxxxxxxxxx> Required arguments are passed as formal parameters in the D-Bus API, and an additional dictionary is used to pass target-specific parameters. This will allow future extensions without breaking the method signature. --- doc/client-api.txt | 25 ++++++++++++++++--------- 1 files changed, 16 insertions(+), 9 deletions(-) diff --git a/doc/client-api.txt b/doc/client-api.txt index a467d40..cfb4ec9 100644 --- a/doc/client-api.txt +++ b/doc/client-api.txt @@ -11,22 +11,29 @@ Service org.openobex.client Interface org.openobex.Client Object path / -Methods object CreateSession(dict device) +Methods object CreateSession(string destination, dict args) - Create a new OBEX session. The device is configured - via properties like in SendFiles. + Create a new OBEX session for the given remote address. - void RemoveSession(object session) + The last parameter is a dictionary to hold optional or + type-specific parameters. Typical parameters that can + be set in this dictionary include the following: - Unregister session and abort pending transfers. + string "Target" : type of session to be created + string "Source" : local address to be used + byte "Channel" -Properties string Target + The currently supported targets are the following: - string Source + "FTP" + "MAP" + "OPP" + "PBAP" + "SYNC" - string Destination + void RemoveSession(object session) - byte Channel + Unregister session and abort pending transfers. Session hierarchy ================= -- 1.7.7.6 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html