summaryrefslogtreecommitdiff
path: root/gobex/gobex.h
blob: 01a871c5806d21270760f73f58db339f5ad854b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
 *
 *  OBEX library with GLib integration
 *
 *  Copyright (C) 2011  Intel Corporation. All rights reserved.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 *
 *  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
 *
 */

#ifndef __GOBEX_H
#define __GOBEX_H

#include <glib.h>

#include <gobex/gobex-packet.h>

typedef enum {
	G_OBEX_TRANSPORT_STREAM,
	G_OBEX_TRANSPORT_PACKET,
} GObexTransportType;

typedef struct _GObex GObex;

typedef void (*GObexRequestFunc) (GObex *obex, GObexPacket *req,
							gpointer user_data);
typedef void (*GObexResponseFunc) (GObex *obex, GError *err, GObexPacket *rsp,
							gpointer user_data);
typedef void (*GObexDisconnectFunc) (GObex *obex, gpointer user_data);

gboolean g_obex_send(GObex *obex, GObexPacket *pkt);

guint g_obex_send_req(GObex *obex, GObexPacket *req, GObexResponseFunc func,
							gpointer user_data);
gboolean g_obex_cancel_req(GObex *obex, guint req_id);

void g_obex_set_request_function(GObex *obex, GObexRequestFunc func,
							gpointer user_data);

void g_obex_set_disconnect_function(GObex *obex, GObexDisconnectFunc func,
							gpointer user_data);

GObex *g_obex_new(GIOChannel *io, GObexTransportType transport_type);

GObex *g_obex_ref(GObex *obex);
void g_obex_unref(GObex *obex);

#endif /* __GOBEX_H */