- Fix dst acl
- Refactor empty validation of splay trees
/*
- * $Id: ACLARP.cc,v 1.14 2005/05/08 06:36:45 hno Exp $
+ * $Id: ACLARP.cc,v 1.15 2005/05/08 06:53:58 hno Exp $
*
* DEBUG: section 28 Access Control
* AUTHOR: Duane Wessels
bool
ACLARP::empty () const
{
- return data == NULL;
+ return data->empty();
}
/* ==== BEGIN ARP ACL SUPPORT ============================================= */
/*
- * $Id: ACLDestinationDomain.cc,v 1.9 2005/05/08 06:36:45 hno Exp $
+ * $Id: ACLDestinationDomain.cc,v 1.10 2005/05/08 06:53:58 hno Exp $
*
* DEBUG: section 28 Access Control
* AUTHOR: Duane Wessels
bool
ACLDestinationDomain::empty () const
{
- return data == NULL;
+ return data->empty();
}
DestinationDomainLookup DestinationDomainLookup::instance_;
/*
- * $Id: ACLExtUser.cc,v 1.7 2005/05/08 06:36:45 hno Exp $
+ * $Id: ACLExtUser.cc,v 1.8 2005/05/08 06:53:58 hno Exp $
*
* DEBUG: section 28 Access Control
* AUTHOR: Duane Wessels
bool
ACLExtUser::empty () const
{
- return data == NULL;
+ return data->empty();
}
ACL *
bool
ACLIP::empty () const
{
- return data == NULL;
+ return data->empty();
}
int
bool
ACLIdent::empty () const
{
- return data == NULL;
+ return data->empty();
}
ACL *