summaryrefslogtreecommitdiffstats
path: root/remote-processor/ListeningSocket.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'remote-processor/ListeningSocket.cpp')
-rw-r--r--remote-processor/ListeningSocket.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/remote-processor/ListeningSocket.cpp b/remote-processor/ListeningSocket.cpp
index 7d6f9e8..1677d71 100644
--- a/remote-processor/ListeningSocket.cpp
+++ b/remote-processor/ListeningSocket.cpp
@@ -42,6 +42,8 @@
#define base CSocket
+using std::string;
+
CListeningSocket::CListeningSocket()
{
int iOption = true;
@@ -60,7 +62,7 @@ bool CListeningSocket::listen(uint16_t uiPort)
// Bind
if (bind(getFd(), (struct sockaddr*)&server_addr, sizeof(struct sockaddr)) == -1) {
- ostringstream oss;
+ std::ostringstream oss;
oss << "CListeningSocket::listen::bind port " << uiPort;
perror(oss.str().c_str());
@@ -69,7 +71,7 @@ bool CListeningSocket::listen(uint16_t uiPort)
if (::listen(getFd(), 5) == -1) {
- ostringstream oss;
+ std::ostringstream oss;
oss << "CListeningSocket::listen::bind port " << uiPort;
perror(oss.str().c_str());