diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2007-05-01 16:18:06 +0000 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2007-05-01 16:18:06 +0000 |
commit | f1f7175cc09e95e93e15b8d4b1f4019e07ab3813 (patch) | |
tree | 679d8bcc93597f30d7e8fd27e7bd3256f4d6c187 /src/bytestream-ibb.h | |
parent | 6a60e5f90e80af0f48753b35b93dafc3de00d81e (diff) |
perform IBB initiations after the SI was accepted
Diffstat (limited to 'src/bytestream-ibb.h')
-rw-r--r-- | src/bytestream-ibb.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/bytestream-ibb.h b/src/bytestream-ibb.h index 9acd3f485..7c1d8b83e 100644 --- a/src/bytestream-ibb.h +++ b/src/bytestream-ibb.h @@ -33,10 +33,10 @@ typedef enum BYTESTREAM_IBB_STATE_LOCAL_PENDING = 0, /* We accepted SI request. * bytestream specific init steps not yet performed */ - BYTESTREAM_IBB_STATE_LOCAL_ACCEPTED, + BYTESTREAM_IBB_STATE_ACCEPTED, /* Remote contact accepted the SI request. - * bytestream specific init steps not yet performed */ - BYTESTREAM_IBB_STATE_REMOTE_ACCEPTED, + * bytestream specific initiation started */ + BYTESTREAM_IBB_STATE_INITIATING, /* Bytestream open */ BYTESTREAM_IBB_STATE_OPEN, BYTESTREAM_IBB_STATE_CLOSED, @@ -75,6 +75,9 @@ GType gabble_bytestream_ibb_get_type (void); (G_TYPE_INSTANCE_GET_CLASS ((obj), GABBLE_TYPE_BYTESTREAM_IBB,\ GabbleBytestreamIBBClass)) +void +gabble_bytestream_ibb_initiation (GabbleBytestreamIBB *ibb); + gboolean gabble_bytestream_ibb_send (GabbleBytestreamIBB *ibb, guint len, gchar *str); |