[Tigervnc-devel] [PATCH 03/13] Fix default security type setting of vncviewer

2010-07-17 Thread Martin Koegler
Signed-off-by: Martin Koegler --- common/rfb/Security.cxx |6 ++ common/rfb/Security.h|1 + unix/vncviewer/vncviewer.cxx |1 + win/vncviewer/vncviewer.cxx |1 + 4 files changed, 9 insertions(+), 0 deletions(-) diff --git a/common/rfb/Security.cxx b/common/rfb/Se

[Tigervnc-devel] [PATCH 00/13] SecurityType handling

2010-07-17 Thread Martin Koegler
This patchset contains various fixes/changes related to the security type handling. 1 removes a leftover declaration 2-4 fixes the security type parameter in the vncviewer. The viewer has the problem, that the handshake phase in the viewer uses a hardcoded list containing all security types. T

[Tigervnc-devel] [PATCH 06/13] Move VeNCrypt security types

2010-07-17 Thread Martin Koegler
Signed-off-by: Martin Koegler --- common/rfb/SSecurityVeNCrypt.h |9 - common/rfb/Security.h |9 + 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/common/rfb/SSecurityVeNCrypt.h b/common/rfb/SSecurityVeNCrypt.h index d44a6a2..6e84465 100644 --- a/co

[Tigervnc-devel] [PATCH 04/13] Use SecurityTypes Parameter in vncviewer

2010-07-17 Thread Martin Koegler
Signed-off-by: Martin Koegler --- common/rfb/CConnection.cxx | 30 ++ common/rfb/CConnection.h |8 unix/vncviewer/CConn.cxx |3 --- win/vncviewer/CConn.cxx|2 -- 4 files changed, 14 insertions(+), 29 deletions(-) diff --git a/common/rfb/

[Tigervnc-devel] [PATCH 12/13] Create VeNCrypt security types in Security class

2010-07-17 Thread Martin Koegler
Signed-off-by: Martin Koegler --- common/rfb/CSecurityVeNCrypt.cxx | 26 +- common/rfb/CSecurityVeNCrypt.h |2 -- common/rfb/Makefile.am | 16 +--- common/rfb/SSecurityPlain.cxx|4 common/rfb/SSecurityPlain.h |4 c

[Tigervnc-devel] [PATCH 05/13] Variable is only used as CSecurity/SSecurity

2010-07-17 Thread Martin Koegler
Signed-off-by: Martin Koegler --- common/rfb/CSecurityVeNCrypt.h |2 +- common/rfb/SSecurityVeNCrypt.h |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/rfb/CSecurityVeNCrypt.h b/common/rfb/CSecurityVeNCrypt.h index b466ba7..46a3094 100644 --- a/common/rfb/CSecu

[Tigervnc-devel] [PATCH 02/13] Allow changing the default value of string parameters

2010-07-17 Thread Martin Koegler
Signed-off-by: Martin Koegler --- common/rfb/Configuration.cxx |6 ++ common/rfb/Configuration.h |1 + 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/common/rfb/Configuration.cxx b/common/rfb/Configuration.cxx index 6811a79..e9eee1a 100644 --- a/common/rfb/Configurat

[Tigervnc-devel] [PATCH 01/13] Remove leftover code

2010-07-17 Thread Martin Koegler
Signed-off-by: Martin Koegler --- win/vncviewer/CConn.h |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/win/vncviewer/CConn.h b/win/vncviewer/CConn.h index 5f75843..3771154 100644 --- a/win/vncviewer/CConn.h +++ b/win/vncviewer/CConn.h @@ -94,7 +94,6 @@ namespace rfb {

[Tigervnc-devel] [PATCH 08/13] Support VeNCrypt Security types in normal security type parser

2010-07-17 Thread Martin Koegler
Signed-off-by: Martin Koegler --- common/rfb/Security.cxx | 18 ++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/common/rfb/Security.cxx b/common/rfb/Security.cxx index ad51f1b..86328b3 100644 --- a/common/rfb/Security.cxx +++ b/common/rfb/Security.cxx @@ -148,

[Tigervnc-devel] [PATCH 11/13] Use SecurityType also as configuration for VeNCrypt

2010-07-17 Thread Martin Koegler
Signed-off-by: Martin Koegler --- common/rfb/CSecurityVeNCrypt.cxx | 19 +--- common/rfb/SSecurityVeNCrypt.cxx | 89 + common/rfb/SSecurityVeNCrypt.h |7 +--- common/rfb/Security.cxx |8 +++- 4 files changed, 13 insertions(+), 110 del

[Tigervnc-devel] [PATCH 07/13] Use U32 as internal SecurityType type

2010-07-17 Thread Martin Koegler
Signed-off-by: Martin Koegler --- common/rfb/Security.cxx | 34 +++--- common/rfb/Security.h | 21 +++-- 2 files changed, 34 insertions(+), 21 deletions(-) diff --git a/common/rfb/Security.cxx b/common/rfb/Security.cxx index 8ea7572..ad51f1b 1006

[Tigervnc-devel] [PATCH 09/13] Add logging code

2010-07-17 Thread Martin Koegler
Signed-off-by: Martin Koegler --- common/rfb/CSecurityVeNCrypt.cxx |7 +++ common/rfb/SSecurityVeNCrypt.cxx |1 + 2 files changed, 8 insertions(+), 0 deletions(-) diff --git a/common/rfb/CSecurityVeNCrypt.cxx b/common/rfb/CSecurityVeNCrypt.cxx index 12eed8f..d07df53 100644 --- a/comm

[Tigervnc-devel] [PATCH 10/13] Pass Security instance to VeNCrypt security

2010-07-17 Thread Martin Koegler
Signed-off-by: Martin Koegler --- common/rfb/CSecurityVeNCrypt.cxx |2 +- common/rfb/CSecurityVeNCrypt.h |3 ++- common/rfb/SSecurityVeNCrypt.cxx |2 +- common/rfb/SSecurityVeNCrypt.h |3 ++- common/rfb/Security.cxx |4 ++-- 5 files changed, 8 insertions(+), 6 del

[Tigervnc-devel] [PATCH 13/13] Move x509 certificate parameters

2010-07-17 Thread Martin Koegler
Signed-off-by: Martin Koegler --- common/rfb/SSecurityVeNCrypt.cxx | 10 -- common/rfb/SSecurityVeNCrypt.h |2 -- common/rfb/Security.cxx | 12 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/common/rfb/SSecurityVeNCrypt.cxx b/common/rfb/SS