Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
95ce6b74
Commit
95ce6b74
authored
Nov 13, 2011
by
Reinhard Tartler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Imported nxcomp-3.3.0-3.tar.gz
Summary: Imported nxcomp-3.3.0-3.tar.gz Keywords: Imported nxcomp-3.3.0-3.tar.gz into Git repository
parent
920705cf
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
1 deletion
+33
-1
CHANGELOG
nxcomp/CHANGELOG
+13
-0
ClientChannel.cpp
nxcomp/ClientChannel.cpp
+19
-0
VERSION
nxcomp/VERSION
+1
-1
No files found.
nxcomp/CHANGELOG
View file @
95ce6b74
ChangeLog
:
nxcomp
-
3.3.0
-
3
-
Removed
a
condition
in
ClientChannel
that
caused
a
loss
in
event
sequence
numbers
.
nxcomp
-
3.3.0
-
2
-
Updated
VERSION
.
nxcomp
-
3.3.0
-
1
-
Opened
the
3.3.0
branch
based
on
nxcomp
-
3.2.0
-
7.
nxcomp
-
3.2.0
-
7
-
Solved
a
compilation
problem
on
GCC
4.3
.
...
...
nxcomp/ClientChannel.cpp
View file @
95ce6b74
...
...
@@ -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.
...
...
nxcomp/VERSION
View file @
95ce6b74
3.
2
.0
3.
3
.0
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment