diff options
author | Brent Eagles <brent@zeroc.com> | 2006-06-05 10:48:21 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2006-06-05 10:48:21 +0000 |
commit | 562f4bc294485e33282e062c144af69d48a7f38e (patch) | |
tree | 486ef4394e10afee89d89025fff965cac34e45c3 /cpp/src/IceGrid/SessionI.cpp | |
parent | fixes for stringToIdentity (diff) | |
download | ice-562f4bc294485e33282e062c144af69d48a7f38e.tar.bz2 ice-562f4bc294485e33282e062c144af69d48a7f38e.tar.xz ice-562f4bc294485e33282e062c144af69d48a7f38e.zip |
first crack at address filtering checked in
Diffstat (limited to 'cpp/src/IceGrid/SessionI.cpp')
-rw-r--r-- | cpp/src/IceGrid/SessionI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/SessionI.cpp b/cpp/src/IceGrid/SessionI.cpp index d150fd93f84..d765d1c7ac3 100644 --- a/cpp/src/IceGrid/SessionI.cpp +++ b/cpp/src/IceGrid/SessionI.cpp @@ -319,7 +319,7 @@ ClientSessionManagerI::create(const string& user, const Glacier2::SessionControl id.name = "Registry"; ids.push_back(id); ids.push_back(s->ice_getIdentity()); - ctl->objectIdFilter()->addAccept(ids); + ctl->identityFilter()->addAccept(ids); } catch(const Ice::LocalException&) { @@ -385,7 +385,7 @@ ClientSSLSessionManagerI::create(const Glacier2::SSLInfo& info, const Glacier2:: id.name = "Registry"; ids.push_back(id); ids.push_back(s->ice_getIdentity()); - ctl->objectIdFilter()->addAccept(ids); + ctl->identityFilter()->addAccept(ids); } catch(const Ice::LocalException&) { |