summaryrefslogtreecommitdiff
path: root/i/marvin/src/socket/socket_databuffer.hh
diff options
context:
space:
mode:
authorhaller2006-04-19 05:05:30 +0000
committerhaller2006-04-19 05:05:30 +0000
commitc1f05dce8df57d06ac04d7a7490216fad787f054 (patch)
tree5429eddbfa99802b9dd0394735da6ac615c42167 /i/marvin/src/socket/socket_databuffer.hh
parent16302ab0ce9263a31e36b93648959575e8c5c02b (diff)
* Correction du commentaire avec le \0 qui fait chier Doxygen et Kermit
* Avancement du SocketDataBuffer
Diffstat (limited to 'i/marvin/src/socket/socket_databuffer.hh')
-rw-r--r--i/marvin/src/socket/socket_databuffer.hh7
1 files changed, 7 insertions, 0 deletions
diff --git a/i/marvin/src/socket/socket_databuffer.hh b/i/marvin/src/socket/socket_databuffer.hh
index 01f239b..e28c8cd 100644
--- a/i/marvin/src/socket/socket_databuffer.hh
+++ b/i/marvin/src/socket/socket_databuffer.hh
@@ -28,6 +28,13 @@
/// TCP/IP
class SocketDataBuffer : public SocketClient
{
+ private:
+ /// En cours de reception d'un DB
+ bool isReceiving_;
+ /// Taille de la DB à recevoir
+ unsigned dbSize_;
+ /// Tampon provisoire
+ std::string buffer_;
public:
/// Constructeur
SocketDataBuffer(void);