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
232dfc41
Commit
232dfc41
authored
Nov 13, 2011
by
Reinhard Tartler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Imported nxcomp-3.5.0-2.tar.gz
Summary: Imported nxcomp-3.5.0-2.tar.gz Keywords: Imported nxcomp-3.5.0-2.tar.gz into Git repository
parent
233de71f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
2 deletions
+23
-2
CHANGELOG
nxcomp/CHANGELOG
+4
-0
Proxy.cpp
nxcomp/Proxy.cpp
+18
-1
ServerProxy.cpp
nxcomp/ServerProxy.cpp
+1
-1
No files found.
nxcomp/CHANGELOG
View file @
232dfc41
ChangeLog
:
nxcomp
-
3.5.0
-
2
-
Fixed
TR11H02398
.
Solved
a
race
condition
when
creating
channels
.
nxcomp
-
3.5.0
-
1
-
Opened
the
3.5.0
branch
based
on
nxcomp
-
3.4.0
-
7.
...
...
nxcomp/Proxy.cpp
View file @
232dfc41
/**************************************************************************/
/* */
/* Copyright (c) 2001, 201
0
NoMachine, http://www.nomachine.com/. */
/* Copyright (c) 2001, 201
1
NoMachine, http://www.nomachine.com/. */
/* */
/* NXCOMP, NX protocol compression and NX extensions to this software */
/* are copyright of NoMachine. Redistribution and use of the present */
...
...
@@ -1626,6 +1626,23 @@ int Proxy::handleControlFromProxy(const unsigned char *message)
int
channelId
=
*
(
message
+
2
);
//
// Check if the channel has been dropped.
//
if
(
channels_
[
channelId
]
!=
NULL
&&
(
channels_
[
channelId
]
->
getDrop
()
==
1
||
channels_
[
channelId
]
->
getClosing
()
==
1
))
{
#ifdef TEST
*
logofs
<<
"Proxy: Dropping the descriptor FD#"
<<
getFd
(
channelId
)
<<
" channel ID#"
<<
channelId
<<
".
\n
"
<<
logofs_flush
;
#endif
handleDrop
(
channelId
);
}
//
// Check if the channel is in the valid
// range.
//
...
...
nxcomp/ServerProxy.cpp
View file @
232dfc41
/**************************************************************************/
/* */
/* Copyright (c) 2001, 201
0
NoMachine, http://www.nomachine.com/. */
/* Copyright (c) 2001, 201
1
NoMachine, http://www.nomachine.com/. */
/* */
/* NXCOMP, NX protocol compression and NX extensions to this software */
/* are copyright of NoMachine. Redistribution and use of the present */
...
...
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