Ignore:
Timestamp:
01/05/07 10:50:47 (17 years ago)
Author:
Kris Deugau
Message:

/branches/stable

Bump up the verbosity of deallocation notices
Required a new function (getBlockData) to extract the data
before deleting the block

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/cgi-bin/IPDB.pm

    r354 r356  
    2525        %allocated %free %routed %bigfree %IPDBacl
    2626        &initIPDBGlobals &connectDB &finish &checkDBSanity &allocateBlock &deleteBlock
    27         &mailNotify
     27        &getBlockData &mailNotify
    2828        );
    2929
     
    3333                @masterblocks %allocated %free %routed %bigfree %IPDBacl
    3434                &initIPDBGlobals &connectDB &finish &checkDBSanity &allocateBlock
    35                 &deleteBlock &mailNotify
     35                &deleteBlock &getBlockData &mailNotify
    3636                )]
    3737        );
     
    668668
    669669
     670## IPDB::getBlockData()
     671# Return custid, type, city, and description for a block
     672sub getBlockData {
     673  my $dbh = shift;
     674  my $block = shift;
     675
     676  my $sth = $dbh->prepare("select cidr,custid,type,city,description from searchme".
     677        " where cidr='$block'");
     678  $sth->execute();
     679  return $sth->fetchrow_array();
     680} # end getBlockData()
     681
     682
    670683## IPDB::mailNotify()
    671684# Sends notification mail to recipients regarding an IPDB operation
Note: See TracChangeset for help on using the changeset viewer.