2 # DX cluster user routines
4 # Copyright (c) 1998 - Dirk Koopman G1TLH
22 # initialise the system
28 die "need a filename in User\n" if !$fn;
29 $dbm = tie %u, MLDBM, $fn, O_CREAT|O_RDWR, 0666 or die "can't open user file: $fn ($!)\n";
44 # new - create a new user
50 die "can't create existing call $call in User\n!" if $u{$call};
53 $self->{call} = $call;
59 # get - get an existing user
75 my $call = $self->{call};
86 my $call = $self->{call};
91 # close - close down a user
97 $self->{lastin} = time;