diff options
Diffstat (limited to 'cpp/src/Ice/ConnectionI.cpp')
-rw-r--r-- | cpp/src/Ice/ConnectionI.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/Ice/ConnectionI.cpp b/cpp/src/Ice/ConnectionI.cpp index 696c966b591..b8942d42aec 100644 --- a/cpp/src/Ice/ConnectionI.cpp +++ b/cpp/src/Ice/ConnectionI.cpp @@ -1434,7 +1434,9 @@ Ice::ConnectionI::getInfo() const { _exception->ice_throw(); } - return _transceiver->getInfo(); + ConnectionInfoPtr info = _transceiver->getInfo(); + info->endpoint = _endpoint->getInfo(); + return info; } // |