face: Face::getLocalUri
refs #1396
Change-Id: Icf02ae0a4136b6da3f6388cdce2f861bec44e940
diff --git a/daemon/face/stream-face.hpp b/daemon/face/stream-face.hpp
index 1b5b124..f60e87a 100644
--- a/daemon/face/stream-face.hpp
+++ b/daemon/face/stream-face.hpp
@@ -25,8 +25,7 @@
/**
* \brief Create instance of StreamFace
*/
- explicit
- StreamFace(const FaceUri& uri,
+ StreamFace(const FaceUri& remoteUri, const FaceUri& localUri,
const shared_ptr<typename protocol::socket>& socket,
bool isOnDemand);
@@ -100,10 +99,10 @@
template<class T, class FaceBase>
inline
-StreamFace<T, FaceBase>::StreamFace(const FaceUri& uri,
- const shared_ptr<typename StreamFace::protocol::socket>& socket,
- bool isOnDemand)
- : FaceBase(uri)
+StreamFace<T, FaceBase>::StreamFace(const FaceUri& remoteUri, const FaceUri& localUri,
+ const shared_ptr<typename StreamFace::protocol::socket>& socket,
+ bool isOnDemand)
+ : FaceBase(remoteUri, localUri)
, m_socket(socket)
, m_inputBufferSize(0)
{