diff options
Diffstat (limited to 'vala-xmpp/src/module/util.vala')
-rw-r--r-- | vala-xmpp/src/module/util.vala | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/vala-xmpp/src/module/util.vala b/vala-xmpp/src/module/util.vala new file mode 100644 index 00000000..4d762883 --- /dev/null +++ b/vala-xmpp/src/module/util.vala @@ -0,0 +1,13 @@ +namespace Xmpp { + string? get_bare_jid(string jid) { + return jid.split("/")[0]; + } + + bool is_bare_jid(string jid) { + return !jid.contains("/"); + } + + string? get_resource_part(string jid) { + return jid.split("/")[1]; + } +}
\ No newline at end of file |