summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/ObjectCache.cpp
diff options
context:
space:
mode:
authorBrent Eagles <brent@zeroc.com>2006-06-05 10:48:21 +0000
committerBrent Eagles <brent@zeroc.com>2006-06-05 10:48:21 +0000
commit562f4bc294485e33282e062c144af69d48a7f38e (patch)
tree486ef4394e10afee89d89025fff965cac34e45c3 /cpp/src/IceGrid/ObjectCache.cpp
parentfixes for stringToIdentity (diff)
downloadice-562f4bc294485e33282e062c144af69d48a7f38e.tar.bz2
ice-562f4bc294485e33282e062c144af69d48a7f38e.tar.xz
ice-562f4bc294485e33282e062c144af69d48a7f38e.zip
first crack at address filtering checked in
Diffstat (limited to 'cpp/src/IceGrid/ObjectCache.cpp')
-rw-r--r--cpp/src/IceGrid/ObjectCache.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/ObjectCache.cpp b/cpp/src/IceGrid/ObjectCache.cpp
index 371f649e3c1..65cb547315e 100644
--- a/cpp/src/IceGrid/ObjectCache.cpp
+++ b/cpp/src/IceGrid/ObjectCache.cpp
@@ -372,7 +372,7 @@ ObjectEntry::allocated(const SessionIPtr& session)
{
Ice::IdentitySeq seq(1);
seq.push_back(_info.proxy->ice_getIdentity());
- ctl->objectIdFilter()->addAccept(seq);
+ ctl->identityFilter()->addAccept(seq);
}
catch(const Ice::ObjectNotExistException&)
{
@@ -395,7 +395,7 @@ ObjectEntry::released(const SessionIPtr& session)
{
Ice::IdentitySeq seq(1);
seq.push_back(_info.proxy->ice_getIdentity());
- ctl->objectIdFilter()->removeAccept(seq);
+ ctl->identityFilter()->removeAccept(seq);
}
catch(const Ice::ObjectNotExistException&)
{