diff options
author | fiaxh <git@lightrise.org> | 2021-10-12 17:07:59 +0200 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2021-10-12 19:43:57 +0200 |
commit | 9285fd07bf555fdf46954c4adfa58751e44633a3 (patch) | |
tree | 6134c010f221e1505579d6031a1e1b1e1c28f23f /xmpp-vala/src/module/xep/0166_jingle | |
parent | 237081e5735b463b7528f4f3f52978eaf1bfeeca (diff) | |
download | dino-9285fd07bf555fdf46954c4adfa58751e44633a3.tar.gz dino-9285fd07bf555fdf46954c4adfa58751e44633a3.zip |
Fix compiler warnings ('Type `uint8[]' can not be used for a GLib.Object property')
Diffstat (limited to 'xmpp-vala/src/module/xep/0166_jingle')
-rw-r--r-- | xmpp-vala/src/module/xep/0166_jingle/content.vala | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/xmpp-vala/src/module/xep/0166_jingle/content.vala b/xmpp-vala/src/module/xep/0166_jingle/content.vala index be78c91a..b51bb26d 100644 --- a/xmpp-vala/src/module/xep/0166_jingle/content.vala +++ b/xmpp-vala/src/module/xep/0166_jingle/content.vala @@ -238,8 +238,15 @@ public class Xmpp.Xep.Jingle.Content : Object { } public class Xmpp.Xep.Jingle.ContentEncryption : Object { - public string encryption_ns { get; set; } - public string encryption_name { get; set; } - public uint8[] our_key { get; set; } - public uint8[] peer_key { get; set; } + public string encryption_ns; + public string encryption_name; + public uint8[] our_key; + public uint8[] peer_key; + + public class ContentEncryption(string encryption_ns, string encryption_name, uint8[] our_key = new uint8[]{}, uint8[] peer_key = new uint8[]{}) { + this.encryption_ns = encryption_ns; + this.encryption_name = encryption_name; + this.our_key = our_key; + this.peer_key = peer_key; + } }
\ No newline at end of file |