Revert "new version of ip address storage"
[spider.git] / perl / DXUser.pm
index a2617a31884d80dd632c4193dba45928e9a8d4ee..3497fa8af71e4eb41b3d8bba230dc26e5449ff86 100644 (file)
@@ -92,7 +92,7 @@ $noips = 4;
                  believe => '1,Believable nodes,parray',
                  lastping => '1,Last Ping at,ptimelist',
                  maxconnect => '1,Max Connections',
-                 ip => '1,IP addresses,piplist',
+                 ip => '1,IP address',
                 );
 
 #no strict;
@@ -189,21 +189,6 @@ sub del_file
        unlink "$main::local_data/users.v3";
 }
 
-# IP address handling
-# this allows one to ask whether an IP address has been used with this node or let's one set an IP address for this node.
-sub ip
-{
-       my $self = shift;
-       my $node = shift;
-       my $ipin = shift;
-
-       $self->{ip} = {} unless ref $self->{ip};
-       my $ref = $self->{ip};
-       delete $ref->{''};
-       $ref->{$node} = [$ipin, $main::systime] if $ipin;
-       return $ref->{$node}->[0];
-}
-
 #
 # periodic processing
 #