ChangeLog 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. - NCD: performance improvements by using a global index of strings and representing various strings as integers (variable and object names)
  2. - NCD: performance and memory usage improvements
  3. - NCD: add assert_false()
  4. - NCD: don't link to OpenSSL to for random number generator. Use /dev/urandom instead to generate XIDs for DHCP.
  5. - NCD: deprecate ip_in_network() and instead add net.ipv{4,6}.addr_in_network(), net.ipv{4,6}.ifnot_addr_in_network()
  6. - NCD: implement some IPv6 modules: net.ipv6.addr(), net.ipv6.route()
  7. - NCD: support CIDR style addr/prefix addresses in various modules
  8. - NCD: recognize Elif and Else with capital first letter to be consistent with other reserved keywords
  9. Version 1.999.123:
  10. - NCD: performance improvements related to finding modules for statements
  11. - NCD: performance improvements related to resolving object names
  12. - NCD: performance improvements related to instantiating statement arguments
  13. - NCD: add value::replace_this() and value::replace_this_undo()
  14. - NCD: add value::reset()
  15. - NCD: add value::replace() and value::replace_undo()
  16. - Port to compile with MSVC for Windows.
  17. - NCD: add Foreach clause
  18. - NCD: implement _caller in spawn(), add spawn::join()
  19. - NCD: add explode()
  20. - NCD: add hard_reboot() and hard_poweroff()
  21. - NCD: add file_stat() and file_lstat()
  22. - NCD: fix regex_replace() semantics. It was very broken because it did a complete replacement pass for every regex on the list, so it would match parts that have already been replaced, producing unexpected results.
  23. - NCD: small performance improvement
  24. Version 1.999.121:
  25. - NCD: improve error handling semantics; see http://code.google.com/p/badvpn/source/detail?r=1376
  26. - NCD: fix assertion failure in sys.evdev() if a device error occurs (e.g. device unplugged) while an event is being processed. Similar fix in some other modules, but these may not be reproducable.
  27. - NCD: some more performance improvements
  28. - NCD: some performance improvements (~30% faster interpretation of cpu-bound code)
  29. - NCD: implemented If..elif..else clause.
  30. - NCD: net.backend.wpa_supplicant: fix to work with wpa_supplicant>=1.0
  31. Version 1.999.115:
  32. - NCD: Many improvements; new statements, including call(), alias(), foreach(), choose().
  33. Version 1.999.113:
  34. - NCD: when starting child processes, make sure that file descriptors for standard
  35. streams are always open in the child, by opening /dev/null if they are not.
  36. - Improve build system to allow selective building of components.
  37. By default, everything is built, unless -DBUILD_NOTHING_BY_DEFAULT=1 is given.
  38. Individual components can then be enabled or disabled using -DBUILD_COMPONENT=1
  39. and -DBUILD_COMPONENT=0.
  40. - When starting any BadVPN program, make sure that file descriptors for standard
  41. streams are always open in the child, by opening /dev/null if they are not.
  42. - NCD: net.backend.wpa_supplicant(): add 'bssid' and 'ssid' variables to allow
  43. determining what wireless network wpa_supplicant connected to.
  44. - NCD: net.backend.wpa_supplicant(): do not require the user to start wpa_supplicant via
  45. stdbuf, but do it automatically.
  46. Version 1.999.111:
  47. - Improved protocol such that peers can use SSL when comminicating via the server. This
  48. improves security, as compromising the server will not allow the attacker to see secret
  49. data shared by peers (in particular, encryption keys and OTP seeds when in UDP mode).
  50. Compatibility is preserved if an only if the following conditions are met:
  51. - The server is using the latest version.
  52. - If the network is using SSL, all clients using the new version are using the
  53. "--allow-peer-talk-without-ssl" command line option.
  54. Be aware, however, that using the "--allow-peer-talk-without-ssl" option negates the
  55. security benefits of the new SSL support - not only between pairs of peers where one
  56. peer is using the old version, but also between pairs where both peers are capable
  57. of SSL. This is because the server can re-initialize the pair, telling them not to use
  58. SSL.
  59. Version 1.999.107:
  60. - Added Windows IOCP support, removing the limitation on ~64 connections. This is important
  61. for tun2socks, which may have to handle several hundred connections.
  62. Version 1.999.105.2:
  63. - Fixed an assertion failure in tun2socks related to sending data to SOCKS.
  64. Version 1.999.101.3:
  65. - Fixed UDP transport on Windows 7 which didn't work (was only tested on XP).
  66. Version 1.999.101:
  67. - Fixed a protocol issue present in versions <=1.999.100.3. Compatibility is preserved in
  68. case of a new server and old clients, but it is not possible to connect to an old server
  69. with a new client.