summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/ObjectCache.cpp
diff options
context:
space:
mode:
authorBrent Eagles <brent@zeroc.com>2006-06-05 16:03:09 +0000
committerBrent Eagles <brent@zeroc.com>2006-06-05 16:03:09 +0000
commit64cc25d19077e937dac847c82b3ea62c5746a51e (patch)
tree80a8c6bc2594bef177acbdff14f342ee4b4283a9 /cpp/src/IceGrid/ObjectCache.cpp
parentAdded IceSSL::DistinguishedName (diff)
downloadice-64cc25d19077e937dac847c82b3ea62c5746a51e.tar.bz2
ice-64cc25d19077e937dac847c82b3ea62c5746a51e.tar.xz
ice-64cc25d19077e937dac847c82b3ea62c5746a51e.zip
- Changes to align dynamic filtering with the current Glacier2Filters wiki
proposal. - Some 3.1.0 prep work for the VC 6.0 windows installers.
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 65cb547315e..29132c8c221 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->identityFilter()->addAccept(seq);
+ ctl->identities()->add(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->identityFilter()->removeAccept(seq);
+ ctl->identities()->remove(seq);
}
catch(const Ice::ObjectNotExistException&)
{