25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-24 16:23:40 +01:00

Add function short_bare_jid/1.

SVN Revision: 1395
This commit is contained in:
Jean-Sébastien Pédron 2008-07-01 09:12:59 +00:00
parent 8c33e12616
commit 83a33726ce
2 changed files with 21 additions and 14 deletions

View File

@ -8,6 +8,8 @@
exmpp_iq:error_without_original/2 and the new exmpp_iq:error_without_original/2 and the new
exmpp_jid:make_bare_jid/1. exmpp_jid:make_bare_jid/1.
* src/jlib.erl: Add function short_bare_jid/1.
2008-06-30 Jean-Sébastien Pédron <js.pedron@meetic-corp.com> 2008-06-30 Jean-Sébastien Pédron <js.pedron@meetic-corp.com>
* src/Makefile.in: Remove the -I flag for exmpp includes; the * src/Makefile.in: Remove the -I flag for exmpp includes; the

View File

@ -63,7 +63,8 @@
ip_to_list/1, ip_to_list/1,
from_old_jid/1, from_old_jid/1,
to_old_jid/1, to_old_jid/1,
short_jid/1]). short_jid/1,
short_bare_jid/1]).
-include("jlib.hrl"). -include("jlib.hrl").
@ -731,6 +732,10 @@ to_old_jid(#jid{user = Node, resource = Resource,
JID#jid{user = Node1, resource = Resource1, JID#jid{user = Node1, resource = Resource1,
luser = LNode1, lresource = LResource1}. luser = LNode1, lresource = LResource1}.
short_jid(JID0) -> short_jid(JID) ->
JID = to_old_jid(JID0), JID1 = to_old_jid(JID),
{JID#jid.luser, JID#jid.lserver, JID#jid.lresource}. {JID1#jid.luser, JID1#jid.lserver, JID1#jid.lresource}.
short_bare_jid(JID) ->
JID1 = to_old_jid(exmpp_jid:jid_to_bare_jid(JID)),
{JID1#jid.luser, JID1#jid.lserver, JID1#jid.lresource}.