give credit to Christopher Kohlhoff (boost asio) and Guilherme Ferreira
authorChristian Herdtweck <christian.herdtweck@intra2net.com>
Fri, 13 Mar 2015 09:09:36 +0000 (10:09 +0100)
committerChristian Herdtweck <christian.herdtweck@intra2net.com>
Fri, 13 Mar 2015 09:09:36 +0000 (10:09 +0100)
12 files changed:
src/icmp/icmpdata.cpp
src/icmp/icmpdata.h
src/icmp/icmpdestinationunreachabledata.cpp
src/icmp/icmpdestinationunreachabledata.h
src/icmp/icmpechodata.cpp
src/icmp/icmpechodata.h
src/icmp/icmpheader.cpp
src/icmp/icmpheader.h
src/icmp/icmppacket.cpp
src/icmp/icmppacket.h
src/icmp/icmppacketfactory.cpp
src/icmp/icmppacketfactory.h

index 28d0849..f129508 100644 (file)
@@ -18,6 +18,8 @@
  on this file might be covered by the GNU General Public License.
 
  Christian Herdtweck, Intra2net AG 2015
+ Based on an example in Boost Documentation (by Christopher M. Kohlhoff)
+ and adaptation by Guilherme M. Ferreira
  */
 
 #include "icmpdata.h"
index 0eeae93..7e92f64 100644 (file)
@@ -18,6 +18,8 @@
  on this file might be covered by the GNU General Public License.
 
  Christian Herdtweck, Intra2net AG 2015
+ Based on an example in Boost Documentation (by Christopher M. Kohlhoff)
+ and adaptation by Guilherme M. Ferreira
  */
 
 #ifndef ICMP_DATA_H
index b627b1f..676774f 100644 (file)
@@ -18,6 +18,8 @@
  on this file might be covered by the GNU General Public License.
 
  Christian Herdtweck, Intra2net AG 2015
+ Based on an example in Boost Documentation (by Christopher M. Kohlhoff)
+ and adaptation by Guilherme M. Ferreira
  */
 
 #include "icmp/icmpdestinationunreachabledata.h"
index 22b5b6a..1197e85 100644 (file)
@@ -18,6 +18,8 @@
  on this file might be covered by the GNU General Public License.
 
  Christian Herdtweck, Intra2net AG 2015
+ Based on an example in Boost Documentation (by Christopher M. Kohlhoff)
+ and adaptation by Guilherme M. Ferreira
  */
 
 
index 06c27bc..9650774 100644 (file)
@@ -18,6 +18,8 @@
  on this file might be covered by the GNU General Public License.
 
  Christian Herdtweck, Intra2net AG 2015
+ Based on an example in Boost Documentation (by Christopher M. Kohlhoff)
+ and adaptation by Guilherme M. Ferreira
  */
 
 #include "icmp/icmpechodata.h"
index e3be6eb..c6b865b 100644 (file)
@@ -18,6 +18,8 @@
  on this file might be covered by the GNU General Public License.
 
  Christian Herdtweck, Intra2net AG 2015
+ Based on an example in Boost Documentation (by Christopher M. Kohlhoff)
+ and adaptation by Guilherme M. Ferreira
  */
 
 #ifndef ICMP_ECHO_DATA_H
index 0573ae2..5c1ee24 100644 (file)
@@ -18,6 +18,8 @@
  on this file might be covered by the GNU General Public License.
 
  Christian Herdtweck, Intra2net AG 2015
+ Based on an example in Boost Documentation (by Christopher M. Kohlhoff)
+ and adaptation by Guilherme M. Ferreira
  */
 
 #include "icmp/icmpheader.h"
index 2bf02ca..540e2e2 100644 (file)
@@ -18,6 +18,8 @@
  on this file might be covered by the GNU General Public License.
 
  Christian Herdtweck, Intra2net AG 2015
+ Based on an example in Boost Documentation (by Christopher M. Kohlhoff)
+ and adaptation by Guilherme M. Ferreira
  */
 
 #ifndef ICMP_HEADER_H
index 37a776e..95bb8a4 100644 (file)
@@ -18,6 +18,8 @@
  on this file might be covered by the GNU General Public License.
 
  Christian Herdtweck, Intra2net AG 2015
+ Based on an example in Boost Documentation (by Christopher M. Kohlhoff)
+ and adaptation by Guilherme M. Ferreira
  */
 
 #include "icmp/icmppacket.h"
index f83ae5d..85cec2e 100644 (file)
@@ -18,6 +18,8 @@
  on this file might be covered by the GNU General Public License.
 
  Christian Herdtweck, Intra2net AG 2015
+ Based on an example in Boost Documentation (by Christopher M. Kohlhoff)
+ and adaptation by Guilherme M. Ferreira
  */
 
 #ifndef ICMP_PACKET_H
index 1b4ccf4..9428dc1 100644 (file)
 
  This exception does not invalidate any other reasons why a work based
  on this file might be covered by the GNU General Public License.
+
+ Christian Herdtweck, Intra2net AG 2015
+ Based on an example in Boost Documentation (by Christopher M. Kohlhoff)
+ and adaptation by Guilherme M. Ferreira
  */
 
 #include "icmp/icmppacketfactory.h"
index 9991c74..556f012 100644 (file)
 
  This exception does not invalidate any other reasons why a work based
  on this file might be covered by the GNU General Public License.
+
+ Christian Herdtweck, Intra2net AG 2015
+ Based on an example in Boost Documentation (by Christopher M. Kohlhoff)
+ and adaptation by Guilherme M. Ferreira
  */
 
 #ifndef ICMP_PACKET_FACTORY_H