diff options
Diffstat (limited to 'cpp/src/IceBT/EndpointI.cpp')
-rw-r--r-- | cpp/src/IceBT/EndpointI.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/cpp/src/IceBT/EndpointI.cpp b/cpp/src/IceBT/EndpointI.cpp index 1209dc8f121..a081b36747f 100644 --- a/cpp/src/IceBT/EndpointI.cpp +++ b/cpp/src/IceBT/EndpointI.cpp @@ -185,7 +185,18 @@ IceBT::EndpointI::acceptor(const string& adapterName) const } vector<IceInternal::EndpointIPtr> -IceBT::EndpointI::expand() const +IceBT::EndpointI::expandIfWildcard() const +{ + // + // Nothing to do here. + // + vector<IceInternal::EndpointIPtr> endps; + endps.push_back(ICE_SHARED_FROM_CONST_THIS(EndpointI)); + return endps; +} + +vector<IceInternal::EndpointIPtr> +IceBT::EndpointI::expandHost(IceInternal::EndpointIPtr&) const { // // Nothing to do here. |