summaryrefslogtreecommitdiff
path: root/Ivy/BufferedSocket.h
diff options
context:
space:
mode:
authorfcolin2007-02-01 12:54:10 +0000
committerfcolin2007-02-01 12:54:10 +0000
commit00aba9041cbb3de4c38531d56750c8c25a975c28 (patch)
tree5b54704d9cdc09b1624713435e3c1f36cb8362c1 /Ivy/BufferedSocket.h
parent89717ecba42128b4d3ec0afaf601540cd647530c (diff)
downloadivy-cplusplus-00aba9041cbb3de4c38531d56750c8c25a975c28.zip
ivy-cplusplus-00aba9041cbb3de4c38531d56750c8c25a975c28.tar.gz
ivy-cplusplus-00aba9041cbb3de4c38531d56750c8c25a975c28.tar.bz2
ivy-cplusplus-00aba9041cbb3de4c38531d56750c8c25a975c28.tar.xz
Utilisateur : Fcolin Date : 17/11/05 Heure : 15:08 Archivé dans $/Bus/Ivy Commentaire: nice Bug in nextArg not reentrant routine due to static variable (vss 7)
Diffstat (limited to 'Ivy/BufferedSocket.h')
-rw-r--r--Ivy/BufferedSocket.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ivy/BufferedSocket.h b/Ivy/BufferedSocket.h
index 3920e64..851ead1 100644
--- a/Ivy/BufferedSocket.h
+++ b/Ivy/BufferedSocket.h
@@ -24,7 +24,7 @@ public:
void Send ( const char * data );
protected:
bool connected; /* wait to be connected before sending any Data */
- char separator;
+ int separator;
/* buffer de reception de l'application */
long buffer_size;
char *buffer;