summaryrefslogtreecommitdiff
path: root/Ivy/ThreadedSocket.h
diff options
context:
space:
mode:
authorfcolin2007-02-01 13:05:54 +0000
committerfcolin2007-02-01 13:05:54 +0000
commitbfcb17aa05cda240abeb0fffc41bb112b04e00eb (patch)
tree4c9056d2dee4983a06633b1641ec18cac276e216 /Ivy/ThreadedSocket.h
parentfe6c1ec690a82deddc9fa0c5ff9eb5dde9c83c8c (diff)
downloadivy-cplusplus-bfcb17aa05cda240abeb0fffc41bb112b04e00eb.zip
ivy-cplusplus-bfcb17aa05cda240abeb0fffc41bb112b04e00eb.tar.gz
ivy-cplusplus-bfcb17aa05cda240abeb0fffc41bb112b04e00eb.tar.bz2
ivy-cplusplus-bfcb17aa05cda240abeb0fffc41bb112b04e00eb.tar.xz
Utilisateur : Fcolin Date : 2/06/05 Heure : 18:42 Archivé dans $/Bus/Ivy Commentaire: Suppression de la STL et ajout d'un namespace pour les datatypes internes Ivy (vss 9)
Diffstat (limited to 'Ivy/ThreadedSocket.h')
-rw-r--r--Ivy/ThreadedSocket.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Ivy/ThreadedSocket.h b/Ivy/ThreadedSocket.h
index 9771f10..85262cd 100644
--- a/Ivy/ThreadedSocket.h
+++ b/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 };