diff options
author | Reinhard Tartler <siretart@tauware.de> | 2011-11-13 09:27:52 +0100 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2011-11-13 09:27:52 +0100 |
commit | 95ce6b74b70f9d9645a07e03eed9a8004ba7c8cc (patch) | |
tree | 7518f982316a6c90f69269eba03eddf6718ea28b /nxcomp/ClientChannel.cpp | |
parent | 920705cf70d4a230c7d75fbd869e2cef162cf062 (diff) | |
download | nx-libs-95ce6b74b70f9d9645a07e03eed9a8004ba7c8cc.tar.gz nx-libs-95ce6b74b70f9d9645a07e03eed9a8004ba7c8cc.tar.bz2 nx-libs-95ce6b74b70f9d9645a07e03eed9a8004ba7c8cc.zip |
Imported nxcomp-3.3.0-3.tar.gznxcomp/3.3.0-3
Summary: Imported nxcomp-3.3.0-3.tar.gz
Keywords:
Imported nxcomp-3.3.0-3.tar.gz
into Git repository
Diffstat (limited to 'nxcomp/ClientChannel.cpp')
-rwxr-xr-x | nxcomp/ClientChannel.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/nxcomp/ClientChannel.cpp b/nxcomp/ClientChannel.cpp index e69a8794a..f93156a17 100755 --- a/nxcomp/ClientChannel.cpp +++ b/nxcomp/ClientChannel.cpp @@ -4539,6 +4539,24 @@ int ClientChannel::handleWrite(const unsigned char *message, unsigned int length lastSequence_ = serverSequence_; } } +/* +FIXME: This block was added, otherwise we have a loss + of the nxagent events. +*/ + else + { + #ifdef DEBUG + *logofs << "handleWrite: Updating last event's sequence " + << lastSequence_ << " to X server's sequence number " + << serverSequence_ << " for FD#" << fd_ + << ".\n" << logofs_flush; + #endif + + lastSequence_ = serverSequence_; + } + +/* +FIXME: This causes the loss of the nxagent events. // // Check if by producing events at client side we @@ -4571,6 +4589,7 @@ int ClientChannel::handleWrite(const unsigned char *message, unsigned int length << logofs_flush; } #endif +*/ // // Check if remote side used fast encoding. |