From 02cc0066d9bc9a6ab913e45033dcbe84f87c3aed Mon Sep 17 00:00:00 2001 From: Mikel Astiz Date: Fri, 4 May 2012 14:39:37 +0200 Subject: [PATCH] obexd: Flip parameter order in transfer API This minor change makes the transfer API more consistent with the parameter-order used in the session API. --- obexd/client/session.c | 4 ++-- obexd/client/transfer.c | 8 ++++---- obexd/client/transfer.h | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/obexd/client/session.c b/obexd/client/session.c index 8523a86fb..f8f8da4bf 100644 --- a/obexd/client/session.c +++ b/obexd/client/session.c @@ -970,7 +970,7 @@ guint obc_session_get(struct obc_session *session, const char *type, return 0; } - transfer = obc_transfer_get(targetfile, name, type, apparam, + transfer = obc_transfer_get(type, name, targetfile, apparam, apparam_size, err); if (transfer == NULL) return 0; @@ -989,7 +989,7 @@ guint obc_session_send(struct obc_session *session, const char *filename, return 0; } - transfer = obc_transfer_put(filename, name, NULL, NULL, 0, NULL, 0, + transfer = obc_transfer_put(NULL, name, filename, NULL, 0, NULL, 0, err); if (transfer == NULL) return 0; diff --git a/obexd/client/transfer.c b/obexd/client/transfer.c index 2277a95b3..37963c852 100644 --- a/obexd/client/transfer.c +++ b/obexd/client/transfer.c @@ -339,9 +339,9 @@ done: return TRUE; } -struct obc_transfer *obc_transfer_get(const char *filename, +struct obc_transfer *obc_transfer_get(const char *type, const char *name, - const char *type, + const char *filename, const void *params, size_t psize, GError **err) { @@ -360,9 +360,9 @@ struct obc_transfer *obc_transfer_get(const char *filename, return transfer; } -struct obc_transfer *obc_transfer_put(const char *filename, +struct obc_transfer *obc_transfer_put(const char *type, const char *name, - const char *type, + const char *filename, const void *contents, size_t csize, const void *params, size_t psize, GError **err) diff --git a/obexd/client/transfer.h b/obexd/client/transfer.h index aebba7fbd..94bb800d5 100644 --- a/obexd/client/transfer.h +++ b/obexd/client/transfer.h @@ -27,14 +27,14 @@ typedef void (*transfer_callback_t) (struct obc_transfer *transfer, gint64 transferred, GError *err, void *user_data); -struct obc_transfer *obc_transfer_get(const char *filename, +struct obc_transfer *obc_transfer_get(const char *type, const char *name, - const char *type, + const char *filename, const void *params, size_t psize, GError **err); -struct obc_transfer *obc_transfer_put(const char *filename, +struct obc_transfer *obc_transfer_put(const char *type, const char *name, - const char *type, + const char *filename, const void *contents, size_t csize, const void *params, size_t psize, GError **err); -- 2.47.3