about summary refs log tree commit diff stats
path: root/src/xmpp/xmpp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmpp/xmpp.h')
-rw-r--r--src/xmpp/xmpp.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/xmpp/xmpp.h b/src/xmpp/xmpp.h
index 3ab5fb56..93b02cb2 100644
--- a/src/xmpp/xmpp.h
+++ b/src/xmpp/xmpp.h
@@ -88,12 +88,16 @@ typedef struct disco_identity_t {
     char *category;
 } DiscoIdentity;
 
-typedef struct entity_capabilities_t {
-    DiscoIdentity *identity;
+typedef struct software_version_t {
     char *software;
     char *software_version;
     char *os;
     char *os_version;
+} SoftwareVersion;
+
+typedef struct entity_capabilities_t {
+    DiscoIdentity *identity;
+    SoftwareVersion *software_version;
     GSList *features;
 } EntityCapabilities;