summaryrefslogtreecommitdiff
path: root/TAO/tao/LRU_Connection_Purging_Strategy.cpp
diff options
context:
space:
mode:
authoroci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-05-23 14:06:37 +0000
committeroci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-05-23 14:06:37 +0000
commit2a58065e41f0cee6169aed5eddce9b5c52962e63 (patch)
tree2f2f28af464a737f6dc5ee2a72d346c143e45fc5 /TAO/tao/LRU_Connection_Purging_Strategy.cpp
parent05ab5ce28ae110eefc7453e8fa7807ebeef9ed32 (diff)
downloadATCD-2a58065e41f0cee6169aed5eddce9b5c52962e63.tar.gz
ChangeLogTag: Wed May 23 09:04:35 2001 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'TAO/tao/LRU_Connection_Purging_Strategy.cpp')
-rw-r--r--TAO/tao/LRU_Connection_Purging_Strategy.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/LRU_Connection_Purging_Strategy.cpp b/TAO/tao/LRU_Connection_Purging_Strategy.cpp
index 3cc795cfeec..f97016d0132 100644
--- a/TAO/tao/LRU_Connection_Purging_Strategy.cpp
+++ b/TAO/tao/LRU_Connection_Purging_Strategy.cpp
@@ -1,7 +1,7 @@
// $Id$
#include "LRU_Connection_Purging_Strategy.h"
-#include "Cache_Entries.h"
+#include "Transport.h"
ACE_RCSID(tao, LRU_Connection_Purging_Strategy, "$Id$")
@@ -19,8 +19,8 @@ TAO_LRU_Connection_Purging_Strategy::~TAO_LRU_Connection_Purging_Strategy (void)
void
-TAO_LRU_Connection_Purging_Strategy::update_item (TAO_Cache_IntId& int_id)
+TAO_LRU_Connection_Purging_Strategy::update_item (TAO_Transport* transport)
{
- int_id.purging_order (this->order_++);
+ transport->purging_order (this->order_++);
}