1. 01 Mar, 2006 1 commit
  2. 28 Feb, 2006 2 commits
  3. 25 Feb, 2006 1 commit
  4. 24 Feb, 2006 2 commits
  5. 22 Feb, 2006 1 commit
  6. 21 Feb, 2006 1 commit
  7. 20 Feb, 2006 1 commit
  8. 07 Feb, 2006 1 commit
  9. 06 Feb, 2006 1 commit
  10. 05 Feb, 2006 1 commit
  11. 22 Jan, 2006 1 commit
  12. 19 Jan, 2006 1 commit
  13. 16 Jan, 2006 1 commit
  14. 15 Jan, 2006 1 commit
  15. 12 Jan, 2006 1 commit
  16. 11 Jan, 2006 2 commits
  17. 10 Jan, 2006 1 commit
  18. 09 Jan, 2006 1 commit
  19. 08 Jan, 2006 1 commit
  20. 06 Jan, 2006 1 commit
  21. 24 Dec, 2005 1 commit
  22. 22 Dec, 2005 1 commit
  23. 19 Dec, 2005 2 commits
  24. 09 Dec, 2005 2 commits
  25. 08 Dec, 2005 1 commit
  26. 07 Dec, 2005 3 commits
  27. 28 Nov, 2005 1 commit
  28. 25 Nov, 2005 1 commit
  29. 23 Oct, 2005 2 commits
  30. 07 Oct, 2005 2 commits
    • dscho's avatar
      update TODO · 94d7fc84
      dscho authored
      94d7fc84
    • dscho's avatar
      The PseudoEncoding extension code was getting silly: · 951ec26b
      dscho authored
      If the client asked for an encoding, and no enabled extension handled it,
      LibVNCServer would walk through all extensions, and if they promised to handle
      the encoding, execute the extension's newClient() if it was not NULL.
      
      However, if newClient is not NULL, it will be called when a client connects,
      and if it returns TRUE, the extension will be enabled. Since all the state of
      the extension should be in the client data, there is no good reason why
      newClient should return FALSE the first time (thus not enabling the extension),
      but TRUE when called just before calling enablePseudoEncoding().
      
      So in effect, the extension got enabled all the time, even if that was not
      necessary.
      
      The resolution is to pass a void** to enablePseudoEncoding. This has the
      further advantage that enablePseudoEncoding can remalloc() or free() the
      data without problems. Though keep in mind that if enablePseudoEncoding()
      is called on a not-yet-enabled extension, the passed data points to NULL.
      951ec26b
  31. 06 Oct, 2005 1 commit