aboutsummaryrefslogtreecommitdiffstats
path: root/lib/orber/test
diff options
context:
space:
mode:
authorLars Thorsen <[email protected]>2014-06-26 14:22:45 +0200
committerLars Thorsen <[email protected]>2014-06-26 14:22:45 +0200
commit603280480adac3ff698db538d26966ecfb46d499 (patch)
tree3855c8157f122612ffb895a2c028ec1c6583c3d4 /lib/orber/test
parent9d2abccb228e8288633d392240519138740d41e6 (diff)
downloadotp-603280480adac3ff698db538d26966ecfb46d499.tar.gz
otp-603280480adac3ff698db538d26966ecfb46d499.tar.bz2
otp-603280480adac3ff698db538d26966ecfb46d499.zip
[orber] Update documentation and fix testcase for IPv4/IPv6
Diffstat (limited to 'lib/orber/test')
-rw-r--r--lib/orber/test/orber_test_lib.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/orber/test/orber_test_lib.erl b/lib/orber/test/orber_test_lib.erl
index 6824d25aef..46ed26f210 100644
--- a/lib/orber/test/orber_test_lib.erl
+++ b/lib/orber/test/orber_test_lib.erl
@@ -166,7 +166,7 @@ get_host(Family) ->
{6, _, _} when Family == inet ->
"127.0.0.1";
{6, _, _} ->
- "0:0:0:0:0:FFFF:7F00:0001";
+ "0:0:0:0:0:0:0:0001";
_ ->
[IP] = ?match([_], orber:host()),
IP
@@ -192,16 +192,16 @@ get_loopback_interface(Family) ->
{6, _, _} when Family == inet ->
"127.0.0.2";
{6, _, _} ->
- "0:0:0:0:0:FFFF:7F00:0002";
+ "0:0:0:0:0:0:0:0002";
_ when Family == inet ->
"127.0.0.1";
_ ->
- "0:0:0:0:0:FFFF:7F00:0001"
+ "0:0:0:0:0:0:0:0001"
end;
_ when Family == inet ->
"127.0.0.1";
_ ->
- "0:0:0:0:0:FFFF:7F00:0001"
+ "0:0:0:0:0:0:0:0001"
end.
%%------------------------------------------------------------