Code

Bumped version to 0.3.4; Updated ChangeLog and debian/changelog
[liboping.git] / ChangeLog
1 2006-12-01, Version 0.3.4
2         * Fixes a bug in `ping_host_remove': Due to an incorrect hostname
3           checking the wrong host would be removed.
5 2006-07-16, Version 0.3.3
6         * `sendto(2)' now catches `EHOSTUNREACH' and `ENETUNREACH' if they're
7           defined.
9 2006-07-13, Version 0.3.2
10         * `oping' now drops root privileges as soon as possible.
11         * `liboping' now contains an `soname' and a version.
13 2006-07-09, Version 0.3.1
14         * Removed `libltdl' from the distribution since it's not used.
15         * More nonsense has been removed from the build system. Thanks to
16           Sebastian Harl for pointing it out :)
18 2006-07-09, Version 0.3.0
19         * The ability to set the source address from which the packets
20           originate has been added to the library and the oping application.
22 2006-07-16, Version 0.2.3
23         * `sendto(2)' now catches `EHOSTUNREACH' and `ENETUNREACH' if they're
24           defined.
26 2006-06-05, Version 0.2.2
27         * The `oping' application didn't exit if no hosts could be resolved.
28           This release fixes it's behavior.
30 2006-06-01, Version 0.2.1
31         * Fix the behavior for non GNU-Linux systems. liboping tried to
32           `bind(2)' to the raw-socket it uses to send ICMP packets. Apparently
33           (decided by majority vote ;) this is not the right thing to do.
34           GNU/Linux never complained about it, but works find without the bind.
35           Other operating systems don't work at all with the bind.
36         * Build fixes for non-GNU/Linux platforms: Mac OS X doesn't define
37           `size_t' as `unsigned int' and therefore needs casting and FreeBSD
38           needs to have `sys/types.h' included before `netinet/*.h'
40 2006-05-29, Version 0.2.0
41         * It's now possible to set the data to be send to the remote host and
42           to get the data received from the host.
43         * The `oping' binary now calculates the standard deviation. Also, it
44           displays the number of byes that were received and other output
45           changes.
46         * Hosts are now returned in the same order as they were added by
47           `ping_host_add'. This is not guaranteed, but makes `oping' prettier.
49 2006-05-12, Version 0.1.1
50         * A bug in the library has been fixed: When the sequence got higher
51           than 2^16 the counter in the packets wrapped around, but the
52           internal counter didn't, causing the library to ignore all further
53           ICMP packets. This affected both, ICMPv4 and ICMPv6.
55 2006-05-08, Version 0.1.0
56         * Initial release.