make the major mod to make PC16 the master record for triggering the update
[spider.git] / perl / DXUser.pm
index f31b79e6da0ee167b0bd83e9de92d73ccbad73ea..e5a6a3b241c37915a9e75b4073abbf28ede33631 100644 (file)
@@ -78,8 +78,9 @@ $lrusize = 2000;
                  wantann_talk => '0,Talklike Anns,yesno',
                  wantpc90 => '1,Req PC90,yesno',
                  wantnp => '1,Req New Protocol,yesno',
-                 wantusers => '9,Want Users from node,yesno',
-                 wantsendusers => '9,Send users to node,yesno',
+                 wantpc16 => '9,Want Users from node,yesno',
+                 wantsendpc16 => '9,Send PC16,yesno',
+                 wantroutepc19 => '9,Route PC19,yesno',
                  lastoper => '9,Last for/oper,cldatetime',
                  nothere => '0,Not Here Text',
                  registered => '9,Registered?,yesno',
@@ -91,7 +92,6 @@ $lrusize = 2000;
 #no strict;
 sub AUTOLOAD
 {
-       my $self = shift;
        no strict;
        my $name = $AUTOLOAD;
   
@@ -102,12 +102,7 @@ sub AUTOLOAD
        # this clever line of code creates a subroutine which takes over from autoload
        # from OO Perl - Conway
        *$AUTOLOAD = sub {@_ > 1 ? $_[0]->{$name} = $_[1] : $_[0]->{$name}};
-       &$AUTOLOAD($self, @_);
-#      *{$AUTOLOAD} = sub {@_ > 1 ? $_[0]->{$name} = $_[1] : $_[0]->{$name}} ;
-#      if (@_) {
-#              $self->{$name} = shift;
-#      }
-#      return $self->{$name};
+       goto &$AUTOLOAD;
 }
 
 #use strict;
@@ -122,9 +117,9 @@ sub init
        confess "need a filename in User" if !$fn;
        $fn .= ".v2";
        if ($mode) {
-               $dbm = tie (%u, 'DB_File', $fn, O_CREAT|O_RDWR, 0666, $DB_BTREE) or confess "can't open user file: $fn ($!)";
+               $dbm = tie (%u, 'DB_File', $fn, O_CREAT|O_RDWR, 0666, $DB_BTREE) or confess "can't open user file: $fn ($!) [rebuild it from user_asc?]";
        } else {
-               $dbm = tie (%u, 'DB_File', $fn, O_RDONLY, 0666, $DB_BTREE) or confess "can't open user file: $fn ($!)";
+               $dbm = tie (%u, 'DB_File', $fn, O_RDONLY, 0666, $DB_BTREE) or confess "can't open user file: $fn ($!) [rebuild it from user_asc?]";
        }
        
        $filename = $fn;
@@ -585,14 +580,19 @@ sub wantann_talk
        return _want('ann_talk', @_);
 }
 
-sub wantusers
+sub wantpc16
+{
+       return _want('pc16', @_);
+}
+
+sub wantsendpc16
 {
-       return _want('users', @_);
+       return _want('sendpc16', @_);
 }
 
-sub wantsendusers
+sub wantroutepc16
 {
-       return _want('annsendusers', @_);
+       return _want('routepc16', @_);
 }
 
 sub wantlogininfo