summaryrefslogtreecommitdiff
path: root/src/mod_sip.erl
diff options
context:
space:
mode:
authorEvgeniy Khramtsov <ekhramtsov@process-one.net>2015-11-24 18:44:13 +0300
committerEvgeniy Khramtsov <ekhramtsov@process-one.net>2015-11-24 18:44:13 +0300
commit95265dd3ad8e149d94d08e1a73970fb0bbf55b49 (patch)
treea00a134cf0148a121ea505809cef0d9d49799652 /src/mod_sip.erl
parentMake Riak working on R18 (diff)
Move JID related functions to jid.erl (#847)
Diffstat (limited to 'src/mod_sip.erl')
-rw-r--r--src/mod_sip.erl14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mod_sip.erl b/src/mod_sip.erl
index 1e4044b1..c8c95337 100644
--- a/src/mod_sip.erl
+++ b/src/mod_sip.erl
@@ -160,8 +160,8 @@ locate(_SIPMsg) ->
ok.
find(#uri{user = User, host = Host}) ->
- LUser = jlib:nodeprep(User),
- LServer = jlib:nameprep(Host),
+ LUser = jid:nodeprep(User),
+ LServer = jid:nameprep(Host),
if LUser == <<"">> ->
to_me;
true ->
@@ -192,7 +192,7 @@ action(#sip{method = <<"REGISTER">>, type = request, hdrs = Hdrs,
true ->
register;
false ->
- {auth, jlib:nameprep(ToURI#uri.host)}
+ {auth, jid:nameprep(ToURI#uri.host)}
end;
false ->
deny
@@ -223,7 +223,7 @@ action(#sip{method = Method, hdrs = Hdrs, type = request} = Req, SIPSock) ->
true ->
find(ToURI);
false ->
- LServer = jlib:nameprep(FromURI#uri.host),
+ LServer = jid:nameprep(FromURI#uri.host),
{relay, LServer}
end;
false ->
@@ -250,8 +250,8 @@ check_auth(#sip{method = Method, hdrs = Hdrs, body = Body}, AuthHdr, _SIPSock) -
from
end,
{_, #uri{user = User, host = Host}, _} = esip:get_hdr(Issuer, Hdrs),
- LUser = jlib:nodeprep(User),
- LServer = jlib:nameprep(Host),
+ LUser = jid:nodeprep(User),
+ LServer = jid:nameprep(Host),
case lists:filter(
fun({_, Params}) ->
Username = esip:get_param(<<"username">>, Params),
@@ -299,7 +299,7 @@ make_response(Req, Resp) ->
esip:make_response(Req, Resp, esip:make_tag()).
at_my_host(#uri{host = Host}) ->
- is_my_host(jlib:nameprep(Host)).
+ is_my_host(jid:nameprep(Host)).
is_my_host(LServer) ->
gen_mod:is_loaded(LServer, ?MODULE).