Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

513_tigervnc11-rh692048.patch 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --- a/common/rfb/SecurityClient.cxx 2011-02-21 14:14:16.000000000 +0100
  2. +++ b/common/rfb/SecurityClient.cxx 2011-03-31 09:47:34.519099718 +0200
  3. @@ -45,7 +45,7 @@ StringParameter SecurityClient::secTypes
  4. ("SecurityTypes",
  5. "Specify which security scheme to use (None, VncAuth)",
  6. #ifdef HAVE_GNUTLS
  7. - "X509Plain,TLSPlain,X509Vnc,TLSVnc,X509None,TLSNone,VncAuth,None",
  8. + "VeNCrypt,X509Plain,TLSPlain,X509Vnc,TLSVnc,X509None,TLSNone,VncAuth,None",
  9. #else
  10. "VncAuth,None",
  11. #endif
  12. diff -up tigervnc-1.0.90-20110314svn4359/common/rfb/Security.cxx.rh690245 tigervnc-1.0.90-20110314svn4359/common/rfb/Security.cxx
  13. --- tigervnc-1.0.90-20110314svn4359/common/rfb/Security.cxx.rh690245 2011-02-21 14:14:16.000000000 +0100
  14. +++ tigervnc-1.0.90-20110314svn4359/common/rfb/Security.cxx 2011-03-31 09:47:34.519099718 +0200
  15. @@ -67,7 +67,6 @@ const std::list<rdr::U8> Security::GetEn
  16. list<rdr::U8> result;
  17. list<U32>::iterator i;
  18. - result.push_back(secTypeVeNCrypt);
  19. for (i = enabledSecTypes.begin(); i != enabledSecTypes.end(); i++)
  20. if (*i < 0x100)
  21. result.push_back(*i);
  22. @@ -105,8 +104,6 @@ bool Security::IsSupported(U32 secType)
  23. for (i = enabledSecTypes.begin(); i != enabledSecTypes.end(); i++)
  24. if (*i == secType)
  25. return true;
  26. - if (secType == secTypeVeNCrypt)
  27. - return true;
  28. return false;
  29. }
  30. diff -up tigervnc-1.0.90-20110314svn4359/common/rfb/SecurityServer.cxx.rh690245 tigervnc-1.0.90-20110314svn4359/common/rfb/SecurityServer.cxx
  31. --- tigervnc-1.0.90-20110314svn4359/common/rfb/SecurityServer.cxx.rh690245 2011-02-21 14:50:17.000000000 +0100
  32. +++ tigervnc-1.0.90-20110314svn4359/common/rfb/SecurityServer.cxx 2011-03-31 10:06:43.595362302 +0200
  33. @@ -39,7 +39,7 @@ StringParameter SecurityServer::secTypes
  34. ("SecurityTypes",
  35. "Specify which security scheme to use (None, VncAuth)",
  36. #ifdef HAVE_GNUTLS
  37. - "VncAuth,TLSVnc",
  38. + "VncAuth",
  39. #else
  40. "VncAuth",
  41. #endif