Update pingcheck to work with cmake 3.28
[pingcheck] / src / tcp /
2015-05-26 Christian Herdtweckadded congestion analysis to HostStatus
2015-05-26 Christian Herdtweckmoved time duration measurement of ping from scheduler...
2015-05-22 Christian Herdtweckgive HostStatus analyzer more info: details on ping...
2015-05-04 Christian Herdtwecksimplified dns (no self-made recursion); merge PingSche...
2015-01-26 Christian HerdtweckPinger holds weak_ptr to self, Pingers created through...
2015-01-23 Christian Herdtweckstarted to implement an icmp paket distributor; compile...
2015-01-16 Christian Herdtwecksome minor doc change I had overlooked
2015-01-12 Christian HerdtweckClean up output, whitespace,
2014-12-30 Christian Herdtwecknew signal handling in main; removed all thread-related...
2014-12-09 Christian Herdtweckadded a handler for failed BOOST_ASSERT-ions; add globa...
2014-11-12 Christian Herdtweckmake abstract base classes boost::noncopyable to avoid...
2012-04-14 Guilherme Maciel... Changed TCP ping method.
2012-03-29 Guilherme Maciel... Fix: the boolean logic was inverted.
2012-03-05 Guilherme Maciel... Undoing commit e58d750735048b76721ade950d3b9e0c75d201f7.
2012-03-05 Guilherme Maciel... Log message reformatting.
2012-02-29 Guilherme Maciel... Code improvement:
2012-02-26 Guilherme Maciel... Hardening the match methods through asserts.
2012-02-20 Guilherme Maciel... Merge branch 'test'
2012-02-19 Guilherme Maciel... Using encode1() and decode1() from MessagePayload class.
2012-02-18 Guilherme Maciel... Documentation for TCP header.
2012-01-03 Guilherme Maciel... PC-Lint warnings fixed:
2011-12-31 Guilherme Maciel... Changed notify message to error message.
2011-12-24 Guilherme Maciel... Fix: the TCP's ttl was being printed as a char instead...
2011-12-22 Guilherme Maciel... PC-Lint warnings fixed:
2011-12-20 Guilherme Maciel... Made copy constructor private to disable object copies.
2011-12-20 Guilherme Maciel... PC-Lint warnings fixed:
2011-12-20 Guilherme Maciel... PC-Lint warnings fixed:
2011-12-20 Guilherme Maciel... PC-Lint warnings fixed:
2011-12-12 Thomas JaroschFinal adjustments for cleaner PC-lint output
2011-12-12 Thomas JaroschSilence more bogus PC-Lint warnings
2011-12-12 Thomas JaroschSilence more PC-Lint warnings
2011-12-12 Thomas JaroschMore constification
2011-11-21 Guilherme Maciel... The IP version used to transport TCP segments can be...
2011-11-21 Guilherme Maciel... Changed old-style C casts by C++ style casts.
2011-11-21 Guilherme Maciel... TCP checksum for IPv6
2011-11-20 Guilherme Maciel... Documentation for TCP Segment Factory.
2011-11-15 Guilherme Maciel... Small code change
2011-11-15 Guilherme Maciel... TCP checksum source and destination addresses use Boost...
2011-11-14 Guilherme Maciel... TCP pinger IP version is chosen by the pinger factory
2011-11-12 Guilherme Maciel... Bring aboard TCP header class for IPv6
2011-11-12 Guilherme Maciel... Using Boost.Asio address objects instead of primitive...
2011-11-12 Guilherme Maciel... Simplifying Network Interface class and using more...
2011-11-12 Guilherme Maciel... Using Boost.Asio protocol type instead of the enumerati...
2011-11-10 Guilherme Maciel... Adjusting some comments
2011-11-06 Guilherme Maciel... Delegating the segment creation and printing to more...
2011-11-06 Guilherme Maciel... Ephemeral source port calculation moved to a method...
2011-11-06 Guilherme Maciel... Bring aboard TCP segment factory.
2011-11-06 Guilherme Maciel... Bring aboard TCP segment (IP and TCP headers)
2011-11-05 Guilherme Maciel... High Integrity CPP Rule 3.3.16: Explicitly declare...
2011-09-04 Guilherme Maciel... Solved operator precedence mismatch reported by PC...
2011-08-27 Guilherme Maciel... Message headers now have their wire format in Doxygen
2011-08-27 Guilherme Maciel... Replced old-style C functions by C++ STL versions
2011-08-23 Guilherme Maciel... Small code formatting
2011-08-23 Guilherme Maciel... Pings the host at a specific port (available only to...
2011-08-21 Guilherme Maciel... Changed the type of the header size variables from...
2011-08-21 Guilherme Maciel... TcpHeader class uses the MessagePayload class to handle...
2011-08-20 Guilherme Maciel... Removed select_source_network_interface() function...
2011-08-20 Guilherme Maciel... The C's low level socket handling functions were encaps...
2011-08-13 Guilherme Maciel... Small code formatting
2011-08-13 Guilherme Maciel... Renamed getters and setters
2011-08-13 Guilherme Maciel... Moved PingStatus enumeration to its own file, so it...
2011-08-13 Guilherme Maciel... Surrounded the receive by a try..catch, so prepare...
2011-08-09 Guilherme Maciel... Removing warning about conversion from 'int' to 'uint8_t'
2011-08-09 Guilherme Maciel... Adding a remark about sequence number from RST
2011-08-09 Guilherme Maciel... Adding logging to ioctl fails, and replacing the nested...
2011-08-06 Guilherme Maciel... Replaced shift operations on IP addresses to an endian...
2011-08-06 Guilherme Maciel... Validates the ifr.ifr_name buffer size before copy...
2011-08-04 Guilherme Maciel... Set the received status as successful when the RST...
2011-08-02 Guilherme Maciel... Changed the handle_timeout() method to handle_ping_done()
2011-08-02 Guilherme Maciel... Renamed create_tcp_header() method to create_ack_request()
2011-08-02 Guilherme Maciel... Move the ACK segment send functionality to the send_ack...
2011-08-02 Guilherme Maciel... Split the method, separated some functionality in sched...
2011-08-02 Guilherme Maciel... Renamed timeout variable to the context of TCP instead...
2011-08-02 Guilherme Maciel... Sequence number does not identify a particular segment...
2011-08-01 Guilherme Maciel... Retrieve the local IP address from the interface using...
2011-07-24 Guilherme Maciel... Split methods
2011-07-22 Guilherme Maciel... Working TCP pinger
2011-07-22 Guilherme Maciel... Split the TcpHeader implementation and header
2011-07-19 Guilherme Maciel... Added the remaining TCP pinger arguments
2011-07-16 Guilherme Maciel... Solving some conversion and variable shadow warnings
2011-07-10 Guilherme Maciel... Bring aboard the TCP header and support classes
2011-05-29 Guilherme Maciel... Bring aboard TCP pinger class