Add boost license + proper copyright were needed
authorThomas Jarosch <thomas.jarosch@intra2net.com>
Thu, 12 May 2011 08:18:14 +0000 (10:18 +0200)
committerThomas Jarosch <thomas.jarosch@intra2net.com>
Thu, 12 May 2011 08:18:14 +0000 (10:18 +0200)
24 files changed:
src/host/boostpinger.cpp
src/host/boostpinger.h
src/icmp/checksumcalculator.h
src/icmp/icmpchecksumcalculator.h
src/icmp/icmpdata.h
src/icmp/icmpdestinationunreachablemessage.cpp
src/icmp/icmpdestinationunreachablemessage.h
src/icmp/icmpechoreplymessage.cpp
src/icmp/icmpechoreplymessage.h
src/icmp/icmpechorequestmessage.cpp
src/icmp/icmpechorequestmessage.h
src/icmp/icmpgenericmessage.cpp
src/icmp/icmpgenericmessage.h
src/icmp/icmpheader.cpp
src/icmp/icmpheader.h
src/icmp/icmpmessage.cpp
src/icmp/icmpmessage.h
src/icmp/icmpmessagepayload.cpp
src/icmp/icmpmessagepayload.h
src/icmp/icmppacket.cpp
src/icmp/icmppacket.h
src/icmp/icmptype.h
src/icmp/ipv4header.cpp
src/icmp/ipv4header.h

index a979044..e21f121 100644 (file)
@@ -1,3 +1,9 @@
+// Boost pinger (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+// Based upon work copyright (c) 2003-2010 Christopher M. Kohlhoff (ping.cpp)
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #include "host/boostpinger.h"
 
 #include <istream>
index 15e2212..ebacce7 100644 (file)
@@ -1,3 +1,9 @@
+// Boost pinger (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+// Based upon work copyright (c) 2003-2010 Christopher M. Kohlhoff (ping.cpp)
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #ifndef BOOSTPINGER_H
 #define BOOSTPINGER_H
 
index fb5673f..1b31f08 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #ifndef CHECKSUMCALCULATOR_H
 #define CHECKSUMCALCULATOR_H
 
index 80f32b2..d46cfa8 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #ifndef ICMPCHECKSUMCALCULATOR_H
 #define ICMPCHECKSUMCALCULATOR_H
 
index d17c199..d6bfd86 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #ifndef ICMPDATA_H
 #define ICMPDATA_H
 
index 1946453..20dddfa 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #include "icmp/icmpdestinationunreachablemessage.h"
 
 using namespace std;
index 093b97c..1268f3a 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #ifndef ICMP_DESTINATION_UNREACHABLE_MESSAGE_HPP
 #define ICMP_DESTINATION_UNREACHABLE_MESSAGE_HPP
 
index a65d645..fa7105f 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #include "icmp/icmpechoreplymessage.h"
 
 using namespace std;
index 880d580..3816326 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #ifndef ICMP_ECHO_REPLY_MESSAGE_HPP
 #define ICMP_ECHO_REPLY_MESSAGE_HPP
 
index 254031b..fd3a6c1 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #include "icmp/icmpechorequestmessage.h"
 
 using namespace std;
index 92f2f4a..5a7bffb 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #ifndef ICMP_ECHO_REQUEST_MESSAGE_HPP
 #define ICMP_ECHO_REQUEST_MESSAGE_HPP
 
index fe6193f..941072b 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #include "icmp/icmpgenericmessage.h"
 
 //-----------------------------------------------------------------------------
index f53f4c7..4c08a0b 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #ifndef ICMP_GENERIC_MESSAGE_HPP
 #define ICMP_GENERIC_MESSAGE_HPP
 
index d4166be..1ff7aa5 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #include "icmp/icmpheader.h"
 
 #include "icmp/icmpdestinationunreachablemessage.h"
index 43203a5..80ca124 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #ifndef ICMP_HEADER_HPP
 #define ICMP_HEADER_HPP
 
index e1878ff..280cb94 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #include "icmp/icmpmessage.h"
 
 //-----------------------------------------------------------------------------
index d6e0fe9..608249a 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #ifndef ICMP_MESSAGE_HPP
 #define ICMP_MESSAGE_HPP
 
index ce497c1..6a225ff 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #include "icmp/icmpmessagepayload.h"
 
 #include <limits>
index 386d7d6..d4073ee 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #ifndef ICMPMESSAGEPAYLOAD_H
 #define ICMPMESSAGEPAYLOAD_H
 
index 88746e1..ef003b2 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #include "icmp/icmppacket.h"
 #include <iostream>
 
index f3a5249..afc4a11 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #ifndef ICMPPACKET_H
 #define ICMPPACKET_H
 
index 80f41bb..11e27bc 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #ifndef ICMP_TYPE_H
 #define ICMP_TYPE_H
 
index b1a2a5d..fd4a194 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #include "icmp/ipv4header.h"
 
 #include <limits>
index 174c265..d8bb3a4 100644 (file)
@@ -1,3 +1,9 @@
+// Copyright (c) 2003-2010 Christopher M. Kohlhoff
+// Modifications (c) 2011 by Guilherme Maciel Ferreira / Intra2net AG
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
 #ifndef IPV4_HEADER_HPP
 #define IPV4_HEADER_HPP