diff options
author | fcolin | 2007-02-01 12:54:10 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 12:54:10 +0000 |
commit | 08a2e47f77a5474170df4408f234fa9f7762d723 (patch) | |
tree | cae764d68a5cc00ece96ccea69c47206a78c1b8f /Bus/Ivy/BufferedSocket.h | |
parent | 6300358647735a853543778d259132a76f983a2e (diff) | |
download | ivy-cplusplus-08a2e47f77a5474170df4408f234fa9f7762d723.zip ivy-cplusplus-08a2e47f77a5474170df4408f234fa9f7762d723.tar.gz ivy-cplusplus-08a2e47f77a5474170df4408f234fa9f7762d723.tar.bz2 ivy-cplusplus-08a2e47f77a5474170df4408f234fa9f7762d723.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 'Bus/Ivy/BufferedSocket.h')
-rw-r--r-- | Bus/Ivy/BufferedSocket.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bus/Ivy/BufferedSocket.h b/Bus/Ivy/BufferedSocket.h index 3920e64..851ead1 100644 --- a/Bus/Ivy/BufferedSocket.h +++ b/Bus/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;
|