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
60
61
62
63
64
65
66
67
68
69
|
#ifndef __SPICE_CLIENT_CHANNEL_H__
#define __SPICE_CLIENT_CHANNEL_H__
G_BEGIN_DECLS
#include "spice-types.h"
#include "spice-channel-enums.h"
#define SPICE_TYPE_CHANNEL (spice_channel_get_type ())
#define SPICE_CHANNEL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SPICE_TYPE_CHANNEL, SpiceChannel))
#define SPICE_CHANNEL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SPICE_TYPE_CHANNEL, SpiceChannelClass))
#define SPICE_IS_CHANNEL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SPICE_TYPE_CHANNEL))
#define SPICE_IS_CHANNEL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SPICE_TYPE_CHANNEL))
#define SPICE_CHANNEL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SPICE_TYPE_CHANNEL, SpiceChannelClass))
typedef struct spice_msg_in spice_msg_in;
typedef struct spice_msg_out spice_msg_out;
typedef enum
{
SPICE_CHANNEL_NONE = 0,
SPICE_CHANNEL_OPENED = 10,
SPICE_CHANNEL_CLOSED,
SPICE_CHANNEL_ERROR_CONNECT = 20,
SPICE_CHANNEL_ERROR_TLS,
SPICE_CHANNEL_ERROR_LINK,
SPICE_CHANNEL_ERROR_AUTH,
SPICE_CHANNEL_ERROR_IO,
} SpiceChannelEvent;
struct _SpiceChannel
{
GObject parent;
spice_channel *priv;
/* Do not add fields to this struct */
};
struct _SpiceChannelClass
{
GObjectClass parent_class;
/* virtual methods */
void (*handle_msg)(SpiceChannel *channel, spice_msg_in *msg);
void (*channel_up)(SpiceChannel *channel);
/* signals */
void (*spice_channel_event)(SpiceChannel *channel, SpiceChannelEvent event);
#if 0
/*
* If adding fields to this struct, remove corresponding
* amount of padding to avoid changing overall struct size
*/
gpointer _spice_reserved[42];
#endif
};
GType spice_channel_get_type(void) G_GNUC_CONST;
typedef void (*spice_msg_handler)(SpiceChannel *channel, spice_msg_in *in);
SpiceChannel *spice_channel_new(SpiceSession *s, int type, int id);
void spice_channel_destroy(SpiceChannel *channel);
gboolean spice_channel_connect(SpiceChannel *channel);
void spice_channel_disconnect(SpiceChannel *channel, SpiceChannelEvent event);
G_END_DECLS
#endif /* __SPICE_CLIENT_CHANNEL_H__ */
|