diff options
Diffstat (limited to 'Bus/Ivy')
-rw-r--r-- | Bus/Ivy/ThreadedSocket.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Bus/Ivy/ThreadedSocket.h b/Bus/Ivy/ThreadedSocket.h index 9771f10..85262cd 100644 --- a/Bus/Ivy/ThreadedSocket.h +++ b/Bus/Ivy/ThreadedSocket.h @@ -23,9 +23,9 @@ public: inline operator SOCKET() const { return m_hSocket; };
- void GetPeerName(string & rPeerAddress, unsigned int& rPeerPort);
+ void GetPeerName(ivy::string & rPeerAddress, unsigned int& rPeerPort);
- void GetSockName(string & rSocketAddress, unsigned int& rSocketPort);
+ void GetSockName(ivy::string & rSocketAddress, unsigned int& rSocketPort);
// Operations
public:
@@ -47,7 +47,7 @@ public: virtual int Receive(void* lpBuf, int nBufLen, int nFlags = 0);
int ReceiveFrom(void* lpBuf, int nBufLen,
- string & rSocketAddress, unsigned int & rSocketPort, int nFlags = 0);
+ ivy::string & rSocketAddress, unsigned int & rSocketPort, int nFlags = 0);
enum { receives = 0, sends = 1, both = 2 };
|