summaryrefslogtreecommitdiff
path: root/Bus/Ivy
diff options
context:
space:
mode:
authorfcolin2007-02-01 13:05:54 +0000
committerfcolin2007-02-01 13:05:54 +0000
commitbad2b83c68fd1bce542082129b898e0b8c92d0a6 (patch)
treed6ee49450d6cdde783517132f95e3faeadd0537e /Bus/Ivy
parent8e412d4e7c04a178bc1e5dcbd44742d97df87f1f (diff)
downloadivy-cplusplus-bad2b83c68fd1bce542082129b898e0b8c92d0a6.zip
ivy-cplusplus-bad2b83c68fd1bce542082129b898e0b8c92d0a6.tar.gz
ivy-cplusplus-bad2b83c68fd1bce542082129b898e0b8c92d0a6.tar.bz2
ivy-cplusplus-bad2b83c68fd1bce542082129b898e0b8c92d0a6.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 'Bus/Ivy')
-rw-r--r--Bus/Ivy/ThreadedSocket.h6
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 };