jingle-ibb/ibb.h
author Nicolas Cornu <nicolas.cornu@ensi-bourges.fr>
Tue, 10 Aug 2010 01:48:51 +0200
changeset 87 43e7d48f6d84
parent 73 6f061c11acfb
child 104 060e69633902
permissions -rw-r--r--
Fix bugs. The module should now be able to send session-initiate.

#ifndef __JINGLEIBB_H__
#define __JINGLEIBB_H__ 1

#define NS_JINGLE_TRANSPORT_IBB "urn:xmpp:jingle:transports:ibb:0"
#define NS_TRANSPORT_IBB "http://jabber.org/protocol/ibb"

#define IBB_BLOCK_SIZE_MAX 2048

typedef struct {
  /* Size of the blocks */
  guint blocksize;

  /* The identifiant of the transfer */
  const gchar *sid;

  const gchar *seq;
  
} JingleIBB;

#endif