[Mageia-sysadm] [168] - patch from Maarten Vanraes to fix the issue of keyprefix with ipv6

root at mageia.org root at mageia.org
Tue Dec 14 00:15:44 CET 2010


Revision: 168
Author:   misc
Date:     2010-12-14 00:15:43 +0100 (Tue, 14 Dec 2010)
Log Message:
-----------
- patch from Maarten Vanraes to fix the issue of keyprefix with ipv6

Modified Paths:
--------------
    identity/CatDap/trunk/lib/CatDap/Controller/user.pm

Modified: identity/CatDap/trunk/lib/CatDap/Controller/user.pm
===================================================================
--- identity/CatDap/trunk/lib/CatDap/Controller/user.pm	2010-12-13 23:12:16 UTC (rev 167)
+++ identity/CatDap/trunk/lib/CatDap/Controller/user.pm	2010-12-13 23:15:43 UTC (rev 168)
@@ -114,8 +114,20 @@
 
 sub get_keyprefix : Private {
     my ( $self, $c ) = @_;
-    return sprintf("%02x%02x%02x",split /\./,$c->req->address);
+    my $keyprefix;
+    if ($c->req->address =~ m/:/) {
+        my $address = $c->req->address;
+        $address =~ s/\[\]://;
+
+        # if we shift right 104 bits from 128 we have 24 bits left or 3 bytes.
+        $keyprefix = sprintf( "%06x", $address >> 104 );
+    }
+    else {
+        $keyprefix = sprintf( "%02x%02x%02x", split /\./, $c->req->address );
+    }
+    return $keyprefix;
 }
+
 =head2 index
 
 =cut
-------------- next part --------------
An HTML attachment was scrubbed...
URL: </pipermail/mageia-sysadm/attachments/20101214/d8e1e51e/attachment.html>


More information about the Mageia-sysadm mailing list