Changelog 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. **************
  2. NRPE Changelog
  3. **************
  4. 1.3 - 02/21/2002
  5. ----------------
  6. - Name and version change
  7. - Ignore SIGHUP, minor cleanup (Jon Andrews)
  8. 1.2.5 - 12/22/2001
  9. ------------------
  10. - Implemented Beej's sendall() to handle partial send()s
  11. - Added instructions on running under xinetd to README
  12. - Removed some old crud
  13. 1.2.4 - 02/22/2001
  14. ------------------
  15. - I forgot what changes I made. Go figure...
  16. 1.2.3 - 12/21/2000
  17. ------------------
  18. - A bit more documentation on configuring command definitions for the plugin
  19. 1.2.2 - 06/05/2000
  20. ------------------
  21. - Fixed error in docs for running under inetd using TCP wrappers
  22. - Replaced old email address in src/netutils.h with new one
  23. 1.2.1 - 05/07/2000
  24. ------------------
  25. - Removed trapping of SIGCHLD
  26. - Changed wait4() to waitpid() to allow compilation on HP-UX and AIX
  27. 1.2.0 - 04/18/2000
  28. ------------------
  29. - Server forks twice after accepting a client connection, so as to prevent the
  30. creation of zombies
  31. 1.1.5 - 04/07/2000
  32. ------------------
  33. - Fixed a small bug where one debug message was not getting logged properly
  34. 1.1.4 - 03/30/2000
  35. ------------------
  36. - Added option to disable/enable debug messages using the debug option in the
  37. config file
  38. 1.1.3 - 03/11/2000
  39. ------------------
  40. - Changed config file to use an absolute path
  41. - Changed all debug output to use syslog (Rene Klootwijk)
  42. - No convert all data to network order before sending it and convert it back to
  43. host order when receiving it. This makes it possible to mix Solaris and Linux,
  44. e.g. running check_nrpe on Linux and nrpe on Solaris. (Rene Klootwijk)
  45. 1.1.2 - 03/07/2000
  46. ------------------
  47. - Removed unnecessary code in signal handler routine
  48. - Unused signals are no longer trapper
  49. 1.1.1 - 02/28/2000 - RKL
  50. ---------------------------
  51. - Modified syslog code to include string describing the error code.
  52. - Changed hardcoded number in signal handler to its name. This prevented nrpe
  53. to run on Solaris.
  54. - Fixed race condition in accept loop. The result of accept should also be
  55. checked for EINTR.
  56. - Modified recv and send function calls to compile without warnings on Solaris.
  57. - Modified configure.in,configure and Makefile.in to include nsl and socket libs
  58. for Solaris.
  59. - Modified the signal handler to reestablish itself after being called.
  60. 1.1 - 02/24/2000 - Rene Klootwijk <rene@klootwijk.org>
  61. -----------------
  62. - Added ability to bind nrpe to a specific interface by specifying the address
  63. of this interface in the nrpe.cfg file (e.g. server_address=192.168.2.3)
  64. 1.0 - 02/16/2000
  65. ------------------
  66. - Added ability to run as a service under inetd
  67. 1.0b6 - 02/01/2000
  68. ------------------
  69. - Added configure script
  70. - Netutils functions from the NetSaint plugins is now used
  71. - Reset SIGCHLD to default behavior before calling popen() to
  72. prevent race condition with pclose() (Reported by Rene Klootwijk)
  73. - Cleaned up code
  74. 1.0b5 - 01/10/2000
  75. ------------------
  76. - Added init script contributed by Jacob L
  77. - Incorporated syslog code and other patches contributed by Jacob L
  78. 1.0b4 - 11/04/1999
  79. ------------------
  80. - Changed 'allowed_ip' option in configuration file to
  81. 'allowed_hosts' and added support for multiple hosts
  82. - Minor buffer overflow protection fixes