mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-12-11 21:14:36 +08:00
72 lines
2.0 KiB
C
72 lines
2.0 KiB
C
/*
|
|
*
|
|
* OBEX Client
|
|
*
|
|
* Copyright (C) 2007-2008 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
|
|
*
|
|
*/
|
|
|
|
#include <glib.h>
|
|
#include <gdbus.h>
|
|
|
|
#include <bluetooth/bluetooth.h>
|
|
#include <gw-obex.h>
|
|
|
|
struct session_data {
|
|
gint refcount;
|
|
bdaddr_t src;
|
|
bdaddr_t dst;
|
|
uint8_t channel;
|
|
const char *target; /* OBEX Target UUID */
|
|
int target_len;
|
|
uint16_t uuid; /* Bluetooth Service Class */
|
|
gchar *name;
|
|
gchar *path; /* Session path */
|
|
gchar *transfer_path; /* Transfer path */
|
|
int sock;
|
|
int fd;
|
|
DBusConnection *conn;
|
|
DBusMessage *msg;
|
|
GwObex *obex;
|
|
GwObexXfer *xfer;
|
|
char buffer[4096];
|
|
int filled;
|
|
uint64_t size;
|
|
uint64_t transferred;
|
|
gchar *filename;
|
|
gchar *agent_name;
|
|
gchar *agent_path;
|
|
guint agent_watch;
|
|
GPtrArray *pending;
|
|
};
|
|
|
|
typedef void (*session_callback_t) (struct session_data *session,
|
|
void *user_data);
|
|
|
|
int session_create(const char *source,
|
|
const char *destination, const char *target,
|
|
session_callback_t function, void *user_data);
|
|
int session_set_agent(struct session_data *session, const char *name,
|
|
const char *path);
|
|
int session_send(struct session_data *session, const char *filename,
|
|
const char *remotename);
|
|
int session_pull(struct session_data *session,
|
|
const char *type, const char *filename,
|
|
session_callback_t function, void *user_data);
|
|
int session_register(struct session_data *session);
|