| 27 #include "jabber.h" |
27 #include "jabber.h" |
| 28 |
28 |
| 29 /* Implementation of XEP-0115 */ |
29 /* Implementation of XEP-0115 */ |
| 30 extern GHashTable *capstable; |
30 extern GHashTable *capstable; |
| 31 |
31 |
| 32 typedef struct _JabberIdentity JabberCapsIdentity; |
|
| 33 |
|
| 34 struct _JabberCapsClientInfo { |
32 struct _JabberCapsClientInfo { |
| 35 GList *identities; /* JabberCapsIdentity */ |
33 GList *identities; /* JabberIdentity */ |
| 36 GList *features; /* char * */ |
34 GList *features; /* char * */ |
| 37 GList *forms; /* xmlnode * */ |
35 GList *forms; /* xmlnode * */ |
| 38 }; |
36 }; |
| 39 |
37 |
| 40 #if 0 |
38 #if 0 |