mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-12-04 17:44:44 +08:00
902f089da6
This will allow setting the callback before the transfer is started, particularly to report queued transfer cancellations.
62 lines
2.1 KiB
C
62 lines
2.1 KiB
C
/*
|
|
*
|
|
* OBEX Client
|
|
*
|
|
* Copyright (C) 2007-2010 Marcel Holtmann <marcel@holtmann.org>
|
|
*
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
*/
|
|
|
|
struct obc_transfer_params {
|
|
guint8 *data;
|
|
size_t size;
|
|
};
|
|
|
|
struct obc_transfer;
|
|
|
|
typedef void (*transfer_callback_t) (struct obc_transfer *transfer,
|
|
gint64 transferred, GError *err,
|
|
void *user_data);
|
|
|
|
struct obc_transfer *obc_transfer_register(DBusConnection *conn,
|
|
GObex *obex,
|
|
const char *agent,
|
|
const char *filename,
|
|
const char *name,
|
|
const char *type,
|
|
struct obc_transfer_params *params);
|
|
|
|
void obc_transfer_unregister(struct obc_transfer *transfer);
|
|
|
|
gboolean obc_transfer_set_callback(struct obc_transfer *transfer,
|
|
transfer_callback_t func,
|
|
void *user_data);
|
|
|
|
int obc_transfer_get(struct obc_transfer *transfer);
|
|
int obc_transfer_put(struct obc_transfer *transfer);
|
|
|
|
int obc_transfer_get_params(struct obc_transfer *transfer,
|
|
struct obc_transfer_params *params);
|
|
const char *obc_transfer_get_buffer(struct obc_transfer *transfer, size_t *size);
|
|
void obc_transfer_set_buffer(struct obc_transfer *transfer, char *buffer);
|
|
void obc_transfer_clear_buffer(struct obc_transfer *transfer);
|
|
|
|
void obc_transfer_set_name(struct obc_transfer *transfer, const char *name);
|
|
const char *obc_transfer_get_path(struct obc_transfer *transfer);
|
|
gint64 obc_transfer_get_size(struct obc_transfer *transfer);
|
|
int obc_transfer_set_file(struct obc_transfer *transfer);
|