NEWS 854 B

123456789101112131415161718192021
  1. Major changes since:
  2. * see the CHANGES file
  3. Major changes in release 1.1.1:
  4. * ares should now compile as C++ code (no longer uses reserved word
  5. "class").
  6. * Added SRV support to adig test program.
  7. * Fixed a few error handling bugs in query processing.
  8. Major changes in release 1.1.0:
  9. * Added ares_free_string() function so that memory can be freed in the
  10. same layer as it is allocated, a desirable feature in some
  11. environments.
  12. * A few of the ares_dns.h macros are fixed to use the proper bitwise
  13. operator.
  14. * Fixed a couple of fenceposts fixed in ares_expand_name()'s
  15. bounds-checking.
  16. * In process_timeouts(), extract query->next before calling
  17. next_server() and possibly freeing the query structure.
  18. * Casted arguments to ctype macros casted to unsigned char, since not
  19. all char values are valid inputs to those macros according to ANSI.