Code

Bump version to 1.6.2; Update ChangeLog.
[liboping.git] / ChangeLog
1 2011-03-13, Version 1.6.2:
2         * Build system: Setting capabilities and the set-UID bit has been made
3           more fault-tolerant, so that it will work with Debian's fakeroot(1)
4           utility.
5         * src/liboping.c: Fixed a compiler warning about an non-static format
6           string. Thanks to Brian Edwards for pointing this out.
8 2011-03-06, Version 1.6.1:
9         * Build system: If "make install" is executed as root, the CAP_NET_RAW
10           capability is added to the binary (on Linux) or the set-UID bit is
11           set (other Unixes).
12         * src/oping.c: Fix compiler warnings which may abort the build. Thanks
13           to James Bromberger for reporting the problem.
14         * noping: Compatibility with ncurses 5.8 has been fixed. Thanks to
15           Gaetan Bisson for his patch.
17 2011-01-26, Version 1.6.0:
18         * liboping: Improve timing of received network packets using
19           SO_TIMESTAMP if available. Thanks to Bruno Prémont for his patch.
21 2010-11-17, Version 1.5.1:
22         * oping, noping: Alias for the “Voice Admit” DSCP has been added.
23         * src/oping.c, src/liboping.c: Compiler warnings / errors have been
24           fixed. Thanks to James Bromberger for reporting one of them.
26 2010-10-27, Version 1.5.0:
27         * src/liboping.c: The possibility to set the QoS byte of outgoing IPv4
28           and IPv6 packets and read the byte from incoming packets has been
29           added. Thanks to Vladimir Melnikov for his patch.
30         * oping, noping: Add the ability to configure the QoS field on the
31           command line. If either the QoS field of outgoing or incoming
32           packets is non-standard, the QoS byte of incoming packets will be
33           printed.
34         * liboping: The library has been relicensed under the LGPL 2.1.
36 2010-06-13, Version 1.4.0:
37         * noping: A new front-end to liboping, using the ncurses library, has
38           been added. The new command line application displays ping
39           statistics online and highlights aberrant round-trip times.
41 2009-12-20, Version 1.3.4:
42         * src/liboping.c: When one file descriptor was in an error state, the
43           select(2) loop would run indefinitely. Error handling has been
44           improved so the loop ends gracefully now in this case.
45         * src/liboping.c: Drop privileges before reading files if supported by
46           the system. This way files are opened using the user's original
47           privileges when using the “-f” option.
48         * Net::Oping: An off-by-one error has been fixed in the Perl bindings.
49           Thanks to Fredrik Soderblom for his patch.
51 2009-09-29, Version 1.3.3:
52         * oping: Disable the “-f” option if the real and effective user IDs
53           don't match. If that is the case the program is probably running
54           SetUID and should not read foreign files. Unfortunately, dropping
55           privileges before reading the file is not possible, because they are
56           required for opening raw sockets.
58           Reading from STDIN using “-f -” is still possible.
60           Thanks to Steve Kemp for reporting this issue as Debian bug #548684.
62 2009-07-27, Version 1.3.2:
63         * src/oping.h: Remove `HAVE_*_H' macros for system headers. Those
64           macros should not be used in system wide installed header files.
65           Thanks to Sebastian for fixing this.
67 2009-07-20, Version 1.3.1
68         * src/liboping.c: Fix too eager argument validation that prevented the
69           library to work as documented. Thanks to Sebastian for catching this
70           bug.
72 2009-07-18, Version 1.3.0
73         * oping: Documentation and messages have been improved.
74         * oping: Support for the `-D' command line option has been added.
75           Using this new option, the outgoing network device can be set.
76           Thanks to Sebastian Harl for the patch.
77         * src/liboping.c: The value of the `received TTL' information after
78           missing packets has been corrected.
79         * src/liboping.c: A bug when matching received packets to configured
80           hosts has been fixed. This regression was introduced after 1.0, we
81           believe. Thanks to Sebastian Harl for noticing and fixing this bug.
82         * src/liboping.c: Support for the `PING_OPT_DEVICE' option has been
83           added. This option can be used to set the outgoing network device.
84           Thanks to Sebastian for his patch.
86 2009-07-15, Version 1.2.0
87         * `oping': Implement the `-f' command line option to read hostnames
88           from a file (or STDIN).
89         * src/liboping.c: No longer export `sstrerror'.
91 2009-04-05, Version 1.1.2
92         * liboping.c: A NULL-pointer dereference has been fixed in the IPv4
93           code. This led to a segmentation fault when an ICMPv4 paket could
94           not be associated with any host. This usually happened when one or
95           more hosts were unreachable for some time. Thanks to Tomasz Pala for
96           discovering the problem and finding a way to reproduce it.
98 2009-03-23, Version 1.1.1
99         * liboping.c: Use libxnet when available. The `normal' version of
100           `recvmsg' does not provide the `auxiliary data' on some or all
101           versions of Solaris.
103 2009-03-15, Version 1.1.0
104         * liboping.c: Eliminate the use of `strerror' and use `strerror_r'
105           instead, removing the (hopefully) last thread-unsafe function.
106         * liboping.c: Provide the TTL of received IP packets.
107         * oping.c: Allow setting of the TTL using the `-t' command line
108           option.
110 2009-02-17, Version 1.0.0
111         * oping.h: Provide the OPING_VERSION to easily determine the library's
112           version at compile time.
113         * liboping.c: Fixed an off-by-one error in `ping_iterator_get_info':
114           When determining the buffer size to hold the hostname, the function
115           would return one byte too little.
116         * liboping.c: Fix an incorrect assertion in `ping_timeval_add'. Thanks
117           to Alex Brooks for reporting the issue.
118         * liboping.c: Make sure `EAI_SYSTEM' is defined at compile time.
119           Although specified by POSIX, Cygwin apparently doesn't have it.
120         * liboping.c: Add compatibility code for AIX. Thanks to Doug
121           MacEachern for the patch.
122         * liboping.c: Store and possibly return the host name as provided by
123           the user.
124         * liboping.c: The number of timed out packets is now counted and can
125           be retrieved with `ping_iterator_get_info'.
126         * Perl bindings: The Net::Oping Perl package has been added to
127           bindings/ and is built along with liboping.
129 2007-03-27, Version 0.3.5
130         * liboping.c: Close the filedescriptor in `ping_free', not
131           `ping_host_remove'. Thanks to Esteban Sanchez for submitting this
132           patch.
133         * oping.h: Include <sys/types.h> so that `size_t' is defined. Thanks
134           to Alex Brooks for pointing this out.
135         * oping.h: Use `extern "C"' when being used with C++. Thanks to Alex
136           Brooks for pointing this out.
138 2006-12-01, Version 0.3.4
139         * Fixes a bug in `ping_host_remove': Due to an incorrect hostname
140           checking the wrong host would be removed.
142 2006-07-16, Version 0.3.3
143         * `sendto(2)' now catches `EHOSTUNREACH' and `ENETUNREACH' if they're
144           defined.
146 2006-07-13, Version 0.3.2
147         * `oping' now drops root privileges as soon as possible.
148         * `liboping' now contains an `soname' and a version.
150 2006-07-09, Version 0.3.1
151         * Removed `libltdl' from the distribution since it's not used.
152         * More nonsense has been removed from the build system. Thanks to
153           Sebastian Harl for pointing it out :)
155 2006-07-09, Version 0.3.0
156         * The ability to set the source address from which the packets
157           originate has been added to the library and the oping application.
159 2006-07-16, Version 0.2.3
160         * `sendto(2)' now catches `EHOSTUNREACH' and `ENETUNREACH' if they're
161           defined.
163 2006-06-05, Version 0.2.2
164         * The `oping' application didn't exit if no hosts could be resolved.
165           This release fixes it's behavior.
167 2006-06-01, Version 0.2.1
168         * Fix the behavior for non GNU-Linux systems. liboping tried to
169           `bind(2)' to the raw-socket it uses to send ICMP packets. Apparently
170           (decided by majority vote ;) this is not the right thing to do.
171           GNU/Linux never complained about it, but works find without the bind.
172           Other operating systems don't work at all with the bind.
173         * Build fixes for non-GNU/Linux platforms: Mac OS X doesn't define
174           `size_t' as `unsigned int' and therefore needs casting and FreeBSD
175           needs to have `sys/types.h' included before `netinet/*.h'
177 2006-05-29, Version 0.2.0
178         * It's now possible to set the data to be send to the remote host and
179           to get the data received from the host.
180         * The `oping' binary now calculates the standard deviation. Also, it
181           displays the number of byes that were received and other output
182           changes.
183         * Hosts are now returned in the same order as they were added by
184           `ping_host_add'. This is not guaranteed, but makes `oping' prettier.
186 2006-05-12, Version 0.1.1
187         * A bug in the library has been fixed: When the sequence got higher
188           than 2^16 the counter in the packets wrapped around, but the
189           internal counter didn't, causing the library to ignore all further
190           ICMP packets. This affected both, ICMPv4 and ICMPv6.
192 2006-05-08, Version 0.1.0
193         * Initial release.