ChangeLog 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. Version 1.999.113:
  2. - Improve build system to allow selective building of components.
  3. By default, everything is built, unless -DBUILD_NOTHING_BY_DEFAULT=1 is given.
  4. Individual components can then be enabled or disabled using -DBUILD_COMPONENT=1
  5. and -DBUILD_COMPONENT=0.
  6. - NCD: net.backend.wpa_supplicant(): add 'bssid' and 'ssid' variables to allow
  7. determining what wireless network wpa_supplicant connected to.
  8. - NCD: net.backend.wpa_supplicant(): do not require the user to start wpa_supplicant via
  9. stdbuf, but do it automatically.
  10. Version 1.999.111:
  11. - Improved protocol such that peers can use SSL when comminicating via the server. This
  12. improves security, as compromising the server will not allow the attacker to see secret
  13. data shared by peers (in particular, encryption keys and OTP seeds when in UDP mode).
  14. Compatibility is preserved if an only if the following conditions are met:
  15. - The server is using the latest version.
  16. - If the network is using SSL, all clients using the new version are using the
  17. "--allow-peer-talk-without-ssl" command line option.
  18. Be aware, however, that using the "--allow-peer-talk-without-ssl" option negates the
  19. security benefits of the new SSL support - not only between pairs of peers where one
  20. peer is using the old version, but also between pairs where both peers are capable
  21. of SSL. This is because the server can re-initialize the pair, telling them not to use
  22. SSL.
  23. Version 1.999.107:
  24. - Added Windows IOCP support, removing the limitation on ~64 connections. This is important
  25. for tun2socks, which may have to handle several hundred connections.
  26. Version 1.999.105.2:
  27. - Fixed an assertion failure in tun2socks related to sending data to SOCKS.
  28. Version 1.999.101.3:
  29. - Fixed UDP transport on Windows 7 which didn't work (was only tested on XP).
  30. Version 1.999.101:
  31. - Fixed a protocol issue present in versions <=1.999.100.3. Compatibility is preserved in
  32. case of a new server and old clients, but it is not possible to connect to an old server
  33. with a new client.