diff --git a/Examples/DVBAdapter/MPEdec.cc b/Examples/DVBAdapter/MPEdec.cc
index 7b66cd89ef3a07835a8fbbeb7037a20542db284c..22fd948f366e103885b673f88e6dfdfd46cce842 100644
--- a/Examples/DVBAdapter/MPEdec.cc
+++ b/Examples/DVBAdapter/MPEdec.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -27,7 +27,7 @@
 #include <iomanip>
 #include <sys/ioctl.h>
 #include <linux/sockios.h>
-#include <linux/dvb/dmx.h> 
+#include <linux/dvb/dmx.h>
 
 #include <senf/Scheduler/Scheduler.hh>
 #include <senf/Packets/DefaultBundle/EthernetPacket.hh>
@@ -48,7 +48,7 @@ class MySniffer
 
 public:
     MySniffer(unsigned short adapter=0, unsigned short device=0)
-        : handle( adapter, device ) 
+        : handle( adapter, device )
     {
         struct dmx_sct_filter_params sec_filter;
         memset(&sec_filter, 0, sizeof (struct dmx_sct_filter_params));
diff --git a/Examples/DVBAdapter/ULEdec.cc b/Examples/DVBAdapter/ULEdec.cc
index abec6e4b8892404632850c895c5794564698e3b3..f70b49fb17b1c451917e56571b0467e4b39921f2 100644
--- a/Examples/DVBAdapter/ULEdec.cc
+++ b/Examples/DVBAdapter/ULEdec.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -25,7 +25,7 @@
 #include "ULEdec.hh"
 
 #include <cassert>
-#include <linux/dvb/dmx.h> 
+#include <linux/dvb/dmx.h>
 #include <boost/format.hpp>
 #include <senf/Packets.hh>
 #include <senf/Utils/hexdump.hh>
@@ -35,7 +35,7 @@
 #define TRANSPORT_PACKET_SIZE 188
 // max. payload_pointer = ts packet payload size ( = ts packet size - ts header - payload_pointer)
 //                          - 2 bytes min. sndu header
-#define MAX_PAYLOAD_POINTER ( TRANSPORT_PACKET_SIZE - 4 - 1 - 2 )   
+#define MAX_PAYLOAD_POINTER ( TRANSPORT_PACKET_SIZE - 4 - 1 - 2 )
 
 #define prefix_
 ///////////////////////////////cc.p////////////////////////////////////////
@@ -65,11 +65,11 @@ void ULEdec::handleEvent(senf::Scheduler::EventId event)
     senf::TransportPacket ts_packet (
             senf::TransportPacket::create(188, senf::noinit));
     dvrHandle.read( ts_packet.data() );
-   
+    
     // Check TS error conditions: sync_byte, transport_error_indicator, scrambling_control.
-    if ( (ts_packet->sync_byte() != TRANSPORT_PACKET_SYNC_BYTE) || 
-         (ts_packet->transport_error_indicator() == true) || 
-         (ts_packet->transport_scrmbl_ctrl() != 0)) 
+    if ( (ts_packet->sync_byte() != TRANSPORT_PACKET_SYNC_BYTE) ||
+         (ts_packet->transport_error_indicator() == true) ||
+         (ts_packet->transport_scrmbl_ctrl() != 0))
     {
         std::cerr << "invalid ts packet\n";
         // drop partly decoded SNDU, reset state, resync on PUSI.
@@ -78,21 +78,21 @@ void ULEdec::handleEvent(senf::Scheduler::EventId event)
     
     handleTSPacket(ts_packet);
 }
-    
+
 void ULEdec::handleTSPacket(senf::TransportPacket ts_packet)
 {
     senf::PacketData & payloadData (ts_packet.next().data());
     iterator payload_iter = payloadData.begin();
     iterator payload_end = payloadData.end();
-    
+
     std::cout << "New TS Packet:\n"
               << "----------------------------------------------------------------------------\n";
     senf::hexdump(payload_iter, payload_end, std::cout);
     std::cout << "----------------------------------------------------------------------------\n";
-    
+
     // Synchronize continuity counter
     this->priv_tscc = ts_packet->continuity_counter();
-    
+
     switch (ts_packet->pusi()) {
     case 0: {
         switch (this->receiver_state) {
@@ -125,7 +125,7 @@ void ULEdec::handleTSPacket(senf::TransportPacket ts_packet)
         // a PUSI value of 1 indicates the presence of a Payload Pointer.
         unsigned char payload_pointer = *payload_iter++;
         if (payload_pointer > MAX_PAYLOAD_POINTER) {
-            std::cerr << str( boost::format( 
+            std::cerr << str( boost::format(
                     "invalid payload_pointer (%d)\n") % unsigned(payload_pointer) ) ;
             this->receiver_state = Idle;
             return;
@@ -171,7 +171,7 @@ void ULEdec::handleTSPacket(senf::TransportPacket ts_packet)
             return;
         }
     }
-    
+
     } // end pusi-switch
 }
 
@@ -186,7 +186,7 @@ ULEdec::iterator ULEdec::readContSNDUPacket(iterator i, iterator const i_end)
 
 
 ULEdec::iterator ULEdec::readNewSNDUPacket(iterator i, iterator const i_end)
-{ 
+{
     bool dbit = false;
     senf::Packet::size_type sndu_length = *i++ << 8 | *i++;
     if (sndu_length & 0x8000) {
@@ -206,7 +206,7 @@ ULEdec::iterator ULEdec::readNewSNDUPacket(iterator i, iterator const i_end)
     this->snduPacket->length() = sndu_length;
     this->snduPacketData_iter = boost::next(this->snduPacket.data().begin(), 2);
     this->priv_sndu_type_1 = false;
-    
+
     switch (std::distance(i, i_end)) {
     case 1:
         this->priv_sndu_type_1 = true;
@@ -214,13 +214,13 @@ ULEdec::iterator ULEdec::readNewSNDUPacket(iterator i, iterator const i_end)
         this->snduPacketData_iter++;
     case 0:
         break;
-        
-    default: 
+
+    default:
         this->snduPacket->type() = *i++ << 8 | *i++;
         std::advance(this->snduPacketData_iter, 2);
         i = readRawSNDUPacketData(i, i_end);
     }
-    
+
     return i;
 }
 
@@ -241,7 +241,7 @@ void ULEdec::handleSNDUPacket()
     this->snduPacket.dump(std::cout);
     std::cout << "----------------------------------------------------------------------------\n\n";
     if (this->snduPacket->crc() != this->snduPacket->calcCrc()) {
-        throw ULEdecException( str( boost::format( 
+        throw ULEdecException( str( boost::format(
                 "CRC Error. received crc:%d calculated crc:%d")
                     % this->snduPacket->crc() % this->snduPacket->calcCrc() ) );
     }
@@ -250,7 +250,7 @@ void ULEdec::handleSNDUPacket()
 //            nextPacket.data().begin(),
 //            nextPacket.data().end(),
 //            std::cout);
-    
+
 }
 
 
@@ -281,7 +281,7 @@ int main(int argc, char const * argv[])
 ///////////////////////////////cc.e////////////////////////////////////////
 #undef prefix_
 
- 
+
 // Local Variables:
 // mode: c++
 // fill-column: 100
diff --git a/Examples/DVBAdapter/ULEdec.hh b/Examples/DVBAdapter/ULEdec.hh
index 719e160f8f55e2c5184308ad513684f92bcde3c5..f73d424bc88ff5ed5421b8f894d6566a3ac922c8 100644
--- a/Examples/DVBAdapter/ULEdec.hh
+++ b/Examples/DVBAdapter/ULEdec.hh
@@ -1,8 +1,8 @@
 // $Id: ULEdec.cc 355 2007-07-26 14:17:02Z tho $
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Examples/DVBAdapter/frontend.cc b/Examples/DVBAdapter/frontend.cc
index 2f7bd29cf61bf273b74d0ac83881ef075a34f5fd..26f433677cbd676b9214466f1d224032d97cab0f 100644
--- a/Examples/DVBAdapter/frontend.cc
+++ b/Examples/DVBAdapter/frontend.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -32,7 +32,7 @@ int main(int argc, char const * argv[])
     try {
         senf::DVBFrontendHandle handle;
         int16_t strength;
-        
+
         while (true) {
             handle.protocol().signalStrength(&strength);
             std::cout << "signal strength: " << strength << "\n";
diff --git a/Examples/MCSniffer/MCSniffer.cc b/Examples/MCSniffer/MCSniffer.cc
index fbb5fd7918ffcdbe77c5484e0527b9398faa179a..896ef3ad904adf461ec6a028e29c36992d2d0335 100644
--- a/Examples/MCSniffer/MCSniffer.cc
+++ b/Examples/MCSniffer/MCSniffer.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Examples/RateStuffer/Mainpage.dox b/Examples/RateStuffer/Mainpage.dox
index 9f02568bb53b3ec8f70b33b147b949a74a8720ad..51b2ce76471c663529913d8569f6fb8c31e999ac 100644
--- a/Examples/RateStuffer/Mainpage.dox
+++ b/Examples/RateStuffer/Mainpage.dox
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Examples/RateStuffer/ratestuffer.cc b/Examples/RateStuffer/ratestuffer.cc
index c9dbd89c69dd4ea1bc368aa478dd68e88d7199bd..b1d869428142c2fbc9ea24b5e49f1c3d09a12f28 100644
--- a/Examples/RateStuffer/ratestuffer.cc
+++ b/Examples/RateStuffer/ratestuffer.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Examples/Sniffer/Mainpage.dox b/Examples/Sniffer/Mainpage.dox
index e8674323bbe4b41183642e80a4f6148b4d0f62a2..981a1ed3acb6a8493774e9e97f413f9d1fa543d4 100644
--- a/Examples/Sniffer/Mainpage.dox
+++ b/Examples/Sniffer/Mainpage.dox
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -123,8 +123,8 @@
     representation of the \e dynamic type of the exception instance. It is an interface to the g++
     demangler. This is necessary since the \c name member of the C++ \c type_info instance is a
     mangled name in \c g++.
-    
-    That's it for the simple blocking implementation. 
+
+    That's it for the simple blocking implementation.
 
     \section example_scheduler Using the Scheduler
 
@@ -154,7 +154,7 @@
     Calling the Schedulers \c process() method will start the event loop. This call does not return
     (ok, it does return in special cases if \c senf::Scheduler::terminate() is called which does not
     apply here).
-    
+
     \until {
 
     The \c dumpPacket() member is called by the scheduler whenever an event on the socket is
diff --git a/Examples/Sniffer/Sniffer.cc b/Examples/Sniffer/Sniffer.cc
index f228fe774370ab99d0d20c21577741bd61556560..7e60a23623b354575d055483e09fe7de3decb0b4 100644
--- a/Examples/Sniffer/Sniffer.cc
+++ b/Examples/Sniffer/Sniffer.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -69,18 +69,18 @@ class Sniffer
     senf::PacketSocketHandle sock;
 
 public:
-    Sniffer(std::string const & interface) 
+    Sniffer(std::string const & interface)
     {
-        sock.bind(senf::LLSocketAddress(interface)); 
+        sock.bind(senf::LLSocketAddress(interface));
     }
 
-    void run() 
+    void run()
     {
         senf::Scheduler::instance().add(
             sock, senf::membind(&Sniffer::dumpPacket, this));
         senf::Scheduler::instance().process();
     }
-         
+
 private:
     void dumpPacket(senf::Scheduler::EventId event)
     {
diff --git a/Examples/TCPClientServer/client.cc b/Examples/TCPClientServer/client.cc
index 202ff97e6cda3805bf8302166155dbc3afbf224e..50f4ec72127baf7345341609c6a334cff28d4660 100644
--- a/Examples/TCPClientServer/client.cc
+++ b/Examples/TCPClientServer/client.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -33,20 +33,20 @@ int main(int argc, char const * argv[])
             senf::TCPv4ClientSocketHandle sock;
             sock.connect(senf::INet4SocketAddress("127.0.0.1:4243"));
             sock.protocol().linger(true);
-            
+
             std::stringstream s;
             s << i++;
             sock.write(s.str());
 
             sock.close();
-            
+
             std::cout << i << std::endl;
         }
     }
     catch (std::exception const & ex) {
         std::cerr << senf::prettyName(typeid(ex)) << ": " << ex.what() << "\n";
     }
-    
+
     return 0;
 }
 
diff --git a/Examples/TCPClientServer/server.cc b/Examples/TCPClientServer/server.cc
index dacef47569fa0e5e4c8b6dd7822000acf46746d9..93fb1baf05b6f1ad177e7c8e705192fc08548992 100644
--- a/Examples/TCPClientServer/server.cc
+++ b/Examples/TCPClientServer/server.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -39,16 +39,16 @@ class Server
 public:
     Server(senf::INet4Address const & host, unsigned int port)
         : serverSock(senf::INet4SocketAddress(host, port)) {}
-    
-    void run() 
+
+    void run()
     {
         senf::Scheduler::instance().add(
-            serverSock, 
+            serverSock,
             senf::membind(&Server::accept, this),
             senf::Scheduler::EV_READ);
         senf::Scheduler::instance().process();
     }
-         
+
 private:
     void accept(senf::Scheduler::EventId event)
     {
@@ -58,7 +58,7 @@ private:
             boost::bind(&Server::readFromClient, this, clientSock, _1),
             senf::Scheduler::EV_READ);
     }
-    
+
     void readFromClient(senf::TCPv4ClientSocketHandle clientSock, senf::Scheduler::EventId event)
     {
         if (!clientSock) {
diff --git a/Examples/UDPClientServer/Mainpage.dox b/Examples/UDPClientServer/Mainpage.dox
index b35b64293b4fb7cbd6fd715d5c57fb274f317e3f..89deadea488160e859659af6f7a207896d8f49bc 100644
--- a/Examples/UDPClientServer/Mainpage.dox
+++ b/Examples/UDPClientServer/Mainpage.dox
@@ -1,8 +1,8 @@
 // $Id: Mainpage.dox 625 2008-01-16 12:00:00Z Pug $
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -20,15 +20,15 @@
 // Free Software Foundation, Inc.,
 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-/** \mainpage UDP Client/Server example application 
+/** \mainpage UDP Client/Server example application
 
     \dontinclude udpServer.cc
 
     This Application is a command line based client/server application, which sends some strings from
     client to server, where they are printed on the command line.
 
-    After installing the Library,  the udpServer and the udpClient can be found in the 
-    senf/Example/udpServer directory and compiled with 
+    After installing the Library, the udpServer and the udpClient can be found in the
+    senf/Example/udpServer directory and compiled with
 
     <pre>
         #scons -u
@@ -38,14 +38,14 @@
         #./udpClient
     </pre>
 
-    When we take a look to the code, we start with the Server: 
-    First we include the necessary headers: 
+    When we take a look to the code, we start with the Server:
+    First we include the necessary headers:
 
     \skip // Custom includes
     \until membind
 
-    The Scheduler will be needed because we implement a non blocking UDP Server with the %senf 
-    integrated Scheduler. The  scheduler library provides a simple yet flexible abstraction of 
+    The Scheduler will be needed because we implement a non blocking UDP Server with the %senf
+    integrated Scheduler. The  scheduler library provides a simple yet flexible abstraction of
     the standard asynchronous UNIX mainloop utilizing \c select or \c poll.
 
     \section UDP_serverApplication UDP server application
@@ -61,9 +61,9 @@
 
     \until {}
 
-    The public \c run() member is called to run the sniffer. It first adds the socket to the 
-    Scheduler. The \c add() call takes two Arguments, the socket to bind to (which can be a 
-    lot of things and must not necessarily be a socket instance) and callback function to call, 
+    The public \c run() member is called to run the sniffer. It first adds the socket to the
+    Scheduler. The \c add() call takes two Arguments, the socket to bind to (which can be a
+    lot of things and must not necessarily be a socket instance) and callback function to call,
     whenever there is an event on that socket.The callback is specified as a
     <a href="http://www.boost.org/doc/html/function.html">Boost.Function</a> object. A third
     argument may be specified to restrict the events, on which the function is called, here we
@@ -72,15 +72,15 @@
 
     \until }
 
-    Calling the Schedulers \c process() method will start the event loop. This call does not 
+    Calling the Schedulers \c process() method will start the event loop. This call does not
     return (ok, it does return in special cases if \c senf::Scheduler::terminate() is called which
-    does not apply here). The Callback Function is the \c readFromClient() Function, which is 
+    does not apply here). The Callback Function is the \c readFromClient() Function, which is
     declared as private here and will be called whenever an event on the socket is encountered.
     The scheduler passes the event ID to the function.
 
     \until event)
 
-    In the function the data from the socket is put into a standard string and dumped out on stdout. 
+    In the function the data from the socket is put into a standard string and dumped out on stdout.
 
     \until };
 
@@ -88,26 +88,26 @@
 
     \until return 0;
 
-    That's it. We finish of by catching the exception and giving as much detail as possible if an 
+    That's it. We finish of by catching the exception and giving as much detail as possible if an
     exception is caught. The \c prettyName function from the \c Utils library is used, to get a nice,
-    printable representation of the dynamic type of the exception instance. It is an interface to 
-    the g++ demangler. This is necessary since the name member of the C++ \c type_info instance is 
+    printable representation of the dynamic type of the exception instance. It is an interface to
+    the g++ demangler. This is necessary since the name member of the C++ \c type_info instance is
     a mangled name in g++.
 
     \section UDP_clientApplication UDP client application
-    
+
     \dontinclude udpClient.cc
 
-    The client application uses the same mechanisms, but implements them in a small main function. 
-    It sends numbers as strings to the server. 
+    The client application uses the same mechanisms, but implements them in a small main function.
+    It sends numbers as strings to the server.
 
     \skip  argv[])
     \until return 0;
 
-    First a \c UDPv4ClientSocketHandle is created. With the function 
+    First a \c UDPv4ClientSocketHandle is created. With the function
     \c writeto(senf::INet4SocketAddress, string) the string s will be written to the specified
     address and port, which is constructed here from a  static string \c "127.0.0.1:4243". In this
-    example Integers from zero to ten are send to the Server socket. 
+    example Integers from zero to ten are send to the Server socket.
 
     The exception handling is again the same as with the server application.
 */
diff --git a/Examples/UDPClientServer/udpClient.cc b/Examples/UDPClientServer/udpClient.cc
index e7b9a2b83c4ff8ea5fbe498ddd2e6fc25ecf4e84..d52ff785bb0dada67d7026ee24c61509b1850bd3 100644
--- a/Examples/UDPClientServer/udpClient.cc
+++ b/Examples/UDPClientServer/udpClient.cc
@@ -4,7 +4,7 @@
 
 int main(int argc, char const * argv[])
 {
-try
+    try
     {
         for (int i=0; i<=10; i++)
         {
diff --git a/Examples/UDPClientServer/udpServer.cc b/Examples/UDPClientServer/udpServer.cc
index 7865e62dae9691b2d8b3db2ca8fd8daf88848582..dd64389d73557aeefc0bb68cfed5ffe7d401d66a 100644
--- a/Examples/UDPClientServer/udpServer.cc
+++ b/Examples/UDPClientServer/udpServer.cc
@@ -16,7 +16,7 @@ public:
     {
         senf::Scheduler::instance().add(
                 serverSock,
-                senf::membind(&Server::readFromClient, this), 
+                senf::membind(&Server::readFromClient, this),
                 senf::Scheduler::EV_READ);
         senf::Scheduler::instance().process();
     }
diff --git a/Glossary.dox b/Glossary.dox
index dcbb1b2d2bc46315cea31fb0820ba4e5139f24e4..668338fa24386a595d78c25ac7defb8f09f9a4a7 100644
--- a/Glossary.dox
+++ b/Glossary.dox
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
diff --git a/HowTos/NewPacket/Mainpage.dox b/HowTos/NewPacket/Mainpage.dox
index e9cca96ef2de024e134122ec95634df5441ccfb7..c6f5cce93cbe3b1e6c893396351dc34b75b187c0 100644
--- a/HowTos/NewPacket/Mainpage.dox
+++ b/HowTos/NewPacket/Mainpage.dox
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
diff --git a/Mainpage.dox b/Mainpage.dox
index 50d4691464885a1404c419c7d1fc32641af8264b..a74b1dda470a5977bedf226f8e435352d3c15183 100644
--- a/Mainpage.dox
+++ b/Mainpage.dox
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/ActiveFeeder.cc b/PPI/ActiveFeeder.cc
index 56c910abf09135cd02051a552583bf849f9bb4be..795c8fdca57fb763aa666d1ae1a02bcabb3923f3 100644
--- a/PPI/ActiveFeeder.cc
+++ b/PPI/ActiveFeeder.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/ActiveFeeder.cci b/PPI/ActiveFeeder.cci
index 35fd1f7f1f27ebc7dc40b4fb84d74d711dd31b56..522ecf3e0d4d41a194b94903f88239eb131151c1 100644
--- a/PPI/ActiveFeeder.cci
+++ b/PPI/ActiveFeeder.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/ActiveFeeder.hh b/PPI/ActiveFeeder.hh
index 91f752834263801763634f66a8df2a6dce2fcd81..f9c7ed7a6d95b5c1e750b3cd2ca8029a409172f7 100644
--- a/PPI/ActiveFeeder.hh
+++ b/PPI/ActiveFeeder.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/ActiveFeeder.test.cc b/PPI/ActiveFeeder.test.cc
index c3340ee1b31610326320d842d6c7d916528594b5..8fade6ade9c61fc7c053bc153fac334013b702d5 100644
--- a/PPI/ActiveFeeder.test.cc
+++ b/PPI/ActiveFeeder.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/CloneSource.cc b/PPI/CloneSource.cc
index 76b4ddfb94f5e46b5da8317b21ed76aff63b79e4..9abde7320ab0825eb63b73fd1f5cbc08523e3113 100644
--- a/PPI/CloneSource.cc
+++ b/PPI/CloneSource.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -33,7 +33,7 @@
 ///////////////////////////////cc.p////////////////////////////////////////
 
 senf::ppi::module::CloneSource::CloneSource(senf::Packet packet)
-    : packet_(packet) 
+    : packet_(packet)
 {
     noroute(output);
     output.onRequest(&CloneSource::request);
@@ -45,7 +45,7 @@ void senf::ppi::module::CloneSource::request()
 }
 void senf::ppi::module::CloneSource::replacePacket(senf::Packet packet)
 {
-    packet_ = packet; 
+    packet_ = packet;
 }
 
 
diff --git a/PPI/CloneSource.hh b/PPI/CloneSource.hh
index 516e0d47c0b3497f9ec992d4c7d16b9378471c97..6dd80004678bf1eeb596a6215110949678c81393 100644
--- a/PPI/CloneSource.hh
+++ b/PPI/CloneSource.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/CloneSource.test.cc b/PPI/CloneSource.test.cc
index a4ea055a3ab5d7e67b2522f020f51b0b7baf4915..ee5ef0899c89b2b526967cda94316db92e0c16e3 100644
--- a/PPI/CloneSource.test.cc
+++ b/PPI/CloneSource.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -48,7 +48,7 @@ BOOST_AUTO_UNIT_TEST(cloneSource)
 
     senf::ppi::connect(source,sink);
     senf::ppi::init();
-    
+
     BOOST_CHECK( sink.request() != p );
     BOOST_CHECK( sink.request().data()[0] == p.data()[0] );
     BOOST_CHECK( sink.request().data()[0] == p.data()[0] );
diff --git a/PPI/Connectors.cc b/PPI/Connectors.cc
index 8c46477ef7f9aa8a4a75ebb0701312a24593e1c4..ff299011dd27204f93c653014fd46b59dcf4a813 100644
--- a/PPI/Connectors.cc
+++ b/PPI/Connectors.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Connectors.cci b/PPI/Connectors.cci
index 1680902d765c99c23e98147b28f4c6602e0c9013..e4647d7358e55b2693f00c1408aecff4568446dd 100644
--- a/PPI/Connectors.cci
+++ b/PPI/Connectors.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -135,8 +135,8 @@ prefix_ void senf::ppi::connector::PassiveConnector::notifyThrottle()
     if (!throttled()) {
         remoteThrottled_ = true;
         emitThrottle();
-    } 
-    else 
+    }
+    else
         remoteThrottled_ = true;
 }
 
diff --git a/PPI/Connectors.cti b/PPI/Connectors.cti
index a957c92e3e8238467256952bceba896d6e32e341..c00d0c704d688f50892f215bf48725997e755920 100644
--- a/PPI/Connectors.cti
+++ b/PPI/Connectors.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Connectors.hh b/PPI/Connectors.hh
index 52663cc5b5289b8cc3cbaca6ac40da418bc6736c..ee07dc09bfb2ba82967447fc5b4f43618b08685a 100644
--- a/PPI/Connectors.hh
+++ b/PPI/Connectors.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -44,12 +44,12 @@ namespace ppi {
 namespace connector {
 
     /** \namespace senf::ppi::connector
-        \brief Connector classes 
+        \brief Connector classes
 
         A connector has two independent properties
         \li it may be \e active or \e passive
         \li it may be an \e input or an \e output
-    
+
         \e Active connectors are activated from within the module, \e passive connectors are
         signaled by the external framework. \e Input modules receive packets, \e output modules send
         packets.
@@ -57,7 +57,7 @@ namespace connector {
         All passive connectors call some onRequest callback whenever I/O needs to be performed. All
         input modules possess a packet queue.
 
-        We therefore have 4 connector types: 
+        We therefore have 4 connector types:
         \li senf::ppi::connector::ActiveInput
         \li senf::ppi::connector::ActiveOutput
         \li senf::ppi::connector::PassiveInput
@@ -93,7 +93,7 @@ namespace connector {
         };
         \endcode
 
-        \see 
+        \see
             senf::ppi::module::Module \n
             senf::ppi::connect() \n
             \ref ppi_connectors
@@ -134,8 +134,8 @@ namespace connector {
         of connector (output or input) the respective throttling is called forward or backward
         throttling.
 
-        Passive connectors always handle two throttling states: 
-        
+        Passive connectors always handle two throttling states:
+
         \li The \e native throttling state is set manually by the module. It is the throttling state
             originating in the current module
         \li The \e forwarded throttling state is the state as it is received by throttling
@@ -143,7 +143,7 @@ namespace connector {
 
         The accumulative throttling state is generated by combining all sub-states.
      */
-    class PassiveConnector 
+    class PassiveConnector
         : public virtual Connector
     {
     public:
@@ -156,17 +156,17 @@ namespace connector {
                                              is a pointer-to-member to a member of the class which
                                              holds this input. In the second case, the pointer will
                                              automatically be bound to the containing instance.
-                                             
+
                                              \param[in] handler Handler to call, whenever an I/O
                                                  operation is to be performed. */
 
-        
+
         bool throttled() const;         ///< Get accumulative throttling state
         bool nativeThrottled() const;   ///< Get native throttling state
 
         void throttle();                ///< Set native throttling
         void unthrottle();              ///< Revoke native throttling
-        
+
         ActiveConnector & peer() const;
 
     protected:
@@ -211,7 +211,7 @@ namespace connector {
         notifications. These notifications should then either be processed by the module or be
         forwarded to other connectors.
      */
-    class ActiveConnector 
+    class ActiveConnector
         : public virtual Connector
     {
         typedef ppi::detail::Callback<>::type Callback;
@@ -287,7 +287,7 @@ namespace connector {
             insertion/deletion but I believe that list is just to expensive since every packet will
             be added to the queue before it can be processed.
      */
-    class InputConnector 
+    class InputConnector
         : public virtual Connector
     {
         typedef std::deque<Packet> Queue;
@@ -319,10 +319,10 @@ namespace connector {
 
     protected:
         InputConnector();
-        
+
     private:
         void enqueue(Packet p);
-        
+
         virtual void v_requestEvent();
         virtual void v_enqueueEvent();
         virtual void v_dequeueEvent();
@@ -331,14 +331,14 @@ namespace connector {
 
         friend class OutputConnector;
     };
-    
+
     /** \brief Output connector base-class
-        
+
         An output connector sends out packets. It may be either an ActiveConnector or a
         PassiveConnector. An output connector does \e not have an built-in queueing, it relies on
         the queueing of the connected input.
      */
-    class OutputConnector 
+    class OutputConnector
         : public virtual Connector
     {
     public:
@@ -351,7 +351,7 @@ namespace connector {
     protected:
         OutputConnector();
     };
-    
+
     /** \brief Combination of PassiveConnector and InputConnector
 
         The GenericPassiveInput automatically controls the connectors throttling state using a
@@ -361,7 +361,7 @@ namespace connector {
         <tt>ThresholdQueueing(1,0)</tt> which will throttle the input whenever the queue is
         non-empty.
      */
-    class GenericPassiveInput 
+    class GenericPassiveInput
         : public PassiveConnector, public InputConnector,
           public safe_bool<GenericPassiveInput>
     {
@@ -374,7 +374,7 @@ namespace connector {
         void qdisc(QDisc const & disc); ///< Change the queueing discipline
                                         /**< The queueing discipline is a class which provides the
                                              QueueingDiscipline interface.
-                                             
+
                                              \param[in] disc New queueing discipline */
 
     protected:
diff --git a/PPI/Connectors.ih b/PPI/Connectors.ih
index e207f58e412b57184cb0beea266b62870f6b0e6f..d2a8e4c0b1592c966434acde47ce1021bb636cd2 100644
--- a/PPI/Connectors.ih
+++ b/PPI/Connectors.ih
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
diff --git a/PPI/Connectors.test.cc b/PPI/Connectors.test.cc
index 16c76eab550956d1835a2302fb7dee1cdabfe66f..8202b3b4b36818941d420a44c5d0b789a820a87c 100644
--- a/PPI/Connectors.test.cc
+++ b/PPI/Connectors.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/DebugEvent.cci b/PPI/DebugEvent.cci
index 5954b086aacd84064bc23cbbe34fed7a2b448f59..b0425c5c8c05164efe7ff17317f47989a62f59dc 100644
--- a/PPI/DebugEvent.cci
+++ b/PPI/DebugEvent.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/DebugEvent.hh b/PPI/DebugEvent.hh
index d943716a293792f37ffbccab8f07d8e7623cf313..9215d26a79b05dd8a177696525cbe1a2acec99a2 100644
--- a/PPI/DebugEvent.hh
+++ b/PPI/DebugEvent.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/DebugEvent.test.cc b/PPI/DebugEvent.test.cc
index ad5ed26409fa95f31427e9f9a8dbcd970254f2a3..840d52b791a5b7ff0b2258c5a62216c81359faba 100644
--- a/PPI/DebugEvent.test.cc
+++ b/PPI/DebugEvent.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/DebugModules.cci b/PPI/DebugModules.cci
index 22fabd5e1cc8f06dc8e30d7dd3efc21f3ce2a38d..975d9bba98fb740394ecc780a7f747b85507b127 100644
--- a/PPI/DebugModules.cci
+++ b/PPI/DebugModules.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -175,7 +175,7 @@ prefix_ senf::Packet senf::ppi::module::debug::PassiveSink::front()
 prefix_ senf::Packet senf::ppi::module::debug::PassiveSink::pop_front()
 {
     Packet p (front());
-    if (p) 
+    if (p)
         packets_.pop_front();
     return p;
 }
diff --git a/PPI/DebugModules.cti b/PPI/DebugModules.cti
index ff3cd6e2738c859f1349752d096bd4cfe856f515..d603cc8ab661607b4afc612040d8f22ba5559dfd 100644
--- a/PPI/DebugModules.cti
+++ b/PPI/DebugModules.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/DebugModules.hh b/PPI/DebugModules.hh
index 60ac7e5447869a0f64ef45563cbb541c15784341..536a10c294cb3bdec7bac055fa7c59e0b3e731fb 100644
--- a/PPI/DebugModules.hh
+++ b/PPI/DebugModules.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -41,7 +41,7 @@ namespace senf {
 namespace ppi {
 namespace module {
 namespace debug {
-    
+
     /** \namespace senf::ppi::module::debug
         \brief Debug modules
 
@@ -49,7 +49,7 @@ namespace debug {
         manually pass packets into a network and read back the output packets.
 
         There are three categories of modules:
-    
+
         \li <i>Active modules</i> (ActiveSource, ActiveSink) are triggered by external
             calls. Calling \c submit() / \c request() will send the request into the module network
             synchronously. From this it follows, that senf::ppi::run() should \e not be
@@ -74,7 +74,7 @@ namespace debug {
             signaled in the network</em>.
      */
     class ActiveSource
-        : public Module, 
+        : public Module,
           public safe_bool<ActiveSource>
     {
         SENF_PPI_MODULE(ActiveSource);
@@ -91,7 +91,7 @@ namespace debug {
     };
 
     /** \brief Debug packet source with passive output
-        
+
         This module provides a queue of packets for reading by the network. Each submit() call adds
         a packet to the queue which will be sent into the network when requested. The output is
         automatically throttled when the queue becomes empty.
@@ -105,14 +105,14 @@ namespace debug {
 
     public:
         typedef Queue::size_type size_type;
-        
+
         connector::PassiveOutput<> output;
 
         PassiveSource();
 
         void throttle();                ///< Throttle output connector
         void unthrottle();              ///< Unthrottle output connector
-        
+
         void submit(Packet packet);     ///< Enqueue packet
 
         bool empty();                   ///< \c true if queue is empty
@@ -121,10 +121,10 @@ namespace debug {
     private:
         void request();
         void init();
-        
+
         Queue packets_;
     };
-    
+
     /** \brief Debug packet sink with active input
 
         This module requests packets from the network. Each call to request() will pass a packet
@@ -191,7 +191,7 @@ namespace debug {
     };
 
     /** \brief Active, queue-based packet source
-        
+
         The ActiveFeederSource contains a packet queue containing the packets to be precessed. These
         packets are actively fed into the network when it is run with senf::ppi::run() until it is
         empty, when senf::ppi::run() will return.
@@ -212,7 +212,7 @@ namespace debug {
 
     public:
         typedef PassiveSource::size_type size_type;
-        
+
         connector::ActiveOutput<> & output;
 
         ActiveFeederSource();
@@ -223,7 +223,7 @@ namespace debug {
     };
 
     /** \brief Active, queue-based packet sink
-    
+
         The ActiveFeederSink contains a packet queue to receive the packets from the network. The
         ActiveFeederSink will actively request packets from the network until it's input is
         throttled.
@@ -234,7 +234,7 @@ namespace debug {
             eventually or senf::ppi::run will not return.
 
         ActiveFeederSink is not a module but a collection of two modules: a PassiveSink and an
-        ActiveFeeder. 
+        ActiveFeeder.
      */
     class ActiveFeederSink
     {
@@ -247,7 +247,7 @@ namespace debug {
         typedef PassiveSink::iterator iterator;
 
         connector::ActiveInput<> & input;
-        
+
         ActiveFeederSink();
 
         bool empty();
@@ -260,14 +260,14 @@ namespace debug {
 
         void clear();
     };
-   
+
     /** \brief Log received packets
 
         This module will log all packets sent to it's input using SENF_LOG to the given log
         \a Stream, \a Area and \a Level.
      */
-    template < class Stream = log::Debug, 
-               class Area   = log::DefaultArea, 
+    template < class Stream = log::Debug,
+               class Area   = log::DefaultArea,
                class Level  = log::VERBOSE >
     class LogSink
         : public module::Module
diff --git a/PPI/DebugModules.test.cc b/PPI/DebugModules.test.cc
index 72c43ac72f38b10a5d29047869e3a85a11d841bc..854d7fd3f1562f785bc7ac4fcb22220eb4eb6e90 100644
--- a/PPI/DebugModules.test.cc
+++ b/PPI/DebugModules.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/DiscardSink.cc b/PPI/DiscardSink.cc
index 50f914c15cc0c03df6f1147cadbdbd5cfee59257..c7a629837bad16a64479a470f1bd600fd2736d49 100644
--- a/PPI/DiscardSink.cc
+++ b/PPI/DiscardSink.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/DiscardSink.hh b/PPI/DiscardSink.hh
index 6090ec9a9e36d88e91a3a42e2fb442dd5c967c33..39a16dd7043984bd01fd8887d57dd85ada485a5a 100644
--- a/PPI/DiscardSink.hh
+++ b/PPI/DiscardSink.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -49,7 +49,7 @@ namespace module {
         SENF_PPI_MODULE(DiscardSink);
     public:
         connector::PassiveInput<> input;
-        
+
         DiscardSink();
 
     private:
diff --git a/PPI/DiscardSink.test.cc b/PPI/DiscardSink.test.cc
index cae06fed5d8a5b77735f6b146e8bc9aaed4e4d73..c6e1907edd77c3bed2e9bc04363ad636481f61f4 100644
--- a/PPI/DiscardSink.test.cc
+++ b/PPI/DiscardSink.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -43,12 +43,12 @@ BOOST_AUTO_UNIT_TEST(discardSink)
 
     senf::ppi::module::debug::ActiveSource source;
     senf::ppi::module::DiscardSink sink;
-    
+
     senf::ppi::connect(source,sink);
     senf::ppi::init();
 
     senf::Packet p (senf::DataPacket::create());
-    
+
     source.submit(p);
     source.submit(p);
 }
diff --git a/PPI/EventManager.cc b/PPI/EventManager.cc
index 51398d4a931862de13c7266f4c9e7e1d5ccc3c2a..be2dc76f7d6735cf0ea84e74877a5685afacf048 100644
--- a/PPI/EventManager.cc
+++ b/PPI/EventManager.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/EventManager.cci b/PPI/EventManager.cci
index bcffecac36f0de46766d863bf31f088705eacf9a..156e374b88679fea158ca34e1a67fb0229b4172f 100644
--- a/PPI/EventManager.cci
+++ b/PPI/EventManager.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/EventManager.ct b/PPI/EventManager.ct
index 7c5b5961f028bbdd13ec10fde009b93905638097..305163025db0033ff177bd3d6dbbdec4f02cc2bb 100644
--- a/PPI/EventManager.ct
+++ b/PPI/EventManager.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/EventManager.hh b/PPI/EventManager.hh
index 8cd1278064db8abeea46b02878db7d6c0f0f2931..d6de856f7483c4a58b6c399c889349ae68c08858 100644
--- a/PPI/EventManager.hh
+++ b/PPI/EventManager.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/EventManager.test.cc b/PPI/EventManager.test.cc
index c14765584d7e77507e04e99efcbc2a568a1dc011..ee1c5848b7fa075a125a36b454cbba24b4456f28 100644
--- a/PPI/EventManager.test.cc
+++ b/PPI/EventManager.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Events.cc b/PPI/Events.cc
index 5ca0ee9827ee77e7eb89c9ddecb7a71e69ea5af0..9f8ec8057a286b4ce8a51130823ed9db7313bbd9 100644
--- a/PPI/Events.cc
+++ b/PPI/Events.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Events.cci b/PPI/Events.cci
index 505ae4d50dc79c60163826046bc3e14170acc6ee..7d113b330764606c7e2c2389fa7200f868f82bde 100644
--- a/PPI/Events.cci
+++ b/PPI/Events.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Events.cti b/PPI/Events.cti
index bc047230fc62bf2785f873ea418a396d48871cc2..1dca3da11b03294c2b4a1b0132a9321d1ca2c12d 100644
--- a/PPI/Events.cti
+++ b/PPI/Events.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Events.hh b/PPI/Events.hh
index 9744f75c6c5ef258ae2ddb89e0b7c5f68e38e492..b3717bdc13b9c4c4f704ee6d6fc9f1376f367722 100644
--- a/PPI/Events.hh
+++ b/PPI/Events.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Events.ih b/PPI/Events.ih
index 5613888879eacb600b0d91a80f5abe80e5fa51a1..a2354c869c207448e6211e8ef81e1e6fe019ddc7 100644
--- a/PPI/Events.ih
+++ b/PPI/Events.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Events.test.cc b/PPI/Events.test.cc
index 1348ae29162c9f3b66525a59ccba1abbb776b1a0..6d0c30ea55e8f0401610ad2e744f541ec79a7b82 100644
--- a/PPI/Events.test.cc
+++ b/PPI/Events.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/IOEvent.cc b/PPI/IOEvent.cc
index a20e8eb638a66bc01d40bc6f87273114ee9e2226..c39d57a1f93c4b9e2d4e90cf36458eac98fef08b 100644
--- a/PPI/IOEvent.cc
+++ b/PPI/IOEvent.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -42,7 +42,7 @@
 
 prefix_ void senf::ppi::IOEvent::v_enable()
 {
-    Scheduler::instance().add(fd_, boost::bind(&IOEvent::cb,this,_1), 
+    Scheduler::instance().add(fd_, boost::bind(&IOEvent::cb,this,_1),
                               Scheduler::EventId(events_));
 }
 
diff --git a/PPI/IOEvent.cti b/PPI/IOEvent.cti
index 549bd4789b98caf16083cdbd23efab705a09c2ec..682d464fe2a5bae9caceb32e8f4e982c2fafe3bb 100644
--- a/PPI/IOEvent.cti
+++ b/PPI/IOEvent.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/IOEvent.hh b/PPI/IOEvent.hh
index 4399c5c8def267ca45040801156826fc6fb3816c..5a3e18881c0abbb8b5913660c5dafbc4642045f7 100644
--- a/PPI/IOEvent.hh
+++ b/PPI/IOEvent.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/IOEvent.test.cc b/PPI/IOEvent.test.cc
index ecc5dafd8708c40ed78ac5f115332fd77fb0f015..32ee26682619ad3c6175d3239656a3e555aef067 100644
--- a/PPI/IOEvent.test.cc
+++ b/PPI/IOEvent.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/IdleEvent.cc b/PPI/IdleEvent.cc
index 68eccc9bb4d3f888aaf04bf9c0c45ea9d374c8f5..d3346857b26eafa7069f2025fbfbb94d961fc828 100644
--- a/PPI/IdleEvent.cc
+++ b/PPI/IdleEvent.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/IdleEvent.cci b/PPI/IdleEvent.cci
index 40d227a655cfcf2f07bd5cab2721fe1fa0e85d25..41ccf87c3d762ea74152d206dbbb1a581c8edd88 100644
--- a/PPI/IdleEvent.cci
+++ b/PPI/IdleEvent.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/IdleEvent.hh b/PPI/IdleEvent.hh
index 593b1006cc501fb02f9e029185da74773f3722b7..6a7051092d4f97f35660c0c3622f839788155feb 100644
--- a/PPI/IdleEvent.hh
+++ b/PPI/IdleEvent.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/IdleEvent.test.cc b/PPI/IdleEvent.test.cc
index f512d2fe53803e74c6906fd4609def6ca51294db..f9eafd0f2d450033b3e8fbcf1e611ba89ae5a6c5 100644
--- a/PPI/IdleEvent.test.cc
+++ b/PPI/IdleEvent.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/IntervalTimer.cc b/PPI/IntervalTimer.cc
index f924c6ed42cc7f0db3593e65535a76fd1c14d953..507567edf60e35f4b61c804ecb3939287d1d45cd 100644
--- a/PPI/IntervalTimer.cc
+++ b/PPI/IntervalTimer.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/IntervalTimer.cci b/PPI/IntervalTimer.cci
index d7fa39c4a427d51b9db4b9fe3a268f6c0e7103dc..f38316ae87a8b2f4738bdabdaaabea8865d9e598 100644
--- a/PPI/IntervalTimer.cci
+++ b/PPI/IntervalTimer.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/IntervalTimer.hh b/PPI/IntervalTimer.hh
index 66a07981e4278d2b4eb7a37a16e47550fedc1a36..0e55aa5e4feaaa72bf5145dae84b5aca2403ce86 100644
--- a/PPI/IntervalTimer.hh
+++ b/PPI/IntervalTimer.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -64,7 +64,7 @@ namespace ppi {
         ///\name Structors and default members
         ///@{
 
-        explicit IntervalTimer(ClockService::clock_type interval, 
+        explicit IntervalTimer(ClockService::clock_type interval,
                                unsigned eventsPerInterval=1);
 
         ///@}
diff --git a/PPI/IntervalTimer.test.cc b/PPI/IntervalTimer.test.cc
index 76a6e753204b703fd3705cbc1372fb2cce5546b0..3f5d92b228fbbaac100ad330191ac0fb1626f00d 100644
--- a/PPI/IntervalTimer.test.cc
+++ b/PPI/IntervalTimer.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -41,7 +41,7 @@ namespace module = senf::ppi::module;
 namespace ppi = senf::ppi;
 
 namespace {
-    
+
     class TimerTest : public module::Module
     {
         SENF_PPI_MODULE(TimerTest);
@@ -57,14 +57,14 @@ namespace {
 
     public:
         TimerTest(senf::ClockService::clock_type d_, unsigned n_)
-        :   timer ( senf::ClockService::milliseconds(d_) ), 
-            n     ( n_ ) 
+        :   timer ( senf::ClockService::milliseconds(d_) ),
+            n     ( n_ )
         {
             registerEvent( timer, &TimerTest::tick );
         }
     };
 
-    bool is_close_clock(senf::ClockService::clock_type a, senf::ClockService::clock_type b, 
+    bool is_close_clock(senf::ClockService::clock_type a, senf::ClockService::clock_type b,
                         unsigned long delta = senf::ClockService::milliseconds(100))
     {
         return (a<b ? b-a : a-b ) < delta;
@@ -76,7 +76,7 @@ BOOST_AUTO_UNIT_TEST(intervalTimer)
     TimerTest timer (100,4);
     senf::ClockService::clock_type start (senf::ClockService::now());
     senf::ppi::run();
-    BOOST_CHECK_PREDICATE( is_close_clock, 
+    BOOST_CHECK_PREDICATE( is_close_clock,
                            (senf::ClockService::now())
                            (start+senf::ClockService::milliseconds(400)) );
 }
diff --git a/PPI/Joins.cc b/PPI/Joins.cc
index 3f15955540ad89e22f5e1f6d22fcf4e8ec56f3e5..71428c600109e47e9a3ce352b2227179a238fe86 100644
--- a/PPI/Joins.cc
+++ b/PPI/Joins.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -82,7 +82,7 @@ prefix_ void senf::ppi::module::PassiveJoin::onUnthrottle()
 
 prefix_ senf::ppi::connector::ActiveInput<> & senf::ppi::module::PriorityJoin::newInput()
 {
-    inputs_.push_back(new connector::ActiveInput<>()); 
+    inputs_.push_back(new connector::ActiveInput<>());
     connector::ActiveInput<> & input (inputs_.back());
 
     noroute(input);
diff --git a/PPI/Joins.cci b/PPI/Joins.cci
index 11260045802a76aee4e4655e93c9b92e0a18593a..2bb3449b1c1e684510152189962c49a67b05b3f1 100644
--- a/PPI/Joins.cci
+++ b/PPI/Joins.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Joins.cti b/PPI/Joins.cti
index 8bb7e0cc0359bef9108d2c49c63131850d5fc26c..b2dedda13e5aba44a50b7b870123aae7181e51b4 100644
--- a/PPI/Joins.cti
+++ b/PPI/Joins.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Joins.hh b/PPI/Joins.hh
index 3f7087cc2d19acec7183ff579a42739a081d9e2c..77cb333b86a238653230e5c6a79e6c822a2833dd 100644
--- a/PPI/Joins.hh
+++ b/PPI/Joins.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -42,7 +42,7 @@ namespace ppi {
 
     template <class Source>
     connector::GenericPassiveInput & connect(Source & source, module::PassiveJoin & target);
-    
+
     template <class Source>
     connector::GenericActiveInput & connect(Source & source, module::PriorityJoin & target);
 
@@ -120,7 +120,7 @@ namespace module {
         \endcode
         Here, \a module1 has higher priority than \a module2 which will only be queried if \a
         module1 is throttled.
-        
+
         \ingroup routing_modules
      */
     class PriorityJoin
diff --git a/PPI/Joins.test.cc b/PPI/Joins.test.cc
index 9a7aae1ecdb01f89bb39c65351b78cc3a7bd0f3f..c0fca8e5af085bfae434193ff4d15c1375b1e5b7 100644
--- a/PPI/Joins.test.cc
+++ b/PPI/Joins.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Module.cc b/PPI/Module.cc
index e674a7c1e1271058ce6693a6fc883921c9dc4ae0..449bf2b81d57204220113906c465afe3c1f28188 100644
--- a/PPI/Module.cc
+++ b/PPI/Module.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Module.cci b/PPI/Module.cci
index 57711250808353f5fe42e28ec11f43cd33c825c9..26045ba43e9c7e4b2ba45141e1fe55b4d90f09e6 100644
--- a/PPI/Module.cci
+++ b/PPI/Module.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Module.ct b/PPI/Module.ct
index 5157a944a640138cd984b2291f89214bbbd23aae..d592b1b3a9032eb7983cc8063cc9c74defa3a169 100644
--- a/PPI/Module.ct
+++ b/PPI/Module.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Module.hh b/PPI/Module.hh
index a55b3f0a030974f860ee04ccc9eaffa50ea2feaa..be06aa826416925222ff5d3ee4835a659f279d30 100644
--- a/PPI/Module.hh
+++ b/PPI/Module.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Module.ih b/PPI/Module.ih
index 583f9758b4de0fbe22aab1f41c7d8dd0fa9dbc18..05382639e6388eed3492e301828fb8034fec084b 100644
--- a/PPI/Module.ih
+++ b/PPI/Module.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -39,24 +39,24 @@ namespace detail {
 
     // Placing these into a class simplifies the friend declaration
     template <class Source, class Target>
-    struct RouteHelper 
+    struct RouteHelper
     {
         static void route(Module & module, Source & source, Target & target,
-                          connector::InputConnector &, 
+                          connector::InputConnector &,
                           connector::OutputConnector &);
 
-    
+
         static void route(Module & module, Source & source, Target & target,
-                          connector::InputConnector &, 
+                          connector::InputConnector &,
                           EventDescriptor &);
-        
+
         static void route(Module & module, Source & source, Target & target,
                           EventDescriptor &,
                           connector::OutputConnector &);
     };
 
 #endif
-       
+
 }}}}
 
 ///////////////////////////////ih.e////////////////////////////////////////
diff --git a/PPI/Module.test.cc b/PPI/Module.test.cc
index 95b223244b2cc7a9cc913cad40de5aa46105cd73..cca1208a73bfbe294a4c546a1c62b9ace66b1270 100644
--- a/PPI/Module.test.cc
+++ b/PPI/Module.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/ModuleManager.cc b/PPI/ModuleManager.cc
index e713c74962e18aa4ba68188120304a5ef4176f44..a356eeec452efc802aec9415dfae66299faaee39 100644
--- a/PPI/ModuleManager.cc
+++ b/PPI/ModuleManager.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/ModuleManager.cci b/PPI/ModuleManager.cci
index fff83bc631f010224c1363e0d3b6dde0a389f676..fc7f7f9a0e5c6826ef00dd46f4b80ef8609850dc 100644
--- a/PPI/ModuleManager.cci
+++ b/PPI/ModuleManager.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/ModuleManager.hh b/PPI/ModuleManager.hh
index 4559af341c57ef95f74e1c6d0370ac4aaa1fc2b7..6c8d291dac1fb617997b617561f88fe820ba7382 100644
--- a/PPI/ModuleManager.hh
+++ b/PPI/ModuleManager.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -70,7 +70,7 @@ namespace ppi {
 
         void registerModule(module::Module & module);
         void unregisterModule(module::Module & module);
-        
+
         typedef std::vector<module::Module *> ModuleRegistry;
 
 #ifndef DOXYGEN
diff --git a/PPI/ModuleManager.test.cc b/PPI/ModuleManager.test.cc
index 17a4fbbdca0ff4fb1850582d7183b689442a4b67..59b0b6b9b13eb11426ec46012e4744e02c86821c 100644
--- a/PPI/ModuleManager.test.cc
+++ b/PPI/ModuleManager.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/PPI.hh b/PPI/PPI.hh
index 1e0364df3308609041b87eddd9242f5e977411f2..536a22ee456ff234f0e3f995a8d55bb1f299376b 100644
--- a/PPI/PPI.hh
+++ b/PPI/PPI.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/PassiveQueue.cc b/PPI/PassiveQueue.cc
index 7ce0b6ce48e243836518847a985d17baec5b45e6..08eb6907f9d81ee20f8838198a38db241f7aee82 100644
--- a/PPI/PassiveQueue.cc
+++ b/PPI/PassiveQueue.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -50,7 +50,7 @@ prefix_ void senf::ppi::module::PassiveQueue::onInput()
 
 prefix_ void senf::ppi::module::PassiveQueue::onOutput()
 {
-    if (input) 
+    if (input)
         output(input());
     if (!input)
         output.throttle();
diff --git a/PPI/PassiveQueue.cci b/PPI/PassiveQueue.cci
index e5503d287d5a7f352fd44265c5799ce1cfff073c..60df34aa2129f2c661bc8f2c0aeb048ded37da0c 100644
--- a/PPI/PassiveQueue.cci
+++ b/PPI/PassiveQueue.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/PassiveQueue.cti b/PPI/PassiveQueue.cti
index 6020365e207d123b386d9885327475de938175d9..a397e7d5fd41de4f48550548cb8ac2b722603c4d 100644
--- a/PPI/PassiveQueue.cti
+++ b/PPI/PassiveQueue.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/PassiveQueue.hh b/PPI/PassiveQueue.hh
index 20734b69574f4ff4f365760190e8c163ce8003cd..2e118cca0c04ebe5a9c43d5ce0541ea0cd108408 100644
--- a/PPI/PassiveQueue.hh
+++ b/PPI/PassiveQueue.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -37,12 +37,12 @@
 namespace senf {
 namespace ppi {
 namespace module {
-    
+
     /** \brief Adaptor to connect active a pair of active connectors.
 
         This adaptor queue is used to connect two active connectors to each other. The queue
         receives data in it's passive input and places them in it's queue. Whenever data is
-        requested from the passive output, a packet is dequeued. 
+        requested from the passive output, a packet is dequeued.
 
         The PassiveQueue will automatically throttle in both directions. Throttling on the input
         connector is the standard throttling as implemented in
@@ -51,14 +51,14 @@ namespace module {
 
         \ingroup adapter_modules
      */
-    class PassiveQueue 
+    class PassiveQueue
         : public module::Module
     {
         SENF_PPI_MODULE(PassiveQueue);
     public:
         connector::PassiveInput<> input;
         connector::PassiveOutput<> output;
-        
+
         PassiveQueue();
 
         template <class QDiscipline>
@@ -66,7 +66,7 @@ namespace module {
                                         /**< This call changes the queueing discipline of the
                                              queue. This call is just forwarded to the \a input
                                              connector.
-                                             
+
                                              \see connector::GenericPassiveInput::qdisc() */
 
     private:
diff --git a/PPI/PassiveQueue.test.cc b/PPI/PassiveQueue.test.cc
index a62eafb6565ee0bd54055461c634a46f2b25b717..2b8600708ba360fab9105dab64abbc6883d8b9f0 100644
--- a/PPI/PassiveQueue.test.cc
+++ b/PPI/PassiveQueue.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -54,7 +54,7 @@ BOOST_AUTO_UNIT_TEST(passiveQueue)
     ppi::init();
 
     senf::Packet p (senf::DataPacket::create());
-    
+
     BOOST_CHECK( ! sink );
     source.submit(p);
     BOOST_CHECK( sink );
diff --git a/PPI/Queueing.cc b/PPI/Queueing.cc
index d985795f0de975a52cceec9606ad1849ff7d7b8f..1240626bc923b8386b88c87fee0db236a9439f8f 100644
--- a/PPI/Queueing.cc
+++ b/PPI/Queueing.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Queueing.cci b/PPI/Queueing.cci
index f7e1394f911228c0ab8eb3d4476299798138ed97..ae3598e6fecbca794e01fc66116e496c414cd238 100644
--- a/PPI/Queueing.cci
+++ b/PPI/Queueing.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Queueing.hh b/PPI/Queueing.hh
index 5b70bc952e5588f12f25e9ca6ef4b5e6ea5a7dbf..16cecb4a5e5d2d04ffc211576e8eebefb4b39273 100644
--- a/PPI/Queueing.hh
+++ b/PPI/Queueing.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Queueing.test.cc b/PPI/Queueing.test.cc
index 03690b47acf22899dabc6a3b62aeae19a2a9ff28..9f3e63a7982fdce0773ca4e9b095a0fc30ea7922 100644
--- a/PPI/Queueing.test.cc
+++ b/PPI/Queueing.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/RateFilter.cc b/PPI/RateFilter.cc
index f7f01df95d6a45ab7a0a2ebf91348df14f1310f2..71fc28ab12c3e181e6a8ff84c0f85450fc35ed22 100644
--- a/PPI/RateFilter.cc
+++ b/PPI/RateFilter.cc
@@ -1,6 +1,6 @@
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/RateFilter.hh b/PPI/RateFilter.hh
index 19cb3dc236ad246eebea612ed104bcc2a2ca67fc..58f330be6ecc41cbf1aa0fc2520c7689f352d8a8 100644
--- a/PPI/RateFilter.hh
+++ b/PPI/RateFilter.hh
@@ -1,6 +1,6 @@
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Route.cci b/PPI/Route.cci
index 6be3aad734d0d62479e03eb3557d79184e489cf8..0a3117ad84a03274f5527f08fc9259c7e90fc4bb 100644
--- a/PPI/Route.cci
+++ b/PPI/Route.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Route.ct b/PPI/Route.ct
index f20b1e8920a152ede6b8a7030033f51a6679a231..4482f7cf4465d4f4523483e8f2058e1833e7f0a0 100644
--- a/PPI/Route.ct
+++ b/PPI/Route.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Route.cti b/PPI/Route.cti
index be4307bb66fe8e0e8bb2fde7fc61754c26a72680..c72ad31e9e274413f8a89206f81f17681e6044aa 100644
--- a/PPI/Route.cti
+++ b/PPI/Route.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Route.hh b/PPI/Route.hh
index 60fd711954297e618e429bcc8189cc2cd7f945db..fa59c96791fb6f0a8d7c7a5acfe633e7d616a089 100644
--- a/PPI/Route.hh
+++ b/PPI/Route.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Route.ih b/PPI/Route.ih
index 90cd95686e57596d6353a466f3586424daa1e088..01836c9d63bc98e3568178983c3c215442312bdc 100644
--- a/PPI/Route.ih
+++ b/PPI/Route.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Route.test.cc b/PPI/Route.test.cc
index 1db8183bfad6bf44d21e83868b68e3bae88e6f68..efa3f12adf584a1592fc4d4938056cf853ec65bc 100644
--- a/PPI/Route.test.cc
+++ b/PPI/Route.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Setup.cci b/PPI/Setup.cci
index 6dd7a58c006d352f03f1c0be2a98a2133ae994a4..5311aaa406ebf9ff64570237096faf63b1449a39 100644
--- a/PPI/Setup.cci
+++ b/PPI/Setup.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Setup.cti b/PPI/Setup.cti
index 93048d293f2205e05c9526bc64628f5d78c3bd6a..30c7ae6b5b286e5427875e6fd01a71967f73b0df 100644
--- a/PPI/Setup.cti
+++ b/PPI/Setup.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Setup.hh b/PPI/Setup.hh
index e8da601ff9dd38bb0716e98dc34ffa427bd33cb9..cbff044eca358652116cd051300052c0d5f929db 100644
--- a/PPI/Setup.hh
+++ b/PPI/Setup.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/Setup.test.cc b/PPI/Setup.test.cc
index 595a0ae137d559b7ee2a6805d397e5a40964690d..e6a4fb703ac3e8d5a776563f972cd3b57d4a4023 100644
--- a/PPI/Setup.test.cc
+++ b/PPI/Setup.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/SocketSink.cci b/PPI/SocketSink.cci
index 08cc5692deaf2c8dba23d9ebada2e0b730a7ce28..5e1ebda59d1ee1814e41f804947c1e2a10ddcaa1 100644
--- a/PPI/SocketSink.cci
+++ b/PPI/SocketSink.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/SocketSink.ct b/PPI/SocketSink.ct
index b6509c268a7aef2344ef667555f6baed45bf9320..e578fd07ae614fa5fee0714d05f03cc58d7d6e7d 100644
--- a/PPI/SocketSink.ct
+++ b/PPI/SocketSink.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/SocketSink.cti b/PPI/SocketSink.cti
index 24b33dd8afe657ecf32a8ec3bf20629376b9951e..1ae129be8e5ba9837b59d16a6109b67e159b3678 100644
--- a/PPI/SocketSink.cti
+++ b/PPI/SocketSink.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/SocketSink.hh b/PPI/SocketSink.hh
index 6e5cfb92a382ebf120440d2f1332094a7ec9580b..a0a32fdad56ea4bc583a763f875825139a4c0ebd 100644
--- a/PPI/SocketSink.hh
+++ b/PPI/SocketSink.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/SocketSink.test.cc b/PPI/SocketSink.test.cc
index 69532b62f08914f45b96dd1d69282947d00cfde0..0114565349e9508920fd7e73cbf65087eaa280fa 100644
--- a/PPI/SocketSink.test.cc
+++ b/PPI/SocketSink.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/SocketSource.ct b/PPI/SocketSource.ct
index 2d9e881c44ac55d0a9d320131317a5940aaf41e0..eb69a5d93056219a6b2d88d0baa016e0fdca9e43 100644
--- a/PPI/SocketSource.ct
+++ b/PPI/SocketSource.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/SocketSource.cti b/PPI/SocketSource.cti
index 53c9fed7816246cb574238416a2d8cc45d177d41..90e89e0a165c48ab3d3d148749d2a0af6e6ec585 100644
--- a/PPI/SocketSource.cti
+++ b/PPI/SocketSource.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/SocketSource.hh b/PPI/SocketSource.hh
index f3bb6b49e05d9fcf21872f89e4fcdb9ce3f84687..477df4bad8e86e5d98b06dbfe31f7c0a26cbf88c 100644
--- a/PPI/SocketSource.hh
+++ b/PPI/SocketSource.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/SocketSource.test.cc b/PPI/SocketSource.test.cc
index e2ec5037ee7447f6059dfcb8c7451f042d3d4068..d1f6263212d5d8827cc4c6f5684604d1a7ea2bf4 100644
--- a/PPI/SocketSource.test.cc
+++ b/PPI/SocketSource.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/ThrottleBarrier.cc b/PPI/ThrottleBarrier.cc
index fc0bea4f8554b49da38408eb7ae622df86286ebb..8e8b39b0e3c36e4e12500fd90ff87744c948fe66 100644
--- a/PPI/ThrottleBarrier.cc
+++ b/PPI/ThrottleBarrier.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/ThrottleBarrier.hh b/PPI/ThrottleBarrier.hh
index 5650fe0db4c5f860c064d5d6ea4bb6de4faf52e7..a58935e7a02dd5af1e343ecce22e5892e98eabb1 100644
--- a/PPI/ThrottleBarrier.hh
+++ b/PPI/ThrottleBarrier.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/ThrottleBarrier.test.cc b/PPI/ThrottleBarrier.test.cc
index 232b81d873a0cbf00c80e2e4e5c7af2e30af0208..efcdbaea884bdc0da4c3acbce0eafb0f3601d608 100644
--- a/PPI/ThrottleBarrier.test.cc
+++ b/PPI/ThrottleBarrier.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/detail/Callback.cti b/PPI/detail/Callback.cti
index 3d5d549be4a84e5a433df2f91304666a7db52f1f..f645d9b3f8d23362eeef372a50b1982558d6dff1 100644
--- a/PPI/detail/Callback.cti
+++ b/PPI/detail/Callback.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/detail/Callback.hh b/PPI/detail/Callback.hh
index 8bf12f52f63a44869746e023001a53432b1fe87d..f5b3cff9fc0e48273e54157b2f7f22a142a1e235 100644
--- a/PPI/detail/Callback.hh
+++ b/PPI/detail/Callback.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/detail/EventBinding.cc b/PPI/detail/EventBinding.cc
index b8f58b189aff74ba2ad95ced498893106cb77df6..b5823679de357a6fba0eb615cee84ae05160274a 100644
--- a/PPI/detail/EventBinding.cc
+++ b/PPI/detail/EventBinding.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/detail/EventBinding.cci b/PPI/detail/EventBinding.cci
index 8dcac35505a041ee1be37cfa8bb025cddef3f02d..2d93c7dc4e0cc342a7c80e7ebeae9317aa4b7303 100644
--- a/PPI/detail/EventBinding.cci
+++ b/PPI/detail/EventBinding.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/detail/EventBinding.cti b/PPI/detail/EventBinding.cti
index 4e2db74e7f3e56e51266db786f23f735d9f5ee1b..09fc719314297ead27270fbdef8544accec049ca 100644
--- a/PPI/detail/EventBinding.cti
+++ b/PPI/detail/EventBinding.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/detail/EventBinding.hh b/PPI/detail/EventBinding.hh
index d976236b6cb87f31ca8109506ad8d32b05eac241..93089dec1c3c065f253f3a98128ec1471af149aa 100644
--- a/PPI/detail/EventBinding.hh
+++ b/PPI/detail/EventBinding.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/main.test.cc b/PPI/main.test.cc
index 34e220b7d09cef35375ce24ce524c0aa88186c35..b6d1686f7ac632b48c93e3ea3e1b5d81a18b3d14 100644
--- a/PPI/main.test.cc
+++ b/PPI/main.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/PPI/predecl.hh b/PPI/predecl.hh
index ed2c8d873282f1106900dc5dfd9d079acf39dad9..703007249329ba9c85e9dcc830d4bf2e8f983d5e 100644
--- a/PPI/predecl.hh
+++ b/PPI/predecl.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/ArrayParser.ct b/Packets/ArrayParser.ct
index 9da43ddfe834c7d7fd81a470d5b3f40ebeacd9b9..f95c0e98b5d128f0ae95ae883924ea7a61f3e524 100644
--- a/Packets/ArrayParser.ct
+++ b/Packets/ArrayParser.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/ArrayParser.cti b/Packets/ArrayParser.cti
index f60e05cebdc82babe8a372c4b6a3f26be8ee323e..e0c5dfd231b48f432edfd6f57e36728349544541 100644
--- a/Packets/ArrayParser.cti
+++ b/Packets/ArrayParser.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/ArrayParser.hh b/Packets/ArrayParser.hh
index bc7ff4ea925d9bbb0f984f6fcd5b7b7b8644cb90..ffe2cb0a8bff7bb1730887dc29c60339829b75bd 100644
--- a/Packets/ArrayParser.hh
+++ b/Packets/ArrayParser.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -63,8 +63,8 @@ namespace senf {
     /** \brief Fixed size collection of fixed size elements
 
         ArrayParser will parse a sequence of <em>fixed size</em> parsers. The number of array
-        elements is given by the \e elements template parameter and is fixed at compile time. 
-        
+        elements is given by the \e elements template parameter and is fixed at compile time.
+
         Each element will be parsed by \a ElementParser, which can be any <em>fixed size</em>
         parser. The array models an STL random-access sequence with the restriction that elements
         cannot be added or removed since the size is fixed.
@@ -99,7 +99,7 @@ namespace senf {
 
         This macro is a special helper to define a senf::ArrayParser type field, a fixed size
         collection of fixed size elements.
-        
+
         \param[in] name field name
         \param[in] elt_type array element type
         \param[in] size constant number of elements
diff --git a/Packets/ArrayParser.ih b/Packets/ArrayParser.ih
index 5df13fb1815f1264a70344bc91791a417ff27407..2dec0cc486112399b17e41b0bbde06679f6588b2 100644
--- a/Packets/ArrayParser.ih
+++ b/Packets/ArrayParser.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -61,7 +61,7 @@ protected:
 
 private:
     friend class boost::iterator_core_access;
-    
+
     // iterator_facade interface
 
     ElementParser dereference() const;
diff --git a/Packets/ArrayParser.test.cc b/Packets/ArrayParser.test.cc
index a22455b2cf7a28f9a6c2768b21be14a333f20ff7..2ae6a112175c759470eab8f7d4449743c42b59f9 100644
--- a/Packets/ArrayParser.test.cc
+++ b/Packets/ArrayParser.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -43,7 +43,7 @@ namespace {
 #       include SENF_FIXED_PARSER()
 
         typedef senf::ArrayParser<2,senf::UInt24Parser> ArrayParser2;
-        
+
         SENF_PARSER_FIELD( array, ArrayParser2 );
         SENF_PARSER_FIELD( index, senf::UInt16Parser );
 
@@ -53,7 +53,7 @@ namespace {
     struct SomeOtherParser : public senf::PacketParserBase
     {
 #       include SENF_FIXED_PARSER()
-        
+
         typedef senf::ArrayParser<1,SomePacketParser> ArrayParser1;
 
         SENF_PARSER_FIELD( fields, ArrayParser1 );
@@ -65,7 +65,7 @@ namespace {
 BOOST_AUTO_UNIT_TEST(ArrayParser_test)
 {
     senf::PacketParserBase::byte data[] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05 };
-    senf::PacketInterpreterBase::ptr p (senf::PacketInterpreter<VoidPacket>::create(data));   
+    senf::PacketInterpreterBase::ptr p (senf::PacketInterpreter<VoidPacket>::create(data));
 
     {
         typedef senf::ArrayParser<6,senf::UInt8Parser> UInt8ParserArray6;
@@ -74,7 +74,7 @@ BOOST_AUTO_UNIT_TEST(ArrayParser_test)
         BOOST_CHECK_EQUAL( v[0], 0x00 );
         BOOST_CHECK_EQUAL( v[5], 0x05 );
         BOOST_CHECK_EQUAL( *v.begin(), 0x00 );
-        BOOST_CHECK_EQUAL( std::distance(v.begin(),v.end()), 
+        BOOST_CHECK_EQUAL( std::distance(v.begin(),v.end()),
                            UInt8ParserArray6::difference_type(v.size()) );
         BOOST_CHECK_EQUAL( v.size(), 6u );
         UInt8ParserArray6::iterator i1 (v.begin());
@@ -87,7 +87,7 @@ BOOST_AUTO_UNIT_TEST(ArrayParser_test)
         --i1;
         BOOST_CHECK( i1==i2 );
     }
-    
+
     {
         SomeOtherParser v (p->data().begin(),&p->data());
 
diff --git a/Packets/DataPacket.hh b/Packets/DataPacket.hh
index 8a4f8180a800970d44fbc82c0a591132278e8871..8469e9ed96903c3eb12fd26be28b3db8a151e6b2 100644
--- a/Packets/DataPacket.hh
+++ b/Packets/DataPacket.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/EthernetPacket.cc b/Packets/DefaultBundle/EthernetPacket.cc
index 328db045772b953cf05cbba90635b7b5af7cbf53..15ca8f4262e8f76c20350cf30eabe434b0b8a044 100644
--- a/Packets/DefaultBundle/EthernetPacket.cc
+++ b/Packets/DefaultBundle/EthernetPacket.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/EthernetPacket.hh b/Packets/DefaultBundle/EthernetPacket.hh
index ad9c1f9d26938b419d456cdb61e0253c00c0725d..aadcddeac08fc04c3c74182a6c0f05e18376b256 100644
--- a/Packets/DefaultBundle/EthernetPacket.hh
+++ b/Packets/DefaultBundle/EthernetPacket.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/EthernetPacket.test.cc b/Packets/DefaultBundle/EthernetPacket.test.cc
index 98404c5590930b34dd0feecf06ec740d194edc03..3644b51eaf2a0798c3a8a6ced87ff7d1cd0643bd 100644
--- a/Packets/DefaultBundle/EthernetPacket.test.cc
+++ b/Packets/DefaultBundle/EthernetPacket.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/IPv4Packet.cc b/Packets/DefaultBundle/IPv4Packet.cc
index 69ed5019beffc751d47da8ce48130cbb93f67e39..6dcc1db32d3c2232f121b90f8d5ca125014e83bb 100644
--- a/Packets/DefaultBundle/IPv4Packet.cc
+++ b/Packets/DefaultBundle/IPv4Packet.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/IPv4Packet.hh b/Packets/DefaultBundle/IPv4Packet.hh
index 3da21e008c7c77e2b8e7e8f2009c4a3a88a8bb2f..b97d3abb316e6ad3e8bc271ce6d7725a41a297d0 100644
--- a/Packets/DefaultBundle/IPv4Packet.hh
+++ b/Packets/DefaultBundle/IPv4Packet.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/IPv4Packet.test.cc b/Packets/DefaultBundle/IPv4Packet.test.cc
index 972b944027e3bd3c28b35e30850cde16aa4bf1f8..b2a16e64cb43575ab8cb2a9925caf9df3c990561 100644
--- a/Packets/DefaultBundle/IPv4Packet.test.cc
+++ b/Packets/DefaultBundle/IPv4Packet.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/IPv6Extensions.cc b/Packets/DefaultBundle/IPv6Extensions.cc
index 3a1e9596b4b05316ff3a474c73cf68f213156579..1f1e567fccff3bf9dcac4e8311e488ddd6a70cff 100644
--- a/Packets/DefaultBundle/IPv6Extensions.cc
+++ b/Packets/DefaultBundle/IPv6Extensions.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/IPv6Extensions.hh b/Packets/DefaultBundle/IPv6Extensions.hh
index 54b18e1867c48ac3b7dee933926c2e7bacbb1657..d40510aed2d53f5c9a0a19e31e79868dbd77df2a 100644
--- a/Packets/DefaultBundle/IPv6Extensions.hh
+++ b/Packets/DefaultBundle/IPv6Extensions.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/IPv6Extensions.test.cc b/Packets/DefaultBundle/IPv6Extensions.test.cc
index fa36831cb904867416afb6bc052983ea977d409b..dcdf8edf163a27bdbf6743b347994f4e16aee735 100644
--- a/Packets/DefaultBundle/IPv6Extensions.test.cc
+++ b/Packets/DefaultBundle/IPv6Extensions.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/IPv6Packet.cc b/Packets/DefaultBundle/IPv6Packet.cc
index 8240f5b2c1fcfcd80dae9b25bb457d5c942a96e2..ca4fc8f65a2a22ed6574b656027e6b5c8361bd47 100644
--- a/Packets/DefaultBundle/IPv6Packet.cc
+++ b/Packets/DefaultBundle/IPv6Packet.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/IPv6Packet.hh b/Packets/DefaultBundle/IPv6Packet.hh
index 935bcea8a5af95933bfb5fb49570c11c4ffa92ff..3ac278b6253fd75e66a28a0ed6af8e4920398a46 100644
--- a/Packets/DefaultBundle/IPv6Packet.hh
+++ b/Packets/DefaultBundle/IPv6Packet.hh
@@ -1,8 +1,8 @@
 // $Id: EthernetPacket.hh 299 2007-07-10 21:23:49Z g0dil $
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/IPv6Packet.test.cc b/Packets/DefaultBundle/IPv6Packet.test.cc
index 1dfab02b5801bf6371fab6e6bbecd3cae313b46e..b39bc4089a16aab67f9b308aa9b89b57c0750373 100644
--- a/Packets/DefaultBundle/IPv6Packet.test.cc
+++ b/Packets/DefaultBundle/IPv6Packet.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/LlcSnapPacket.cc b/Packets/DefaultBundle/LlcSnapPacket.cc
index 93c14811c87a234506d0e2cf9236cc57144d0812..dd91684e7044b094e6429b11063ef97a52898f19 100644
--- a/Packets/DefaultBundle/LlcSnapPacket.cc
+++ b/Packets/DefaultBundle/LlcSnapPacket.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/LlcSnapPacket.hh b/Packets/DefaultBundle/LlcSnapPacket.hh
index b90e4216001aef92966d4622efe3b5f0aacd2e0f..d7d05b81e184517632f9d25feb7daea438ab0e9a 100644
--- a/Packets/DefaultBundle/LlcSnapPacket.hh
+++ b/Packets/DefaultBundle/LlcSnapPacket.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/LlcSnapPacket.test.cc b/Packets/DefaultBundle/LlcSnapPacket.test.cc
index b990d7960111878da37a411ba63b966458018ad0..6d9ec748b25f4b5232614cf707087cefd17bb73b 100644
--- a/Packets/DefaultBundle/LlcSnapPacket.test.cc
+++ b/Packets/DefaultBundle/LlcSnapPacket.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/Mainpage.dox b/Packets/DefaultBundle/Mainpage.dox
index 915465f2f0c68888189d7abf9195603394aea5a7..24f9c9d876fac85ab28fa3177a682a435b96d5f8 100644
--- a/Packets/DefaultBundle/Mainpage.dox
+++ b/Packets/DefaultBundle/Mainpage.dox
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/UDPPacket.cc b/Packets/DefaultBundle/UDPPacket.cc
index ee0651f9c22569842a5f86edc8ce715933020650..892487fa7b631f4671167408e3fd01693477bea8 100644
--- a/Packets/DefaultBundle/UDPPacket.cc
+++ b/Packets/DefaultBundle/UDPPacket.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/UDPPacket.hh b/Packets/DefaultBundle/UDPPacket.hh
index 8f747a79be3de61b6b8bb796575448477838f1e9..dc82ea2ffa2acd0317f435f80cd29fabc0cb5118 100644
--- a/Packets/DefaultBundle/UDPPacket.hh
+++ b/Packets/DefaultBundle/UDPPacket.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/UDPPacket.test.cc b/Packets/DefaultBundle/UDPPacket.test.cc
index 2ad0cbe79dc3598c886edfe3b1e318f867d8286a..ca2f00087c64c68c6c349c92504bc000261bd447 100644
--- a/Packets/DefaultBundle/UDPPacket.test.cc
+++ b/Packets/DefaultBundle/UDPPacket.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/DefaultBundle/main.test.cc b/Packets/DefaultBundle/main.test.cc
index 7a8cd147f558aa3cfb07a375a48f78e22cf7c1bf..65d49baa55b1a2212ac461d5549769e85f408098 100644
--- a/Packets/DefaultBundle/main.test.cc
+++ b/Packets/DefaultBundle/main.test.cc
@@ -1,8 +1,8 @@
 // $Id: main.test.cc 206 2007-02-20 14:20:52Z g0dil $
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/IntParser.hh b/Packets/IntParser.hh
index 098b218fd6defa613f234ee4ef2223bb2943eacb..57530210c9379597fce876ec263b3dfc68f7a630 100644
--- a/Packets/IntParser.hh
+++ b/Packets/IntParser.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/IntParser.ih b/Packets/IntParser.ih
index 404c3cc682b03d8ee18d5396ef678281fb5a47b7..9ad8a1dc8ca38fccd487e334a26b1f6339d3a57b 100644
--- a/Packets/IntParser.ih
+++ b/Packets/IntParser.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -96,7 +96,7 @@ namespace packet {
     // Network byte order integer extraction
 
     /** \brief Internal: Extract 16bit network byte order value
-        
+
         \internal
      */
     inline boost::uint16_t parse_uint16(iterator i)
@@ -105,7 +105,7 @@ namespace packet {
     }
 
     /** \brief Internal: Write 16bit network byte order value
-        
+
         \internal
      */
     inline void write_uint16(iterator i, boost::uint16_t v)
@@ -115,7 +115,7 @@ namespace packet {
     }
 
     /** \brief Internal: Extract 24bit network byte order value
-        
+
         \internal
      */
     inline boost::uint32_t parse_uint24(iterator i)
@@ -124,7 +124,7 @@ namespace packet {
     }
 
     /** \brief Internal: Write 24bit network byte order value
-        
+
         \internal
      */
     inline void write_uint24(iterator i, boost::uint32_t v)
@@ -135,7 +135,7 @@ namespace packet {
     }
 
     /** \brief Internal: Extract 32bit network byte order value
-        
+
         \internal
      */
     inline boost::uint32_t parse_uint32(iterator i)
@@ -144,7 +144,7 @@ namespace packet {
     }
 
     /** \brief Internal: Write 32bit network byte order value
-        
+
         \internal
      */
     inline void write_uint32(iterator i, boost::uint32_t v)
@@ -158,7 +158,7 @@ namespace packet {
     ///////////////////////////////////////////////////////////////////////////
     // bitfield extraction
 
-    // Doxygen doesn't like this stuff ... 
+    // Doxygen doesn't like this stuff ...
 
 #   ifndef DOXYGEN
 
@@ -245,7 +245,7 @@ namespace packet {
     /** \brief Internal: Bitfield read/write helper
 
         \internal
-        
+
         Using template specializations, this class provides optimized bitfield parsers and
         writers. For each number of bytes the bitfield covers (from 1 to 5 bytes), a template
         specialization is provided in \c parse_bitfield_i.
diff --git a/Packets/IntParser.test.cc b/Packets/IntParser.test.cc
index c8be5ea35b5fa773ff1ee5bab587c7ebf11930c1..2ef9ff255c5c5f07cb4409a0e129e1d564780900 100644
--- a/Packets/IntParser.test.cc
+++ b/Packets/IntParser.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/ListBParser.cti b/Packets/ListBParser.cti
index 6699dc5dacf86fb4ddc14f73e6a1c0b998961f48..ac7b19c1f0a0a268f14ce0c2a76cf922f917c8b6 100644
--- a/Packets/ListBParser.cti
+++ b/Packets/ListBParser.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/ListBParser.hh b/Packets/ListBParser.hh
index b35ba404a1b9f7a48d1f9bf3e020882ef4352676..25f0a04147bd2a5149d724c04484fcc2dd6ab3be 100644
--- a/Packets/ListBParser.hh
+++ b/Packets/ListBParser.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -33,7 +33,7 @@
 ///////////////////////////////hh.p////////////////////////////////////////
 
 namespace senf {
-    
+
     namespace detail { template <class ElementParser, class BytesParser>
                        class ListBParser_Policy; }
 
diff --git a/Packets/ListBParser.ih b/Packets/ListBParser.ih
index 89f7a11fff1e86663efa4565cd4d9910f67f7fd4..9439ef2e92c55ee07d648fb297412249ea9119e6 100644
--- a/Packets/ListBParser.ih
+++ b/Packets/ListBParser.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -42,7 +42,7 @@ namespace detail {
     {
         // This policy needs to work around a serious problem with this type of list: When we change
         // the size of any (direct or indirect) subelement of the list, This will change will render
-        // the list completely invalid and unparseable since the 'byte' field will now be invalid. 
+        // the list completely invalid and unparseable since the 'byte' field will now be invalid.
         //
         // The solution we apply is to store the *size* (i.e. the number of elements) of the list
         // when creating the container wrapper. We also maintain this value accross insert/erase
@@ -63,7 +63,7 @@ namespace detail {
         // just apply the size change directly to the bytes header (no need to traverse the
         // list). However, the implementation of this approach would be much more complex and even
         // more invasive and would probably suffer from the same restrictions to the user.
-        
+
         struct container_policy;
 
         typedef PacketParserBase::data_iterator iterator;
@@ -78,7 +78,7 @@ namespace detail {
         size_type bytes  (iterator i, state_type s) const;
         size_type size   (iterator i, state_type s) const;
         void      init   (iterator i, state_type s) const;
-        
+
         /** \brief Internal: ListBParser_Policy's iterator policy
             \internal
          */
@@ -105,7 +105,7 @@ namespace detail {
 
             static const size_type init_bytes = ListBParser_Policy<
                 ElementParser,BytesParser>::init_bytes;
-            
+
             container_policy(parser_type const & list);
 
             size_type bytes  (iterator i, state_type s) const;
diff --git a/Packets/ListBParser.test.cc b/Packets/ListBParser.test.cc
index 3be4be6ccc2605e8b1b47af2306a3deb9aa7267c..fcc90f52a6937e5976ce911c07d6ec7e8bd66833 100644
--- a/Packets/ListBParser.test.cc
+++ b/Packets/ListBParser.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/ListNParser.ct b/Packets/ListNParser.ct
index 4417e3bda9847033e00db397befb0cf405e94aba..225bf52a352ce28a78a75a8f50795da9f97d815e 100644
--- a/Packets/ListNParser.ct
+++ b/Packets/ListNParser.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/ListNParser.cti b/Packets/ListNParser.cti
index e77af352e4c89eab9f72a763521bd6b0ad36585b..e3cc7b74d5596e3f533716eac0f60a0832c9e2c2 100644
--- a/Packets/ListNParser.cti
+++ b/Packets/ListNParser.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/ListNParser.hh b/Packets/ListNParser.hh
index f42035a460366141d159584fd363d19fc3110aee..2cb4292f78fb9483fa95811677ff10aff98bb158 100644
--- a/Packets/ListNParser.hh
+++ b/Packets/ListNParser.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/ListNParser.ih b/Packets/ListNParser.ih
index 7c0cfad275cb9f252ef8931fde86317bdca00ca8..51be7c53deff54e2f6d2250743c3c21866965f82 100644
--- a/Packets/ListNParser.ih
+++ b/Packets/ListNParser.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/ListNParser.test.cc b/Packets/ListNParser.test.cc
index 3ef0a80f4681cc39871c24ee7597ee00aa5f5c9b..f4d5e38f9867cf9b4aec11bea7e835ba4fe0da3e 100644
--- a/Packets/ListNParser.test.cc
+++ b/Packets/ListNParser.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/ListParser.ct b/Packets/ListParser.ct
index 609048e55a42fdd90141942fa02e5b69e5b8b888..39915c265028b9f79b3b09db310f824afb211fa5 100644
--- a/Packets/ListParser.ct
+++ b/Packets/ListParser.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/ListParser.cti b/Packets/ListParser.cti
index af89e133838723c1c97bef1a0effe6c5c59ac27a..919b913b82ec4b63bfd405c27be8ff27064ba23f 100644
--- a/Packets/ListParser.cti
+++ b/Packets/ListParser.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/ListParser.dox b/Packets/ListParser.dox
index 490ddfe59c97b6a59b1db70c06c3bbfc93365b00..7d190b53e3d5942c171f72e510ac041dfdee9818 100644
--- a/Packets/ListParser.dox
+++ b/Packets/ListParser.dox
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -23,7 +23,7 @@
 namespace senf {
 
     /** \brief Example of a list policy. ONLY FOR EXPOSITION.
-        
+
         This class shows the interface which must be implemented by a list policy. It is not a list
         policy only a declaration of the interface:
         \code
@@ -46,7 +46,7 @@ namespace senf {
             size_type bytes  (data_iterator i, state_type s) const;
             size_type size   (data_iterator i, state_type s) const;
             void      init   (data_iterator i, state_type s) const;
-        
+
             // Members needed only in the container policy
             void      erase  (data_iterator i, state_type s, iterator p) const;
             void      insert (data_iterator i, state_type s, iterator p) const;
@@ -70,7 +70,7 @@ namespace senf {
         define the elements bytes(), size() and init(), the container policy needs all these and
         additionally needs erase() and insert(). The container policy will also need the
         element_type, parser_type and container_type typedefs.
-        
+
         \see \ref Parse_List
      */
     struct ExampleListPolicy
@@ -128,7 +128,7 @@ namespace senf {
             \see \ref ExampleListPolicy \n
                 \ref Parse_List
          */
-        struct iterator_policy 
+        struct iterator_policy
         {
             iterator setBegin(iterator i, state_type s); ///< Initialize iterator to begin()
                                         /**< Initialize the policy from the given List (i,s). Set
@@ -145,13 +145,13 @@ namespace senf {
                                              special sentinel value (e.g. data().end()) if
                                              needed. */
 
-            void setFromPosition(iterator i, state_type s, iterator p); 
+            void setFromPosition(iterator i, state_type s, iterator p);
                                         ///< Initialize iterator from the given raw position
                                         /**< Set the iterator to the Element at raw position p. This
                                              operation can potentially be very inefficient if the
                                              list needs to be traversed from the beginning until the
                                              iterator is found. */
-            
+
             iterator next(iterator i, state_type s); ///< Advance to next element
                                         /**< given an iterator to an element, go to the next
                                              element. */
@@ -165,7 +165,7 @@ namespace senf {
         };
 
         /** \brief Example of a list container policy. ONLY FOR EXPOSITION
-            
+
             \see \ref ExampleListPolicy \n
                 \ref Parse_List
          */
diff --git a/Packets/ListParser.hh b/Packets/ListParser.hh
index 0b6865e75c6131f2af36b2d6547c528309919e0a..ae3d9ae2167322094a02c6ae60f525e0d8c4c8ae 100644
--- a/Packets/ListParser.hh
+++ b/Packets/ListParser.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -35,7 +35,7 @@
 
 namespace senf {
 
-    namespace detail { template <class ElementParser, class IteratorPolicy> 
+    namespace detail { template <class ElementParser, class IteratorPolicy>
                        class ListParser_Iterator; }
 
     template <class ListPolicy>
@@ -45,7 +45,7 @@ namespace senf {
 
         A List is a sequential collection of elements. The element type is given as an arbitrary
         parser. The list is more flexible than a vector: It is not limited to fixed-size elements
-        and it might not have direct access to the size of the collection. 
+        and it might not have direct access to the size of the collection.
 
         The cost is however, that a List is only a model of an STL forward sequence. The parser
         provides a reduced interface to this sequence, the container wrapper provides the complete
@@ -60,7 +60,7 @@ namespace senf {
         \ingroup parsecollection
       */
     template <class ListPolicy>
-    class ListParser 
+    class ListParser
         : public PacketParserBase,
           private ListPolicy
     {
@@ -80,20 +80,20 @@ namespace senf {
         // Container interface
 
         typedef typename ListPolicy::element_type value_type;
-        typedef detail::ListParser_Iterator< 
+        typedef detail::ListParser_Iterator<
             value_type, typename ListPolicy::iterator_policy > iterator;
         typedef iterator const_iterator;
         typedef typename ListPolicy::container_type container;
 
         size_type size() const;
         bool empty() const;
-        
+
         iterator begin() const;
         iterator end() const;
 
         value_type front() const;
         value_type back() const;
-        
+
         template <class Value> void push_back        (Value value, size_type n=1) const;
                                void push_back_space  (size_type n=1) const;
         template <class Value> void push_front       (Value value, size_type n=1) const;
@@ -114,7 +114,7 @@ namespace senf {
         the vector in the packet data).
 
         The vector container wrapper provides a complete STL random-access sequence interface.
-        
+
         \code
         SomePacket p (...);
         SomePacket::aListCollection_t::container c (p->aListCollection());
@@ -140,7 +140,7 @@ namespace senf {
             value_type, typename ListPolicy::iterator_policy> iterator;
         typedef iterator const_iterator;
         typedef PacketParserBase::state_type state_type;
-        
+
         ///////////////////////////////////////////////////////////////////////////
         ///\name Structors and default members
         ///@{
@@ -152,7 +152,7 @@ namespace senf {
 
         ListParser_Container(parser_type const & list);
         ~ListParser_Container();
-        
+
         ///@}
         ///////////////////////////////////////////////////////////////////////////
 
@@ -209,7 +209,7 @@ namespace senf {
 
         size_type bytes() const;
         void init() const;
-        
+
         ///@}
 
     private:
@@ -217,7 +217,7 @@ namespace senf {
         size_type i_;
     };
 
-        
+
 }
 
 ///////////////////////////////hh.e////////////////////////////////////////
diff --git a/Packets/ListParser.ih b/Packets/ListParser.ih
index 76d93fbb5e86740a6524219421e7fa896421e103..e6c7d30dd2d64ff33713f5fe1dc50dc512ee3e52 100644
--- a/Packets/ListParser.ih
+++ b/Packets/ListParser.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/ListParser.test.cc b/Packets/ListParser.test.cc
index 89345f1ae4df87239e65e7dbcc2cb2e9a08851dd..438f5c4abcb3067c1282ff3708a9cd5b41dc11f2 100644
--- a/Packets/ListParser.test.cc
+++ b/Packets/ListParser.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/MPEGDVBBundle/DTCPPacket.cc b/Packets/MPEGDVBBundle/DTCPPacket.cc
index 6da6c6b620031df97adfa43530aa38f044e9f27d..596f6fee7b42f52727b0b23d6598be5e1f23d2b2 100644
--- a/Packets/MPEGDVBBundle/DTCPPacket.cc
+++ b/Packets/MPEGDVBBundle/DTCPPacket.cc
@@ -1,8 +1,8 @@
 // $Id:TransportPacket.hh 560 2007-12-13 14:39:37Z tho $
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/MPEGDVBBundle/DTCPPacket.hh b/Packets/MPEGDVBBundle/DTCPPacket.hh
index 4486d4f2df0a18b7a14568827b02e60b0dde637d..f401cb2ed27f29bddb91c06674c81a7c1602799a 100644
--- a/Packets/MPEGDVBBundle/DTCPPacket.hh
+++ b/Packets/MPEGDVBBundle/DTCPPacket.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/MPEGDVBBundle/GREPacket.cc b/Packets/MPEGDVBBundle/GREPacket.cc
index 90bdc5b5ae793ef47c47abf8f408664768e68d6d..dc6bf91e123a24ecfb08449ff6328dad2801f549 100644
--- a/Packets/MPEGDVBBundle/GREPacket.cc
+++ b/Packets/MPEGDVBBundle/GREPacket.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Joachim Kaeber <jkaeber@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/MPEGDVBBundle/GREPacket.hh b/Packets/MPEGDVBBundle/GREPacket.hh
index ce44702702b3723607e16b767d30003019edc0ab..446ef03d07b6d331ec3f00ad300a2a219eb1ede3 100644
--- a/Packets/MPEGDVBBundle/GREPacket.hh
+++ b/Packets/MPEGDVBBundle/GREPacket.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Joachim Kaeber <jkaeber@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/MPEGDVBBundle/GREPacket.test.cc b/Packets/MPEGDVBBundle/GREPacket.test.cc
index 676a828884b5b434fb253a6bccc414642426061f..c27c7d4f4510ec3ecfe9b58741c973a726072be9 100644
--- a/Packets/MPEGDVBBundle/GREPacket.test.cc
+++ b/Packets/MPEGDVBBundle/GREPacket.test.cc
@@ -1,8 +1,8 @@
 // $Id:GREPacket.test.cc 560 2007-12-13 14:39:37Z tho $
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Joachim Kaeber <jkaeber@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/MPEGDVBBundle/MPEGDVBBundle.dox b/Packets/MPEGDVBBundle/MPEGDVBBundle.dox
index 2d7c83bef51907940f18263d86de8f50489ac78c..4ac79508038a98190866045caf9f5dff53ca4123 100644
--- a/Packets/MPEGDVBBundle/MPEGDVBBundle.dox
+++ b/Packets/MPEGDVBBundle/MPEGDVBBundle.dox
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/MPEGDVBBundle/MPESection.cc b/Packets/MPEGDVBBundle/MPESection.cc
index 8035cdb987d68785cd1b83f8893414117a06e0cb..22ef13a378e5fcb5738c87e2e94ae2ec8ef680d6 100644
--- a/Packets/MPEGDVBBundle/MPESection.cc
+++ b/Packets/MPEGDVBBundle/MPESection.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/MPEGDVBBundle/MPESection.hh b/Packets/MPEGDVBBundle/MPESection.hh
index 89a344b83c6f9f4909c2bc2085f392e38de949a8..1e0bc2d396f704ebee1f3f9766a7bc1e9b403226 100644
--- a/Packets/MPEGDVBBundle/MPESection.hh
+++ b/Packets/MPEGDVBBundle/MPESection.hh
@@ -1,8 +1,8 @@
 // $Id:MPESection.hh 560 2007-12-13 14:39:37Z tho $
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/MPEGDVBBundle/MPESection.test.cc b/Packets/MPEGDVBBundle/MPESection.test.cc
index 3120de0d5b86d79af7fbe561b2b2fdadb626bf27..f62a8289caf9181bf0479bccca48f2b5cad6608c 100644
--- a/Packets/MPEGDVBBundle/MPESection.test.cc
+++ b/Packets/MPEGDVBBundle/MPESection.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/MPEGDVBBundle/SNDUPacket.cc b/Packets/MPEGDVBBundle/SNDUPacket.cc
index 58dfda81652c82ba21ed89b3dcf1de1b625a4a4e..96709d08b2d33911e0dbf3c843db382cebf9dd38 100644
--- a/Packets/MPEGDVBBundle/SNDUPacket.cc
+++ b/Packets/MPEGDVBBundle/SNDUPacket.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/MPEGDVBBundle/SNDUPacket.hh b/Packets/MPEGDVBBundle/SNDUPacket.hh
index 34e83b863bbfbc0de8e2cd168976d541edab6934..fbbd16bbb19d5f0f88edfbd33f03b19296eeea20 100644
--- a/Packets/MPEGDVBBundle/SNDUPacket.hh
+++ b/Packets/MPEGDVBBundle/SNDUPacket.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/MPEGDVBBundle/TLVPacket.cc b/Packets/MPEGDVBBundle/TLVPacket.cc
index 4f8577aa2a3736eddbc452fc63a0003cccbf6c72..de06d6181dc5066ffc4b2184415200fde1456154 100644
--- a/Packets/MPEGDVBBundle/TLVPacket.cc
+++ b/Packets/MPEGDVBBundle/TLVPacket.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/MPEGDVBBundle/TLVPacket.ct b/Packets/MPEGDVBBundle/TLVPacket.ct
index 9afc7d7b0d8f5a47e972cec40f6d31f16fe97443..ea91f809aa569fb033a417f99067c05ef89149a7 100644
--- a/Packets/MPEGDVBBundle/TLVPacket.ct
+++ b/Packets/MPEGDVBBundle/TLVPacket.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/MPEGDVBBundle/TLVPacket.hh b/Packets/MPEGDVBBundle/TLVPacket.hh
index 17b2f9aa7d84d4ce92993d17bad253cecb74cbfa..729c41905ec83ba05ad5c28b5f8d01b5754571aa 100644
--- a/Packets/MPEGDVBBundle/TLVPacket.hh
+++ b/Packets/MPEGDVBBundle/TLVPacket.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/MPEGDVBBundle/TLVPacket.test.cc b/Packets/MPEGDVBBundle/TLVPacket.test.cc
index 3ec7604f05cd92d435d860ec0163ea8bda4b0ae6..e454827df80a24bac11880039f19456d8ffe2695 100644
--- a/Packets/MPEGDVBBundle/TLVPacket.test.cc
+++ b/Packets/MPEGDVBBundle/TLVPacket.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/MPEGDVBBundle/TransportPacket.cc b/Packets/MPEGDVBBundle/TransportPacket.cc
index 1e11957c870b23848045a819d2bcab707611ca8d..59b3d5fe8011910804560cb7b31c1427c5ec710a 100644
--- a/Packets/MPEGDVBBundle/TransportPacket.cc
+++ b/Packets/MPEGDVBBundle/TransportPacket.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/MPEGDVBBundle/TransportPacket.hh b/Packets/MPEGDVBBundle/TransportPacket.hh
index 6e9caa2ee95eecd12fba77cc1d19f5a1b48dc0ca..36fd10fca3b7c8280f3f4212d83fbb7d2820ef0b 100644
--- a/Packets/MPEGDVBBundle/TransportPacket.hh
+++ b/Packets/MPEGDVBBundle/TransportPacket.hh
@@ -1,8 +1,8 @@
 // $Id:TransportPacket.hh 560 2007-12-13 14:39:37Z tho $
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/MPEGDVBBundle/TransportPacket.test.cc b/Packets/MPEGDVBBundle/TransportPacket.test.cc
index 823bf362f1632208c464f2d3eb619d1cd2969233..9aa131f6c5f1ebdd8c5068a1fe127157833fff42 100644
--- a/Packets/MPEGDVBBundle/TransportPacket.test.cc
+++ b/Packets/MPEGDVBBundle/TransportPacket.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/MPEGDVBBundle/main.test.cc b/Packets/MPEGDVBBundle/main.test.cc
index fac7f721a3f2dc9d83e112bd0c1a526f8883563d..476762063170c0f6d98f05f416bd5d596f92a5cc 100644
--- a/Packets/MPEGDVBBundle/main.test.cc
+++ b/Packets/MPEGDVBBundle/main.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/Mainpage.dox b/Packets/Mainpage.dox
index 56f68c5d840dcba2e0e77110ea27d57b6bd498e5..889aa5f43f5667697e059ef0a259477637b555da 100644
--- a/Packets/Mainpage.dox
+++ b/Packets/Mainpage.dox
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/Packet.cc b/Packets/Packet.cc
index b770e93e8b0883a7413e121f4c210ae7c6c5be97..06d646353ffc3aae49879190dff58a7855482718 100644
--- a/Packets/Packet.cc
+++ b/Packets/Packet.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/Packet.cci b/Packets/Packet.cci
index b026e167b4141e77081682ba2dbc721a7231d8ed..813ab10e4c62104c2bfe2a99eb3a015e77910e66 100644
--- a/Packets/Packet.cci
+++ b/Packets/Packet.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/Packet.ct b/Packets/Packet.ct
index 7c556d7eba6be973cc5c2df67955f3d653cec421..073a9f8a935746cc5f9862f68681a825d6d036a4 100644
--- a/Packets/Packet.ct
+++ b/Packets/Packet.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/Packet.cti b/Packets/Packet.cti
index dd980e60505015b37640ec972de07fee21b302e8..bea5af7c8db44e8a540dc36b38e13ef0f52d3dc5 100644
--- a/Packets/Packet.cti
+++ b/Packets/Packet.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/Packet.hh b/Packets/Packet.hh
index 371659ada6b9bf5630f07e4d3d3a01e753920862..566c2195426749b26ce4429f1f3b413e25f1680d 100644
--- a/Packets/Packet.hh
+++ b/Packets/Packet.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/Packet.test.cc b/Packets/Packet.test.cc
index 81e1b4ba3dec8a60667487978a16430c1029c5f1..5a6fd975aca8934b5d930a78b91ce4e4f87305a5 100644
--- a/Packets/Packet.test.cc
+++ b/Packets/Packet.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketData.cc b/Packets/PacketData.cc
index 34df209b79ec0b0b74d72cf71ad0ce1c5beb05c6..dade5f3dad722b45663814bd93f705e1d5e94e08 100644
--- a/Packets/PacketData.cc
+++ b/Packets/PacketData.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketData.cci b/Packets/PacketData.cci
index 98d1bbe2b11ae64bad5280c60de8a0d884648430..28ae24c7423e48f0ca3953db22394531289de42f 100644
--- a/Packets/PacketData.cci
+++ b/Packets/PacketData.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketData.cti b/Packets/PacketData.cti
index 0364ca908a66581564b00d2e8eec76dc944f19e1..5d47afc2f8c38b97bc63f89c5b0bc0b82afe9488 100644
--- a/Packets/PacketData.cti
+++ b/Packets/PacketData.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketData.hh b/Packets/PacketData.hh
index 6530bfc9f06199ee28c6e9317c15736b3420f013..773b9ddc790a1f635e2ee94c6850843ae72b6576 100644
--- a/Packets/PacketData.hh
+++ b/Packets/PacketData.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketData.test.cc b/Packets/PacketData.test.cc
index 46fcd82cc46d476c58c60da0e125f5c85dd0b04f..3cd5d91e2336cbf8824e9b75ad6ad65959569fef 100644
--- a/Packets/PacketData.test.cc
+++ b/Packets/PacketData.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketImpl.cc b/Packets/PacketImpl.cc
index ebf720cdb5f952c7ec78d8f6514e7afb8eb53181..92e0e2285937b3974766b34143a0741c8f5a2608 100644
--- a/Packets/PacketImpl.cc
+++ b/Packets/PacketImpl.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketImpl.cci b/Packets/PacketImpl.cci
index c4acd4d581ddbe6a74c14133946b2d75f0ff83e4..a6106aea3d03b77fd8ddcd7335018846528acfdf 100644
--- a/Packets/PacketImpl.cci
+++ b/Packets/PacketImpl.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -31,7 +31,7 @@
 ///////////////////////////////cci.p///////////////////////////////////////
 
 // Memory management:
-// 
+//
 // * The PacketImpl destructor will *explicitly* clean-up the interpreters_ list by removing
 //   each element from the list and deleting it if it's (intrusive) refcount is 0
 // * The PacketInterpreters use safe hooks -> they know wether they are part of a list or not
@@ -115,7 +115,7 @@ prefix_ senf::PacketInterpreterBase * senf::detail::PacketImpl::next(PacketInter
 }
 
 prefix_ senf::PacketInterpreterBase * senf::detail::PacketImpl::prev(PacketInterpreterBase * p)
-{ 
+{
     interpreter_list::iterator i (interpreter_list::current(*p));
     return (i == interpreters_.begin()) ? 0 : &*(--i);
 }
diff --git a/Packets/PacketImpl.cti b/Packets/PacketImpl.cti
index ca0caee54a98e79a2b5df079fd41a1101a9ca947..a00a8e3aea2d2e0ce925060592f0df4ac74e0f56 100644
--- a/Packets/PacketImpl.cti
+++ b/Packets/PacketImpl.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketImpl.hh b/Packets/PacketImpl.hh
index 613fd8aac94b16f3cf65f3ca271dc2caa88abeb4..871b9ec5948f9b377595a8e54be21b78a523f215 100644
--- a/Packets/PacketImpl.hh
+++ b/Packets/PacketImpl.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -37,9 +37,9 @@
 
 namespace senf {
 namespace detail {
-    
+
     /** \brief Internal: Packet data storage
-        
+
         \internal
 
         This is the class holding the packet data and the interpreter chain. All manipulations of
@@ -47,7 +47,7 @@ namespace detail {
         PacketImpl will update the interpreters (that is the vector indices stored therein) whenever
         the data is changed.
      */
-    class PacketImpl 
+    class PacketImpl
         : boost::noncopyable,
           public pool_alloc_mixin<PacketImpl>
     {
@@ -70,7 +70,7 @@ namespace detail {
         ~PacketImpl();
 
         // rerference/memory management
- 
+
         void add_ref(refcount_t n=1);
         void release(refcount_t n=1);
         refcount_t refcount() const;
diff --git a/Packets/PacketImpl.test.cc b/Packets/PacketImpl.test.cc
index 4b20e02da00f2a8540c0bc55b400980febae7c6e..c2a812b61f4dc88a3db79d2542520e8de101669e 100644
--- a/Packets/PacketImpl.test.cc
+++ b/Packets/PacketImpl.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketInterpreter.cc b/Packets/PacketInterpreter.cc
index a875a41fe398adbb2384df07c42ebf4287242673..3d8a382e0c4fd2170bed976d14c7c0980fed0cc9 100644
--- a/Packets/PacketInterpreter.cc
+++ b/Packets/PacketInterpreter.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketInterpreter.cci b/Packets/PacketInterpreter.cci
index 3c5cee6fbbaf9ed0eb40875177e1a935cb0d80a7..c5c75d367b6fc56ef4d73f45a6fb8504b3e729ce 100644
--- a/Packets/PacketInterpreter.cci
+++ b/Packets/PacketInterpreter.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketInterpreter.ct b/Packets/PacketInterpreter.ct
index 72715e7ea4bdf5b5c25ccd9b41388ae9781f3e08..49a34e1649e714c45247a0773654488b437308df 100644
--- a/Packets/PacketInterpreter.ct
+++ b/Packets/PacketInterpreter.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketInterpreter.cti b/Packets/PacketInterpreter.cti
index b2696f62e0a20141fbc24ce0b70797bcba74e834..08e33954e7d262f70085c236be45e20ac76f4902 100644
--- a/Packets/PacketInterpreter.cti
+++ b/Packets/PacketInterpreter.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketInterpreter.hh b/Packets/PacketInterpreter.hh
index 9a1a3fa6d239c1822dd8c68b5291c9d94d5077cb..68af3da9d3fa3640b305f4a26ebc7dfb8ffdf97c 100644
--- a/Packets/PacketInterpreter.hh
+++ b/Packets/PacketInterpreter.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketInterpreter.test.cc b/Packets/PacketInterpreter.test.cc
index 13c9c93f6da2cf2e1fd00bc72a499c2aa70fe012..77e13ad84eb088d577055c146ef766b6129c2a47 100644
--- a/Packets/PacketInterpreter.test.cc
+++ b/Packets/PacketInterpreter.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketParser.cci b/Packets/PacketParser.cci
index c53e29a43ce470838c72cd99a7a7a42abaaa6c69..4978b4bf8bf75d574b287d2d60d74f5ef123f229 100644
--- a/Packets/PacketParser.cci
+++ b/Packets/PacketParser.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketParser.ct b/Packets/PacketParser.ct
index 3dffe8d69ccc2c3f8f058e31e2d788d8289c8fca..ceb0d5cff91abf7ddd3bde1ecb24d333da55e3b2 100644
--- a/Packets/PacketParser.ct
+++ b/Packets/PacketParser.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketParser.cti b/Packets/PacketParser.cti
index 3ab62e5a7752584f405fe27f2ef2fa2f1db509fe..7872f83d5e0991625b6be791d8a9c76fcf532f17 100644
--- a/Packets/PacketParser.cti
+++ b/Packets/PacketParser.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketParser.hh b/Packets/PacketParser.hh
index 5248296b172d1f5cdb8206ef2cb135e6ae6918dc..dfc912a49aeb019aa1584edf1b4877ad749953a5 100644
--- a/Packets/PacketParser.hh
+++ b/Packets/PacketParser.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.be>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketParser.ih b/Packets/PacketParser.ih
index 250c1fa0c710fca199fb679c8e822de312b179a7..450bc031c8a60a3a45b3198257b6dc39088cf1e5 100644
--- a/Packets/PacketParser.ih
+++ b/Packets/PacketParser.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketParser.test.cc b/Packets/PacketParser.test.cc
index 24f35370c863aa68c5b755af064eb7f327b573e6..b583381f0e0bfd653830ac1c52fb2a7914d4cc7e 100644
--- a/Packets/PacketParser.test.cc
+++ b/Packets/PacketParser.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketRegistry.cc b/Packets/PacketRegistry.cc
index b98c2187621996d45af29affa53b1cec56e1d106..48b76bb335745fe7cacc2856b561bd39cc094f6f 100644
--- a/Packets/PacketRegistry.cc
+++ b/Packets/PacketRegistry.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketRegistry.ct b/Packets/PacketRegistry.ct
index ab97835f3d7718cde3c869b2ebdd2e76c7ba6efb..2f598ced50287ede180ccc0cb38b7f6bcae2f0ef 100644
--- a/Packets/PacketRegistry.ct
+++ b/Packets/PacketRegistry.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketRegistry.cti b/Packets/PacketRegistry.cti
index 75c26ce529a7554f046ea3d1f4adc5b78fd6bc08..2f7ffd10a5418e76dcdf44bac8f0822ca56c0881 100644
--- a/Packets/PacketRegistry.cti
+++ b/Packets/PacketRegistry.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketRegistry.hh b/Packets/PacketRegistry.hh
index 04e3177d55fa39beb99b0da1f970f3159755a4a4..8233d66c58cbf2f163faa9a6a93ac70348692423 100644
--- a/Packets/PacketRegistry.hh
+++ b/Packets/PacketRegistry.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketRegistry.ih b/Packets/PacketRegistry.ih
index 8bcf35a06f653079289e8c39a99ca91eafcc8127..0055983dfa1d4d1125ee44531d9dfdb954bd752c 100644
--- a/Packets/PacketRegistry.ih
+++ b/Packets/PacketRegistry.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketRegistry.test.cc b/Packets/PacketRegistry.test.cc
index 956227bbcdca85d0832799e4d9f505dd53821266..d43afb7bfd12df40ca95166bb01405782f972131 100644
--- a/Packets/PacketRegistry.test.cc
+++ b/Packets/PacketRegistry.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketType.cci b/Packets/PacketType.cci
index a074c9064a9f5858170061e2e08bbde3caebcb87..18741c09411324c4a78f8786d7babbfaa7d354d9 100644
--- a/Packets/PacketType.cci
+++ b/Packets/PacketType.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketType.ct b/Packets/PacketType.ct
index 5443c1db106c5dff4480216a6b7089b244081914..bdd2e88f5e9039eed8feebe23d6f606dfe4f5a87 100644
--- a/Packets/PacketType.ct
+++ b/Packets/PacketType.ct
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
diff --git a/Packets/PacketType.cti b/Packets/PacketType.cti
index 34f15dc84b2455ce49ff4f297e3e4880c244198d..75be1a788f1accbe591a2ce8002c6e1f7337eb4a 100644
--- a/Packets/PacketType.cti
+++ b/Packets/PacketType.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketType.hh b/Packets/PacketType.hh
index c23db1ecb7cbce043ee5543ec5c53bd6d4b5460c..a5b671df261d1fbb6d868718e976345d8a2f267f 100644
--- a/Packets/PacketType.hh
+++ b/Packets/PacketType.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/PacketTypes.hh b/Packets/PacketTypes.hh
index 3a9924ef27e9e39db430a1573c6ec6bc4cb5a254..3cf7a9c5d06d364c620ce7e58c9a70244ae9935f 100644
--- a/Packets/PacketTypes.hh
+++ b/Packets/PacketTypes.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/Packets.hh b/Packets/Packets.hh
index bea8576d1ab289998f2e8fce58c9f101007ff97f..fc415a61398fee0f172a6691a5e1496ca28d4e1d 100644
--- a/Packets/Packets.hh
+++ b/Packets/Packets.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/ParseHelpers.hh b/Packets/ParseHelpers.hh
index 85ab05614a6abf73574c6026f386df010e1affaf..e86818c0f2ac0ca447630801dbbebff5f3792799 100644
--- a/Packets/ParseHelpers.hh
+++ b/Packets/ParseHelpers.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/ParseHelpers.ih b/Packets/ParseHelpers.ih
index 7b3b5ea25ac2fc130426b24e6d6a0b5a15c4ddc7..c3afdeef55ba0328b7b5e5ccaea84d6043c22133 100644
--- a/Packets/ParseHelpers.ih
+++ b/Packets/ParseHelpers.ih
@@ -1,6 +1,6 @@
 # // Copyright (C) 2007
-# // Fraunhofer Institute for Open Communication Systems (FOKUS) 
-# // Competence Center NETwork research (NET), St. Augustin, GERMANY 
+# // Fraunhofer Institute for Open Communication Systems (FOKUS)
+# // Competence Center NETwork research (NET), St. Augustin, GERMANY
 # //     Stefan Bund <g0dil@berlios.de>
 # //
 # // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/ParseHelpers.test.cc b/Packets/ParseHelpers.test.cc
index 6332f48bdfc338d3a1edf8ba40243ee534db1a47..e4aa5bd094dc20854d3404a5d77c4b8140f7ac76 100644
--- a/Packets/ParseHelpers.test.cc
+++ b/Packets/ParseHelpers.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/VariantParser.ct b/Packets/VariantParser.ct
index d53cac7035a60d74dee0361b7a61851c9137e501..efaac9ce66d7362615384799226f12217006ba68 100644
--- a/Packets/VariantParser.ct
+++ b/Packets/VariantParser.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/VariantParser.cti b/Packets/VariantParser.cti
index af9a6515e010c4cb38f77166a458214c86f2a8ff..e3123df820d579a9d512ca362ab0f191cfa10c21 100644
--- a/Packets/VariantParser.cti
+++ b/Packets/VariantParser.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/VariantParser.dox b/Packets/VariantParser.dox
index c7de8b916db384e8be88128dc02256f2a59b3550..7138f35c379281a944adda03b24d4e53139366b9 100644
--- a/Packets/VariantParser.dox
+++ b/Packets/VariantParser.dox
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/VariantParser.hh b/Packets/VariantParser.hh
index 042e46e7bafde75de2ed73e276478a42b6f2833b..bd3e914475647f1293ed829429991e3fad943f57 100644
--- a/Packets/VariantParser.hh
+++ b/Packets/VariantParser.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/VariantParser.ih b/Packets/VariantParser.ih
index 053f4c817fd064dbd77a206ef507e3f5accbcc1b..bc1dd3e5547c1dca48696b0fa560d8d1dd24fa69 100644
--- a/Packets/VariantParser.ih
+++ b/Packets/VariantParser.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/VariantParser.test.cc b/Packets/VariantParser.test.cc
index 9b807e6647520d20b2ae311155e7ce7d0c5c22c3..948a42fd636577fed59df437a7265d534ac5ee53 100644
--- a/Packets/VariantParser.test.cc
+++ b/Packets/VariantParser.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/VectorParser.ct b/Packets/VectorParser.ct
index 3d83af20cb6dedde541583d6cb4a1fdfbc92ecb9..7d15db4dc2a750f56ca2cc6ec1c4313d45d7d687 100644
--- a/Packets/VectorParser.ct
+++ b/Packets/VectorParser.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/VectorParser.cti b/Packets/VectorParser.cti
index 0aadff0150922af230cc3ff56a2ef4660d79a95f..4ecf3bbb1657c6646d6830f74d4d7a5c16386404 100644
--- a/Packets/VectorParser.cti
+++ b/Packets/VectorParser.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/VectorParser.dox b/Packets/VectorParser.dox
index 43feb378760f2a5e99b52671b4916f760c2a7cb0..bf46c8863b35002375cacbe45d55af6f59de81d8 100644
--- a/Packets/VectorParser.dox
+++ b/Packets/VectorParser.dox
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/VectorParser.hh b/Packets/VectorParser.hh
index a3e784c9a17de1b1eee964b5172c5be7e28cb1f2..b135cd8f310afe2f4c1479c22e11b54c0bd7884d 100644
--- a/Packets/VectorParser.hh
+++ b/Packets/VectorParser.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/VectorParser.ih b/Packets/VectorParser.ih
index af7916844bc61149ccf86c79cd7a0be4344bfae6..c7b4340042c7d844819625d9a2d1e193b1e6381e 100644
--- a/Packets/VectorParser.ih
+++ b/Packets/VectorParser.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/VectorParser.test.cc b/Packets/VectorParser.test.cc
index d8c0d75d4793b6f48217382e089e82fd4bea4f86..ef7cffe748cf77775aba3105ebd9e3611bab364a 100644
--- a/Packets/VectorParser.test.cc
+++ b/Packets/VectorParser.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/main.test.cc b/Packets/main.test.cc
index f6be1f897415c34079a2b84d2f94dbaa97fd3a55..e5b17a4b61179b8e5656c73a2f1f41c45f4d6ced 100644
--- a/Packets/main.test.cc
+++ b/Packets/main.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/main.test.hh b/Packets/main.test.hh
index d4751c1e699f36e432aa70d550765943fd40cf03..b3a744ce4b89413c977152117e563d81e47cf5d5 100644
--- a/Packets/main.test.hh
+++ b/Packets/main.test.hh
@@ -1,8 +1,8 @@
 // $Id: TransportPacket.test.cc 560 2007-12-13 14:39:37Z tho $
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/parse_fixed_setup.hh b/Packets/parse_fixed_setup.hh
index 140392f30a0d14f9118b058687769e276973999e..46adca0c5f25c7e52430d1db04c6f0d310b59c3b 100644
--- a/Packets/parse_fixed_setup.hh
+++ b/Packets/parse_fixed_setup.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Packets/parse_setup.hh b/Packets/parse_setup.hh
index cb4cbe8250278d0105d67a5d85a064703621c2a4..390d2644fadda3462e6a68744be5d0c21510407f 100644
--- a/Packets/parse_setup.hh
+++ b/Packets/parse_setup.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Scheduler/ClockService.cc b/Scheduler/ClockService.cc
index 44b54046e365c07df2d566f7c36d0aa33acfe25e..e5f188e9d44c2ff732706e0bf6c417e5c1b4f9af 100644
--- a/Scheduler/ClockService.cc
+++ b/Scheduler/ClockService.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Scheduler/ClockService.cci b/Scheduler/ClockService.cci
index 89a6f9c26176a23dd877da5b44bc1d949d4266a0..41cc91cd711b16f7754805e576885e565f49005b 100644
--- a/Scheduler/ClockService.cci
+++ b/Scheduler/ClockService.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Scheduler/ClockService.hh b/Scheduler/ClockService.hh
index 77f0f6a1f368975f1cbc087dd640bb3ad2909c94..ba9b2ac5fc442232f99787f1fff8d0a3b8acd3e4 100644
--- a/Scheduler/ClockService.hh
+++ b/Scheduler/ClockService.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Scheduler/ClockService.test.cc b/Scheduler/ClockService.test.cc
index e6bb0c9414136e705da6ad481e1bce966290186a..68850675f9a4994144d8c7c9bbe9b06d9a108355 100644
--- a/Scheduler/ClockService.test.cc
+++ b/Scheduler/ClockService.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Scheduler/Mainpage.dox b/Scheduler/Mainpage.dox
index 40478ad462320bebbb12e3dec41cd7b90c67849b..210335b0a3ed574d4c0fe6401cea6ee65de53fdf 100644
--- a/Scheduler/Mainpage.dox
+++ b/Scheduler/Mainpage.dox
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Scheduler/Scheduler.cc b/Scheduler/Scheduler.cc
index cb54a2bffc774a2259a56c2ab46547ad4ad53a84..b19e988c782b8330f1c77a5d00afde2c4f4b7fb5 100644
--- a/Scheduler/Scheduler.cc
+++ b/Scheduler/Scheduler.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Scheduler/Scheduler.cci b/Scheduler/Scheduler.cci
index 162635dbb0649aed5c253d5386f48d2040f42e4e..b638dcd2584f11389040f987b40f77984ed08017 100644
--- a/Scheduler/Scheduler.cci
+++ b/Scheduler/Scheduler.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Scheduler/Scheduler.cti b/Scheduler/Scheduler.cti
index c5871e5ede1be9bd08ce503aa527828a0b7c7524..1404615f900beb7a8bc746fe5d43d57541d6a532 100644
--- a/Scheduler/Scheduler.cti
+++ b/Scheduler/Scheduler.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Scheduler/Scheduler.hh b/Scheduler/Scheduler.hh
index 5a96154795977e73f92b6b8d2dac1a560a8b28f2..0f16fceb7e439f7408f8d9e13070320e60217843 100644
--- a/Scheduler/Scheduler.hh
+++ b/Scheduler/Scheduler.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Scheduler/Scheduler.test.cc b/Scheduler/Scheduler.test.cc
index ae95d780aaaeeb6275bfe4856d6354fc580ef04d..5da6b8c47e5b01d130c9b6dff4f7fb315623ae76 100644
--- a/Scheduler/Scheduler.test.cc
+++ b/Scheduler/Scheduler.test.cc
@@ -2,8 +2,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Scheduler/main.test.cc b/Scheduler/main.test.cc
index 34e220b7d09cef35375ce24ce524c0aa88186c35..b6d1686f7ac632b48c93e3ea3e1b5d81a18b3d14 100644
--- a/Scheduler/main.test.cc
+++ b/Scheduler/main.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/AddressingPolicy.hh b/Socket/AddressingPolicy.hh
index b37f5327f6d288bc2de5b0ed984476a893b89f42..6e32808321aa20f36dae88a3a5ec064ab33a40b6 100644
--- a/Socket/AddressingPolicy.hh
+++ b/Socket/AddressingPolicy.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/ClientSocketHandle.ct b/Socket/ClientSocketHandle.ct
index 4ba87e58583bdc122ab03034196e12b51164f6f4..2678fa65f330096f4bc0c5c3efa7a60b2514b744 100644
--- a/Socket/ClientSocketHandle.ct
+++ b/Socket/ClientSocketHandle.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/ClientSocketHandle.cti b/Socket/ClientSocketHandle.cti
index 74f2307b372125682b73a6f188708fab3ee29974..cba6c6fbf3e853cea9c48e9b9c894f9d6910538e 100644
--- a/Socket/ClientSocketHandle.cti
+++ b/Socket/ClientSocketHandle.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/ClientSocketHandle.hh b/Socket/ClientSocketHandle.hh
index bbae9b0e4322606d648c5f5ce02c470992359447..2d15dc97f5a65c58f73e947de89f13dbf165a37c 100644
--- a/Socket/ClientSocketHandle.hh
+++ b/Socket/ClientSocketHandle.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/ClientSocketHandle.ih b/Socket/ClientSocketHandle.ih
index 417ebc200bcecb89a9f58ff5edb562389513b3cb..2251a9493a5c235440423ce636e20e30da6ca03a 100644
--- a/Socket/ClientSocketHandle.ih
+++ b/Socket/ClientSocketHandle.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/ClientSocketHandle.test.cc b/Socket/ClientSocketHandle.test.cc
index 5714e55b1f6cf5694d4ee71551774171a5f3b570..98a5c8356e1ed0c184a63a042484559e8bb78468 100644
--- a/Socket/ClientSocketHandle.test.cc
+++ b/Socket/ClientSocketHandle.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/CommunicationPolicy.cc b/Socket/CommunicationPolicy.cc
index 116683869c8a7c9a7bbda92ced86d06e1b327ff0..985113022b434e03972ce43fdca9e0aae38aa14a 100644
--- a/Socket/CommunicationPolicy.cc
+++ b/Socket/CommunicationPolicy.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/CommunicationPolicy.cci b/Socket/CommunicationPolicy.cci
index f916c49092596fa52d45fe560d0191e1e95936cf..ca9ddd6d733a8cb9941b2aba8bb3d3db40f2cb7d 100644
--- a/Socket/CommunicationPolicy.cci
+++ b/Socket/CommunicationPolicy.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/CommunicationPolicy.cti b/Socket/CommunicationPolicy.cti
index c877ff318aed1c8785caf90bfa9c65f5a0044cf2..375372cb61a1666281b4f6ab3118b89cd681e89a 100644
--- a/Socket/CommunicationPolicy.cti
+++ b/Socket/CommunicationPolicy.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/CommunicationPolicy.hh b/Socket/CommunicationPolicy.hh
index 39c0fc67916105bfcecfd003ba78145fae3e31bb..c589b35cfec346e2096d480c28d7fa6219abc0cb 100644
--- a/Socket/CommunicationPolicy.hh
+++ b/Socket/CommunicationPolicy.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/FileHandle.cc b/Socket/FileHandle.cc
index 97e554c7389ae10043ddbe23584ead1c7cde936d..28724697018470ec74937bb02a1b08d6df8d7224 100644
--- a/Socket/FileHandle.cc
+++ b/Socket/FileHandle.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/FileHandle.cci b/Socket/FileHandle.cci
index 4ace14c3be2921d9fda8659b5a3b7fc8cd6e1fb2..9f82d08a3be780287ce05c523dfaf22cf0eaebfa 100644
--- a/Socket/FileHandle.cci
+++ b/Socket/FileHandle.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/FileHandle.hh b/Socket/FileHandle.hh
index d45020a3469cc67ee432e46ed44c4d80a9c827e3..2ae609af89d770962312fd3e8d366ac734213e86 100644
--- a/Socket/FileHandle.hh
+++ b/Socket/FileHandle.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/FileHandle.ih b/Socket/FileHandle.ih
index 2e69506e0f2333e35c9cc2c252e57b43a38681b8..cdc775debde9ff512edad6add84ad132f6ee781e 100644
--- a/Socket/FileHandle.ih
+++ b/Socket/FileHandle.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/FileHandle.test.cc b/Socket/FileHandle.test.cc
index 04141a9a361a75f13094e8b5ce7b0b40f5214480..e73f047733df29c223040871b76ce908431f4a80 100644
--- a/Socket/FileHandle.test.cc
+++ b/Socket/FileHandle.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/FramingPolicy.hh b/Socket/FramingPolicy.hh
index dece08028a721af738f739075fdd8160f8ad60cc..f7feec3d5524476ac7da72170c3a412d5fc4dce0 100644
--- a/Socket/FramingPolicy.hh
+++ b/Socket/FramingPolicy.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Mainpage.dox b/Socket/Mainpage.dox
index 62feb85a5c7d952b28e20bcc77cb4dc22d635842..946d03e6a72a0f040702be8778805b8637f244ea 100644
--- a/Socket/Mainpage.dox
+++ b/Socket/Mainpage.dox
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/NetdeviceController.cc b/Socket/NetdeviceController.cc
index b5add516244dbb3ab71b0a58ebc1cfaa64352858..5f6ab52f28f4065ebbf7ed845f5817ba9fb4d092 100644
--- a/Socket/NetdeviceController.cc
+++ b/Socket/NetdeviceController.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/NetdeviceController.hh b/Socket/NetdeviceController.hh
index 291fb1eabb15a38fdc668102f3b5cf3b2c9c3921..1db86556102381eec3eed7e6de371226d1af4af9 100644
--- a/Socket/NetdeviceController.hh
+++ b/Socket/NetdeviceController.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/NetdeviceController.test.cc b/Socket/NetdeviceController.test.cc
index f3accd970321b1c05a9f4dc1b779694673070853..dafed9462847f13184b78686346ede3d1496620d 100644
--- a/Socket/NetdeviceController.test.cc
+++ b/Socket/NetdeviceController.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/ProtocolClientSocketHandle.cti b/Socket/ProtocolClientSocketHandle.cti
index 43c7b01f2e8996c9e7c88bd2a36d677477ee0abd..9f54fe9411a3621428347d75ae6b94319042fc93 100644
--- a/Socket/ProtocolClientSocketHandle.cti
+++ b/Socket/ProtocolClientSocketHandle.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/ProtocolClientSocketHandle.hh b/Socket/ProtocolClientSocketHandle.hh
index 8a04655b91d2f5f463dd884bcf360ce7b028b032..ce8518ee5c8c163827a8b89ea8fa052247ae5209 100644
--- a/Socket/ProtocolClientSocketHandle.hh
+++ b/Socket/ProtocolClientSocketHandle.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/ProtocolClientSocketHandle.mpp b/Socket/ProtocolClientSocketHandle.mpp
index 37a22de93d711c411e834b48e65511eb4583682d..6590a11560a3ffd2e2bff3117e2fbfd5fa589704 100644
--- a/Socket/ProtocolClientSocketHandle.mpp
+++ b/Socket/ProtocolClientSocketHandle.mpp
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/ProtocolClientSocketHandle.test.cc b/Socket/ProtocolClientSocketHandle.test.cc
index 9fe11cc3f528ab73e32638b762f5bf0ea9458eb0..6318a2961672d4402f8fbe3e53076bd0c99e2b29 100644
--- a/Socket/ProtocolClientSocketHandle.test.cc
+++ b/Socket/ProtocolClientSocketHandle.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/ProtocolServerSocketHandle.cti b/Socket/ProtocolServerSocketHandle.cti
index e27a8e518e7e846a0ab4719895f6c83cf7cb8661..e2c750f438afb12b12069b695c07868a65747fcb 100644
--- a/Socket/ProtocolServerSocketHandle.cti
+++ b/Socket/ProtocolServerSocketHandle.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/ProtocolServerSocketHandle.hh b/Socket/ProtocolServerSocketHandle.hh
index 2833f85792540f7239990e725588a2c5cd6527a2..bbd97e6cba996fe52729c00f0cb3bf61038cff20 100644
--- a/Socket/ProtocolServerSocketHandle.hh
+++ b/Socket/ProtocolServerSocketHandle.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/ProtocolServerSocketHandle.mpp b/Socket/ProtocolServerSocketHandle.mpp
index 6d80464497d94a1641ae3bb20b13670994a16dde..b43fce025e1fd0269bccbec2849582a5619cfcbb 100644
--- a/Socket/ProtocolServerSocketHandle.mpp
+++ b/Socket/ProtocolServerSocketHandle.mpp
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/ProtocolServerSocketHandle.test.cc b/Socket/ProtocolServerSocketHandle.test.cc
index 149342c73c9210c41299589c009955e9d44e7778..b8065ee53e855e5424a5148b16c7f1cac649a277 100644
--- a/Socket/ProtocolServerSocketHandle.test.cc
+++ b/Socket/ProtocolServerSocketHandle.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/BSDSocketProtocol.cc b/Socket/Protocols/BSDSocketProtocol.cc
index a625fcc67cb785145def3de9e2a34c6e2e339837..69ba5198615bae9e1944c3348bd43e0f53cefba8 100644
--- a/Socket/Protocols/BSDSocketProtocol.cc
+++ b/Socket/Protocols/BSDSocketProtocol.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/BSDSocketProtocol.hh b/Socket/Protocols/BSDSocketProtocol.hh
index 616557c3b9d9f7890a0f9927553e2184da7174cc..e56bde170c1730ffb67db964429a511bc595ca88 100644
--- a/Socket/Protocols/BSDSocketProtocol.hh
+++ b/Socket/Protocols/BSDSocketProtocol.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/DVB.hh b/Socket/Protocols/DVB.hh
index b985fc92082d74b4239b9be109bd963d55247e72..07bf0d9f83479077e2777e727ce99b02f77d8fd7 100644
--- a/Socket/Protocols/DVB.hh
+++ b/Socket/Protocols/DVB.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/DVB/DVB.hh b/Socket/Protocols/DVB/DVB.hh
index 73e56e662a5760664c57ef5c4e02bb7682a8d3f2..873c4153b4fe1c6a6488973eb243716d543525ed 100644
--- a/Socket/Protocols/DVB/DVB.hh
+++ b/Socket/Protocols/DVB/DVB.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/DVB/DVBDemuxHandles.cc b/Socket/Protocols/DVB/DVBDemuxHandles.cc
index e54b3f92c17ed185a6152c5dbbf5461556d87dfb..3dfdd6af4ad666211e6c70fd81b59be775908dd0 100644
--- a/Socket/Protocols/DVB/DVBDemuxHandles.cc
+++ b/Socket/Protocols/DVB/DVBDemuxHandles.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/DVB/DVBDemuxHandles.hh b/Socket/Protocols/DVB/DVBDemuxHandles.hh
index 97a2c398e2001317b845fd9725ddfe5c289e6312..fe4ce3674f6b9b51c200728db806f2c1b28c862d 100644
--- a/Socket/Protocols/DVB/DVBDemuxHandles.hh
+++ b/Socket/Protocols/DVB/DVBDemuxHandles.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/DVB/DVBDemuxProtocol.cc b/Socket/Protocols/DVB/DVBDemuxProtocol.cc
index 6eabb90ac9488c6db8b991d3cdc1213d02ea3288..90ea73d47cffc999d57bc8dc5e03ea0f81bff22a 100644
--- a/Socket/Protocols/DVB/DVBDemuxProtocol.cc
+++ b/Socket/Protocols/DVB/DVBDemuxProtocol.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/DVB/DVBDemuxProtocol.hh b/Socket/Protocols/DVB/DVBDemuxProtocol.hh
index 9601ca7c8463672ba8f90572d0e266cd8a8d927f..fd9e8dac6c1674794b8c09c6398ff7dc8fdf20d2 100644
--- a/Socket/Protocols/DVB/DVBDemuxProtocol.hh
+++ b/Socket/Protocols/DVB/DVBDemuxProtocol.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/DVB/DVBFrontendHandle.cc b/Socket/Protocols/DVB/DVBFrontendHandle.cc
index 7092bdae917219e46c4061eaafa4724461e4560e..61af0ebaa1e7d8379bf5f72359f609120e4a5b9c 100644
--- a/Socket/Protocols/DVB/DVBFrontendHandle.cc
+++ b/Socket/Protocols/DVB/DVBFrontendHandle.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/DVB/DVBFrontendHandle.hh b/Socket/Protocols/DVB/DVBFrontendHandle.hh
index 3c783c30690d3343f1ded3f64f88e2b299820bc6..cbe5bd8fd1f0fe8e33dde9a2477296c9e51b133b 100644
--- a/Socket/Protocols/DVB/DVBFrontendHandle.hh
+++ b/Socket/Protocols/DVB/DVBFrontendHandle.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/DatagramSocketProtocol.cc b/Socket/Protocols/DatagramSocketProtocol.cc
index 196a0b15ff5a84f52f4d57500d1b3d831a6aa473..a78b4ec3d3ca7bdf4855a04e0b5b6b58f65acf17 100644
--- a/Socket/Protocols/DatagramSocketProtocol.cc
+++ b/Socket/Protocols/DatagramSocketProtocol.cc
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2007 
+// Copyright (C) 2007
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
diff --git a/Socket/Protocols/DatagramSocketProtocol.hh b/Socket/Protocols/DatagramSocketProtocol.hh
index a1c014b89da30c245ee77fe97f63faa9e9741311..3bffdf1be699a68036d7c7478f3d9020cf76e1a6 100644
--- a/Socket/Protocols/DatagramSocketProtocol.hh
+++ b/Socket/Protocols/DatagramSocketProtocol.hh
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2007 
+// Copyright (C) 2007
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
diff --git a/Socket/Protocols/GenericAddressingPolicy.cc b/Socket/Protocols/GenericAddressingPolicy.cc
index 09f6308885c250da9b6eb53467bc1199bf9f3f2e..9768655496abf16cac28c00e73a7b315c9c66ad8 100644
--- a/Socket/Protocols/GenericAddressingPolicy.cc
+++ b/Socket/Protocols/GenericAddressingPolicy.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/GenericAddressingPolicy.cti b/Socket/Protocols/GenericAddressingPolicy.cti
index d003fffa9e813a5a1f0613f5e5fd8557d37ebdba..2eaf5c888559d37ea14892c500de4846134cd22d 100644
--- a/Socket/Protocols/GenericAddressingPolicy.cti
+++ b/Socket/Protocols/GenericAddressingPolicy.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/GenericAddressingPolicy.hh b/Socket/Protocols/GenericAddressingPolicy.hh
index c9e9cfeaf7397e1d4ee2d48fe8c74f655d95782e..b1d29975dfa8b029cc59f56d7429a1f3ace3c4af 100644
--- a/Socket/Protocols/GenericAddressingPolicy.hh
+++ b/Socket/Protocols/GenericAddressingPolicy.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet.hh b/Socket/Protocols/INet.hh
index b07a1b02d5ce61de49e5c9af5e941828e289c9d8..cd35d012485b57ed813c97676880e14613aacfd2 100644
--- a/Socket/Protocols/INet.hh
+++ b/Socket/Protocols/INet.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/ConnectedRawINetSocketHandle.cc b/Socket/Protocols/INet/ConnectedRawINetSocketHandle.cc
index da6be3528c0cfffe449a3152092ae94eead04691..9cf06b4b0f2a040ba5dcb75f7948c808de55373e 100644
--- a/Socket/Protocols/INet/ConnectedRawINetSocketHandle.cc
+++ b/Socket/Protocols/INet/ConnectedRawINetSocketHandle.cc
@@ -1,8 +1,8 @@
 // $Id: ConnectedRawINetSocketHandle.cc 597 2008-01-15 09:16:20Z g0dil $
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/ConnectedRawINetSocketHandle.hh b/Socket/Protocols/INet/ConnectedRawINetSocketHandle.hh
index 83672c389dc0ffb9012fe2a90b3ad37c56b1ebb4..2707f3bdb38cde7fb0401375f6deccaa576c70fa 100644
--- a/Socket/Protocols/INet/ConnectedRawINetSocketHandle.hh
+++ b/Socket/Protocols/INet/ConnectedRawINetSocketHandle.hh
@@ -1,8 +1,8 @@
 // $Id: ConnectedRawINetSocketHandle.hh 597 2008-01-15 09:16:20Z g0dil $
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/ConnectedUDPSocketHandle.cc b/Socket/Protocols/INet/ConnectedUDPSocketHandle.cc
index 4842f83a1035a18c7b3b372e6805fc42d7e004b6..2330c0383a97f8ba869e1cf29595e510d5179141 100644
--- a/Socket/Protocols/INet/ConnectedUDPSocketHandle.cc
+++ b/Socket/Protocols/INet/ConnectedUDPSocketHandle.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/ConnectedUDPSocketHandle.hh b/Socket/Protocols/INet/ConnectedUDPSocketHandle.hh
index 85bad71a2c739b98c124bc74a6c1379d734b1c56..4c5fecb2c27ee767891902fd9f996898dcedd326 100644
--- a/Socket/Protocols/INet/ConnectedUDPSocketHandle.hh
+++ b/Socket/Protocols/INet/ConnectedUDPSocketHandle.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INet.hh b/Socket/Protocols/INet/INet.hh
index bdd78885bfba4a263db935acf5b1365f2c8ea5c4..18e06bef1437ea7990af98b02303c43b0a02b734 100644
--- a/Socket/Protocols/INet/INet.hh
+++ b/Socket/Protocols/INet/INet.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INet4Address.cc b/Socket/Protocols/INet/INet4Address.cc
index 2f23f77fec6a75f054c8dcd60c67fade0134a3a5..6d75b16b2ab65ed855f620e836f494b0d7d0c2d0 100644
--- a/Socket/Protocols/INet/INet4Address.cc
+++ b/Socket/Protocols/INet/INet4Address.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INet4Address.cci b/Socket/Protocols/INet/INet4Address.cci
index 65cc8319b4927d7920d8cfd16d0692bbba5b1703..74ac44345a32b2cdfe80b657191a1b7639c73d0a 100644
--- a/Socket/Protocols/INet/INet4Address.cci
+++ b/Socket/Protocols/INet/INet4Address.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INet4Address.ct b/Socket/Protocols/INet/INet4Address.ct
index 408355be09687a2aba9d042e900a1466d8f27dca..1f9fccc7642f25d919579b77cf325ab7c40af6e4 100644
--- a/Socket/Protocols/INet/INet4Address.ct
+++ b/Socket/Protocols/INet/INet4Address.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INet4Address.cti b/Socket/Protocols/INet/INet4Address.cti
index 8adb2aa96e9e17d7f9dc9a628da446cc8759f4a3..baede9ac0e03a5a85552ee7739dcc93e60c62fd8 100644
--- a/Socket/Protocols/INet/INet4Address.cti
+++ b/Socket/Protocols/INet/INet4Address.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INet4Address.hh b/Socket/Protocols/INet/INet4Address.hh
index a77903d96142e7139dde3062d073b47b0850ec2b..637a2dc25ffa3d8ff961158e9f7f0e670571000f 100644
--- a/Socket/Protocols/INet/INet4Address.hh
+++ b/Socket/Protocols/INet/INet4Address.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INet4Address.test.cc b/Socket/Protocols/INet/INet4Address.test.cc
index 3d1fce3881df476a2f506c68930a479e24c82b99..944827f60976299bd8b37e57faa701a43b00fb5f 100644
--- a/Socket/Protocols/INet/INet4Address.test.cc
+++ b/Socket/Protocols/INet/INet4Address.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INet6Address.cc b/Socket/Protocols/INet/INet6Address.cc
index c662115a5fd6f0188c8f065a661abab6a83e9675..a167849db4c4130ffce575fc5aa3bf58059f0acf 100644
--- a/Socket/Protocols/INet/INet6Address.cc
+++ b/Socket/Protocols/INet/INet6Address.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INet6Address.cci b/Socket/Protocols/INet/INet6Address.cci
index 5a788b61a5e7f8947ab2223608623dacbbe09eb9..a0540de35990409e99412cb33224d278f172fc60 100644
--- a/Socket/Protocols/INet/INet6Address.cci
+++ b/Socket/Protocols/INet/INet6Address.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INet6Address.ct b/Socket/Protocols/INet/INet6Address.ct
index 83cc00814553291d6ff8c904e38784b74518273c..adcbacabe946ffdc506ad116f29750b22935b696 100644
--- a/Socket/Protocols/INet/INet6Address.ct
+++ b/Socket/Protocols/INet/INet6Address.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INet6Address.cti b/Socket/Protocols/INet/INet6Address.cti
index 5bc8fd7118b531537f075f9a3704e63c2cde9ab5..c4158c400e613eb72d116e84a3f7f91862d7eb52 100644
--- a/Socket/Protocols/INet/INet6Address.cti
+++ b/Socket/Protocols/INet/INet6Address.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INet6Address.hh b/Socket/Protocols/INet/INet6Address.hh
index 436d5fe187b2e3c7373c09c54620b55bbcf47d90..113ceae44ad7e1f9e536c1dce8cccd7d786c070e 100644
--- a/Socket/Protocols/INet/INet6Address.hh
+++ b/Socket/Protocols/INet/INet6Address.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INet6Address.ih b/Socket/Protocols/INet/INet6Address.ih
index 5507f4436840e985416220fccd198df5c13365f5..2f4cbe2edaa2dec31a080c2b43592d2fa2ccb930 100644
--- a/Socket/Protocols/INet/INet6Address.ih
+++ b/Socket/Protocols/INet/INet6Address.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INet6Address.test.cc b/Socket/Protocols/INet/INet6Address.test.cc
index fc7286bc457c7056885c8fa055ff139cfde1dc58..0df239b13ad7c5adca74293e225c11a0adf1eeb3 100644
--- a/Socket/Protocols/INet/INet6Address.test.cc
+++ b/Socket/Protocols/INet/INet6Address.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INetAddressing.cc b/Socket/Protocols/INet/INetAddressing.cc
index d4f1149f67b589c002be2c60bd4de7d8fe3d4a14..2033048204b17cf87b32834fbb66116d1d2279ee 100644
--- a/Socket/Protocols/INet/INetAddressing.cc
+++ b/Socket/Protocols/INet/INetAddressing.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INetAddressing.cci b/Socket/Protocols/INet/INetAddressing.cci
index 3ad38493a257844741047eecaa819390080557a8..c95b69d3cb4450de7c87cd05c65848e0905d7f86 100644
--- a/Socket/Protocols/INet/INetAddressing.cci
+++ b/Socket/Protocols/INet/INetAddressing.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INetAddressing.hh b/Socket/Protocols/INet/INetAddressing.hh
index b65e28bcb8b28c553070d89801865bfd309e81f5..5bf7f45781b6b83be6ebbf330ece17354630fe5d 100644
--- a/Socket/Protocols/INet/INetAddressing.hh
+++ b/Socket/Protocols/INet/INetAddressing.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INetAddressing.test.cc b/Socket/Protocols/INet/INetAddressing.test.cc
index dcf444300d992672048d253fce540a624efebf8e..225aae9efb9b55bba55c076934f4b8d35690116e 100644
--- a/Socket/Protocols/INet/INetAddressing.test.cc
+++ b/Socket/Protocols/INet/INetAddressing.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INetProtocol.cc b/Socket/Protocols/INet/INetProtocol.cc
index e23230fb77049d6350e259ead4c1135d7548719a..b7dbab4a40cd5a325a374aca7f83e7fbf14a3bc8 100644
--- a/Socket/Protocols/INet/INetProtocol.cc
+++ b/Socket/Protocols/INet/INetProtocol.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/INetProtocol.hh b/Socket/Protocols/INet/INetProtocol.hh
index 277822e30b9be3e42a27b3b59e08b4fabd7aeaf5..b37021ea8c0aa1989402b5c165eac5e12b17e8f5 100644
--- a/Socket/Protocols/INet/INetProtocol.hh
+++ b/Socket/Protocols/INet/INetProtocol.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/MulticastProtocol.cc b/Socket/Protocols/INet/MulticastProtocol.cc
index ee6428554dce87ae664835b42ab1557ac83326fc..a98c1fa987b34c246692852e611c6003fc333172 100644
--- a/Socket/Protocols/INet/MulticastProtocol.cc
+++ b/Socket/Protocols/INet/MulticastProtocol.cc
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2007 
+// Copyright (C) 2007
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
diff --git a/Socket/Protocols/INet/MulticastProtocol.hh b/Socket/Protocols/INet/MulticastProtocol.hh
index 3ce6347eaeca5ca225e48944b4f6f4f3c33827f4..d5398dbd7c564f98aaced5b49aeaa71f78a2cd27 100644
--- a/Socket/Protocols/INet/MulticastProtocol.hh
+++ b/Socket/Protocols/INet/MulticastProtocol.hh
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2007 
+// Copyright (C) 2007
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
diff --git a/Socket/Protocols/INet/RawINetProtocol.cc b/Socket/Protocols/INet/RawINetProtocol.cc
index be22955f360211fcf90e73a5640d055656075c54..981fe4fdef7c98b71ceb3ae7803750f01166754a 100644
--- a/Socket/Protocols/INet/RawINetProtocol.cc
+++ b/Socket/Protocols/INet/RawINetProtocol.cc
@@ -1,8 +1,8 @@
 // $Id: RawINetProtocol.cc 597 2008-01-15 09:16:20Z g0dil $
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/RawINetProtocol.hh b/Socket/Protocols/INet/RawINetProtocol.hh
index e0fb7e233a4f54597ee5b190263483fd2faad35b..902ddd7912542e9e5f232c6d26e258c19772e205 100644
--- a/Socket/Protocols/INet/RawINetProtocol.hh
+++ b/Socket/Protocols/INet/RawINetProtocol.hh
@@ -1,8 +1,8 @@
 // $Id: RawINetProtocol.hh 597 2008-01-15 09:16:20Z g0dil $
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/RawINetSocketHandle.cc b/Socket/Protocols/INet/RawINetSocketHandle.cc
index 159cb1666c1d948d31bb75662403cbaa9bc1807f..e1401287d1674bc301ca1b939c91d82a49cefc5d 100644
--- a/Socket/Protocols/INet/RawINetSocketHandle.cc
+++ b/Socket/Protocols/INet/RawINetSocketHandle.cc
@@ -1,8 +1,8 @@
 // $Id: RawINetSocketHandle.cc 597 2008-01-15 09:16:20Z g0dil $
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/RawINetSocketHandle.hh b/Socket/Protocols/INet/RawINetSocketHandle.hh
index bbb8ebdf7428b3fd77923d9dbde05ffa8ba187f1..c7e828eb2ea07ec1b00d805ed5729cf944411d81 100644
--- a/Socket/Protocols/INet/RawINetSocketHandle.hh
+++ b/Socket/Protocols/INet/RawINetSocketHandle.hh
@@ -1,8 +1,8 @@
 // $Id: RawINetSocketHandle.hh 597 2008-01-15 09:16:20Z g0dil $
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/RawINetSocketHandle.test.cc b/Socket/Protocols/INet/RawINetSocketHandle.test.cc
index ab4c7ecae5065a7b2eaed0faaebb6460973e3adb..696ec6d6c164c5a673619aa6d4d75959564fd796 100644
--- a/Socket/Protocols/INet/RawINetSocketHandle.test.cc
+++ b/Socket/Protocols/INet/RawINetSocketHandle.test.cc
@@ -1,8 +1,8 @@
 // $Id: RawINetSocketHandle.test.cc 597 2008-01-15 09:16:20Z g0dil $
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/TCPProtocol.cc b/Socket/Protocols/INet/TCPProtocol.cc
index fed45163733787be0256897a1174473262c1c6f3..340e76b0486da0c1ad7aceb96e0342bd53c08d8b 100644
--- a/Socket/Protocols/INet/TCPProtocol.cc
+++ b/Socket/Protocols/INet/TCPProtocol.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/TCPProtocol.hh b/Socket/Protocols/INet/TCPProtocol.hh
index 67d25dcefd7b6cd527cae8af46aabb9406da713c..914a3fa80429da46602b99c1cc2f1d6c54290874 100644
--- a/Socket/Protocols/INet/TCPProtocol.hh
+++ b/Socket/Protocols/INet/TCPProtocol.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/TCPSocketHandle.cc b/Socket/Protocols/INet/TCPSocketHandle.cc
index 5afe60c0bc5fa9685238024f02aab81472670f57..275f91b1a7e9f0626130faa767199b48775398bd 100644
--- a/Socket/Protocols/INet/TCPSocketHandle.cc
+++ b/Socket/Protocols/INet/TCPSocketHandle.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/TCPSocketHandle.hh b/Socket/Protocols/INet/TCPSocketHandle.hh
index 352e7cf380d8aaf5a24c7821c79fb920a3e210ad..90395180e9718bef39c555893293ae9419868ffe 100644
--- a/Socket/Protocols/INet/TCPSocketHandle.hh
+++ b/Socket/Protocols/INet/TCPSocketHandle.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/TCPSocketHandle.test.cc b/Socket/Protocols/INet/TCPSocketHandle.test.cc
index 216cadc92310cbfbe1844fe1e84b7b6f727c946f..3ed3a0a0e8dc701c5095d1ed8474892e9a557a0b 100644
--- a/Socket/Protocols/INet/TCPSocketHandle.test.cc
+++ b/Socket/Protocols/INet/TCPSocketHandle.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/UDPProtocol.cc b/Socket/Protocols/INet/UDPProtocol.cc
index 3b276b3577d7b7d3a439da694b0716f0a26c1d65..55d151bdd3cb517417c13f0e292563b7c38a4904 100644
--- a/Socket/Protocols/INet/UDPProtocol.cc
+++ b/Socket/Protocols/INet/UDPProtocol.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/UDPProtocol.hh b/Socket/Protocols/INet/UDPProtocol.hh
index 5a1a3a0cb0bfc51579f91cf28a49165179ec9bd5..96b541fbaaa94a6957b22029eab97f43b62a818a 100644
--- a/Socket/Protocols/INet/UDPProtocol.hh
+++ b/Socket/Protocols/INet/UDPProtocol.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/UDPSocketHandle.cc b/Socket/Protocols/INet/UDPSocketHandle.cc
index e7c7dc5a2a1937e90d6f295c70a3c3fc93b196bd..502260bbaf54a07d82b3a8717fa7e993ee201564 100644
--- a/Socket/Protocols/INet/UDPSocketHandle.cc
+++ b/Socket/Protocols/INet/UDPSocketHandle.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/UDPSocketHandle.hh b/Socket/Protocols/INet/UDPSocketHandle.hh
index 9ada42b7a1c6f56648502aa6a203690e7bf5ad9b..b8a8fd53d2e0097c212913631a9d815f45af52b0 100644
--- a/Socket/Protocols/INet/UDPSocketHandle.hh
+++ b/Socket/Protocols/INet/UDPSocketHandle.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/UDPSocketHandle.test.cc b/Socket/Protocols/INet/UDPSocketHandle.test.cc
index 7e1d73ff094c1eaa4d58c4d38e0d26bfa0da640a..39cece6fb724082051c47f5b3d4fbd0221ba0356 100644
--- a/Socket/Protocols/INet/UDPSocketHandle.test.cc
+++ b/Socket/Protocols/INet/UDPSocketHandle.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/INet/main.test.cc b/Socket/Protocols/INet/main.test.cc
index 33d6da679b020c23701d466367ab6d1573283e61..39abb0d46a35620fe7d03270401b3f6c2d8a884b 100644
--- a/Socket/Protocols/INet/main.test.cc
+++ b/Socket/Protocols/INet/main.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/Raw.hh b/Socket/Protocols/Raw.hh
index 2ae17c5e8b648a4757862a3c19b56d6b3f5e9296..b45a4f08860519520f4a6bc08ccb8858dc6726db 100644
--- a/Socket/Protocols/Raw.hh
+++ b/Socket/Protocols/Raw.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/Raw/LLAddressing.cc b/Socket/Protocols/Raw/LLAddressing.cc
index 63b671c94333a942365f33ffecb62b5d0d1df425..d1cc7102cd1d4ad7a26547fc94eaa6ef4c63e8d1 100644
--- a/Socket/Protocols/Raw/LLAddressing.cc
+++ b/Socket/Protocols/Raw/LLAddressing.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/Raw/LLAddressing.cci b/Socket/Protocols/Raw/LLAddressing.cci
index cb3745fad6da0eb9df803d9e09f38495f6666e7c..1245a10ece903acf1c2382c449e6ef1bb45b45af 100644
--- a/Socket/Protocols/Raw/LLAddressing.cci
+++ b/Socket/Protocols/Raw/LLAddressing.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/Raw/LLAddressing.hh b/Socket/Protocols/Raw/LLAddressing.hh
index e910b95e144b7d3f6e823a9cac1ddd21069f32d2..23527a7bcf997af1bd7bb48a05952d00c463a89c 100644
--- a/Socket/Protocols/Raw/LLAddressing.hh
+++ b/Socket/Protocols/Raw/LLAddressing.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/Raw/LLAddressing.test.cc b/Socket/Protocols/Raw/LLAddressing.test.cc
index 4a477eb00a66c392d1860992646be03b6e291ba5..1a2f25e7c836713ebe2985a98268f948aba1fc48 100644
--- a/Socket/Protocols/Raw/LLAddressing.test.cc
+++ b/Socket/Protocols/Raw/LLAddressing.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/Raw/MACAddress.cc b/Socket/Protocols/Raw/MACAddress.cc
index 48d2a1b413b01e5d78e810e8fd6cf4022e8ce18d..4341bb3ed6ba13209fcf8b6a8716df36f9172d60 100644
--- a/Socket/Protocols/Raw/MACAddress.cc
+++ b/Socket/Protocols/Raw/MACAddress.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/Raw/MACAddress.cci b/Socket/Protocols/Raw/MACAddress.cci
index 1879c90eb7eb47d243d05d729f980cb109bc5a0a..45eb66c38d19c7c4566cf494494c7ce64dd94c7b 100644
--- a/Socket/Protocols/Raw/MACAddress.cci
+++ b/Socket/Protocols/Raw/MACAddress.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/Raw/MACAddress.ct b/Socket/Protocols/Raw/MACAddress.ct
index 2c6ae392dd3b86c980ac4149bf6f14dade0671f0..2f8789625dfea177054338230f80449eec87ce71 100644
--- a/Socket/Protocols/Raw/MACAddress.ct
+++ b/Socket/Protocols/Raw/MACAddress.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/Raw/MACAddress.hh b/Socket/Protocols/Raw/MACAddress.hh
index 2ddd74d37bd60c6da393f54cff7fc4c7b7ad0c02..f73e745a35429092dc83edadfec899f9084da83b 100644
--- a/Socket/Protocols/Raw/MACAddress.hh
+++ b/Socket/Protocols/Raw/MACAddress.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/Raw/MACAddress.test.cc b/Socket/Protocols/Raw/MACAddress.test.cc
index addcf7a244eb3301e4eea669beac8a87ee2cd1e0..067eab0d8040bb8aa7d5b795bbf1e317177a1a3b 100644
--- a/Socket/Protocols/Raw/MACAddress.test.cc
+++ b/Socket/Protocols/Raw/MACAddress.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/Raw/PacketSocketHandle.cc b/Socket/Protocols/Raw/PacketSocketHandle.cc
index a57edf5f2df345ee0d3a5a9899c05640477225cc..05eef453add6b1291aad4046d7e041edefae4a3f 100644
--- a/Socket/Protocols/Raw/PacketSocketHandle.cc
+++ b/Socket/Protocols/Raw/PacketSocketHandle.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/Raw/PacketSocketHandle.hh b/Socket/Protocols/Raw/PacketSocketHandle.hh
index 9410ab6de739cad3d55be355ab4c60deab945ecb..4869214feeef49faeddbe5cf9fa4bff9000a621f 100644
--- a/Socket/Protocols/Raw/PacketSocketHandle.hh
+++ b/Socket/Protocols/Raw/PacketSocketHandle.hh
@@ -1,8 +1,8 @@
 // $Id:PacketSocketHandle.hh 218 2007-03-20 14:39:32Z tho $
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/Raw/PacketSocketHandle.test.cc b/Socket/Protocols/Raw/PacketSocketHandle.test.cc
index 31593eb760e267be1a203263789cb1f14c7e3a73..99941e65bcf5c62be0ad19dc3a2e7780e859035c 100644
--- a/Socket/Protocols/Raw/PacketSocketHandle.test.cc
+++ b/Socket/Protocols/Raw/PacketSocketHandle.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/Raw/Raw.hh b/Socket/Protocols/Raw/Raw.hh
index aeeccaef42f739c379727a313bc1fba00ce31988..9d5109d236ee08d73aab7a723fc2344d8c007fc7 100644
--- a/Socket/Protocols/Raw/Raw.hh
+++ b/Socket/Protocols/Raw/Raw.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/Raw/TunTapSocketHandle.cc b/Socket/Protocols/Raw/TunTapSocketHandle.cc
index 704944769f1db77770a86fa36d509d9678bc3d3d..2cf8670f780633246e649bee4868691921110d55 100644
--- a/Socket/Protocols/Raw/TunTapSocketHandle.cc
+++ b/Socket/Protocols/Raw/TunTapSocketHandle.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/Raw/TunTapSocketHandle.hh b/Socket/Protocols/Raw/TunTapSocketHandle.hh
index 340d2c738c2857c963da346a7b3e43bb63676679..f2c21f23faa2cf045e3205d3219aab5d36b168d6 100644
--- a/Socket/Protocols/Raw/TunTapSocketHandle.hh
+++ b/Socket/Protocols/Raw/TunTapSocketHandle.hh
@@ -1,8 +1,8 @@
 // $Id:PacketSocketHandle.hh 218 2007-03-20 14:39:32Z tho $
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/Raw/TunTapSocketHandle.test.cc b/Socket/Protocols/Raw/TunTapSocketHandle.test.cc
index 3fe55fceb03595bdb9da6a4ebd8a4666eb919a4d..a270d10810862df6ca7ad47c5faad1b41774f7bb 100644
--- a/Socket/Protocols/Raw/TunTapSocketHandle.test.cc
+++ b/Socket/Protocols/Raw/TunTapSocketHandle.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/Raw/main.test.cc b/Socket/Protocols/Raw/main.test.cc
index 33d6da679b020c23701d466367ab6d1573283e61..39abb0d46a35620fe7d03270401b3f6c2d8a884b 100644
--- a/Socket/Protocols/Raw/main.test.cc
+++ b/Socket/Protocols/Raw/main.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/UN.hh b/Socket/Protocols/UN.hh
index 759376b3f253957bf2e539366255c430a771b7c1..ef73fd8e9a829c04fbb3b0817135e4c0c7cd2195 100644
--- a/Socket/Protocols/UN.hh
+++ b/Socket/Protocols/UN.hh
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2007 
+// Copyright (C) 2007
 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
 //     Stefan Bund <g0dil@berlios.de>
diff --git a/Socket/Protocols/UN/ConnectedUNDatagramSocketHandle.cc b/Socket/Protocols/UN/ConnectedUNDatagramSocketHandle.cc
index ffefd715f858ed56973b094c9137e5b0712419f0..f5429aab10281a6404b3be90e290496cdcecbc07 100644
--- a/Socket/Protocols/UN/ConnectedUNDatagramSocketHandle.cc
+++ b/Socket/Protocols/UN/ConnectedUNDatagramSocketHandle.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/UN/ConnectedUNDatagramSocketHandle.hh b/Socket/Protocols/UN/ConnectedUNDatagramSocketHandle.hh
index 50ead3ef3dd13e9e2e67a21285f9dcd8161d1b0a..9e7cecf2d9f083a999abafb69b58bb76893d50c2 100644
--- a/Socket/Protocols/UN/ConnectedUNDatagramSocketHandle.hh
+++ b/Socket/Protocols/UN/ConnectedUNDatagramSocketHandle.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/UN/UN.hh b/Socket/Protocols/UN/UN.hh
index 5afda6cc774bde8db6bbcd4611d70700aaddd686..671950087080503228625c4461a769ab886f25c1 100644
--- a/Socket/Protocols/UN/UN.hh
+++ b/Socket/Protocols/UN/UN.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/UN/UNAddressing.cc b/Socket/Protocols/UN/UNAddressing.cc
index 56fe01987d1e3b244b93bbe385109028599968f6..2ebb5607d16ce9f6a04182e6d3a6c0f8e19d78b4 100644
--- a/Socket/Protocols/UN/UNAddressing.cc
+++ b/Socket/Protocols/UN/UNAddressing.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/UN/UNAddressing.hh b/Socket/Protocols/UN/UNAddressing.hh
index 43272d5dca39713a4d1cf2739d9345b3396374b0..fc918a30483238c668b8326b4cb21b7295b36c01 100644
--- a/Socket/Protocols/UN/UNAddressing.hh
+++ b/Socket/Protocols/UN/UNAddressing.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/UN/UNAddressing.test.cc b/Socket/Protocols/UN/UNAddressing.test.cc
index cdf0abeaf54c11ed5a8a234daa371d7225e03dc2..3f6f015c3691c415b9fca7e01f54f7ad9a0d724a 100644
--- a/Socket/Protocols/UN/UNAddressing.test.cc
+++ b/Socket/Protocols/UN/UNAddressing.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/UN/UNDatagramSocketHandle.cc b/Socket/Protocols/UN/UNDatagramSocketHandle.cc
index 42d7f38cadd2f6edc07ffae61abce489baaa6b0d..43ecc00c29cd1bbfd6af767fb196b7bb595d758f 100644
--- a/Socket/Protocols/UN/UNDatagramSocketHandle.cc
+++ b/Socket/Protocols/UN/UNDatagramSocketHandle.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/UN/UNDatagramSocketHandle.hh b/Socket/Protocols/UN/UNDatagramSocketHandle.hh
index 92c2cd6c73ec1555220a6951af526cec218ea2b2..a1a7b2377eceba3b268ceb0324f48aa3d7059422 100644
--- a/Socket/Protocols/UN/UNDatagramSocketHandle.hh
+++ b/Socket/Protocols/UN/UNDatagramSocketHandle.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/UN/UNDatagramSocketHandle.test.cc b/Socket/Protocols/UN/UNDatagramSocketHandle.test.cc
index cf2b4138e5dc903b3c1cd9b54fb0fe3d49bf7c04..da7eb0ee2ecc2cb0fe0ebcd00650aec592a0c6e7 100644
--- a/Socket/Protocols/UN/UNDatagramSocketHandle.test.cc
+++ b/Socket/Protocols/UN/UNDatagramSocketHandle.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/UN/UNProtocol.cc b/Socket/Protocols/UN/UNProtocol.cc
index 507457fcb1dbf8e106ef023b6b57624a87d60d65..4e0d959c20e9c7d558c6fcd2f85f1d6e1e5b9788 100644
--- a/Socket/Protocols/UN/UNProtocol.cc
+++ b/Socket/Protocols/UN/UNProtocol.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/UN/UNProtocol.hh b/Socket/Protocols/UN/UNProtocol.hh
index 5314196e4750bcf025656861a286f5a6f794a9b5..ccf1ddc1a1f2f36717bd8c92299b1defd2ae9008 100644
--- a/Socket/Protocols/UN/UNProtocol.hh
+++ b/Socket/Protocols/UN/UNProtocol.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/UN/UNProtocol.test.cc b/Socket/Protocols/UN/UNProtocol.test.cc
index 8623e5373a188de21cba4acf4d94b1551bdd4d47..dacb3c763453312cc73bdc90900903a07a6010be 100644
--- a/Socket/Protocols/UN/UNProtocol.test.cc
+++ b/Socket/Protocols/UN/UNProtocol.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     David Wagner <dw6@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Protocols/UN/main.test.cc b/Socket/Protocols/UN/main.test.cc
index 33d6da679b020c23701d466367ab6d1573283e61..39abb0d46a35620fe7d03270401b3f6c2d8a884b 100644
--- a/Socket/Protocols/UN/main.test.cc
+++ b/Socket/Protocols/UN/main.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/ReadWritePolicy.cc b/Socket/ReadWritePolicy.cc
index 4b1eed8cd707c6d4881a3a377b1dbf62ddd04174..6be00b6884c6aa988e55cfbb631d8afb0f99e2b8 100644
--- a/Socket/ReadWritePolicy.cc
+++ b/Socket/ReadWritePolicy.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/ReadWritePolicy.cti b/Socket/ReadWritePolicy.cti
index 4f71d4a50e41bb93a8b18ed75614438d2f4638a4..3ff26063d629195ed204a578dad7e5638de0a91d 100644
--- a/Socket/ReadWritePolicy.cti
+++ b/Socket/ReadWritePolicy.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/ReadWritePolicy.hh b/Socket/ReadWritePolicy.hh
index c324e679670d4e0c60ceca6225ad4a2b4e810f70..4ddff6727802169cf1b9677f907b8df56896d7fb 100644
--- a/Socket/ReadWritePolicy.hh
+++ b/Socket/ReadWritePolicy.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/ServerSocketHandle.cti b/Socket/ServerSocketHandle.cti
index 29e1541e213a49703372c214521c49b9d971ebd1..3d91c90b1a50392a86cc945c612153280cb831ea 100644
--- a/Socket/ServerSocketHandle.cti
+++ b/Socket/ServerSocketHandle.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/ServerSocketHandle.hh b/Socket/ServerSocketHandle.hh
index a123698cb9646a87b348e2b30727e5410347a055..837b454390852c2f91a9e6ec1c8ce6722ff30a8b 100644
--- a/Socket/ServerSocketHandle.hh
+++ b/Socket/ServerSocketHandle.hh
@@ -1,8 +1,8 @@
 // $Id:ServerSocketHandle.hh 218 2007-03-20 14:39:32Z tho $
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/ServerSocketHandle.test.cc b/Socket/ServerSocketHandle.test.cc
index 0d9ba42c8f25de8a255522d8f0dce586c72107ec..fbe85ae2b75d0a2e3bb5f193496b2d31f4fb691f 100644
--- a/Socket/ServerSocketHandle.test.cc
+++ b/Socket/ServerSocketHandle.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/Socket.hh b/Socket/Socket.hh
index 580332dc4e4dcc127d3fabeea15fa6a36758d0e1..45f88d64702d455dfe96b2d294189e3d79fb3c6c 100644
--- a/Socket/Socket.hh
+++ b/Socket/Socket.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/SocketHandle.cc b/Socket/SocketHandle.cc
index afd1d89d9e8f7e81d3fb22637077d0abb5737812..14fd6b275cb970db8fc52e564aa7b5798d133101 100644
--- a/Socket/SocketHandle.cc
+++ b/Socket/SocketHandle.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/SocketHandle.cci b/Socket/SocketHandle.cci
index 896d13af0274659928e2a31503e16fd9ecc76c94..38bd8fcab7803a531c63e794658f86bcf31f41d5 100644
--- a/Socket/SocketHandle.cci
+++ b/Socket/SocketHandle.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/SocketHandle.ct b/Socket/SocketHandle.ct
index 98ce1009bdfb0aedbbbd09f8a016c26015d1751a..7e66f3125d309c1c5f08601bf4f05d77789707d8 100644
--- a/Socket/SocketHandle.ct
+++ b/Socket/SocketHandle.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/SocketHandle.cti b/Socket/SocketHandle.cti
index f059c56680449368e9eb6c31822ca058421eec11..456a7b15c729ad5bf87a006fb606c08df334ec85 100644
--- a/Socket/SocketHandle.cti
+++ b/Socket/SocketHandle.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/SocketHandle.hh b/Socket/SocketHandle.hh
index 7b64f531373ee60b71372c875aa5d5e218d9454a..68cce0225c0f6d5a253e3aa654b55abcb10f3588 100644
--- a/Socket/SocketHandle.hh
+++ b/Socket/SocketHandle.hh
@@ -1,8 +1,8 @@
 // $Id:SocketHandle.hh 218 2007-03-20 14:39:32Z tho $
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/SocketHandle.ih b/Socket/SocketHandle.ih
index 43edd145712a11eb948dd57cf9cccbbafd4662c8..b113145fb4fe1c51aa1e41455bfdb0497087f3a0 100644
--- a/Socket/SocketHandle.ih
+++ b/Socket/SocketHandle.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/SocketHandle.test.cc b/Socket/SocketHandle.test.cc
index 9312676bffa8364485b5d701f1ac0149a31949a9..e377f0bc4dce28eced4c149cc7b01e735741dfcc 100644
--- a/Socket/SocketHandle.test.cc
+++ b/Socket/SocketHandle.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/SocketPolicy.ct b/Socket/SocketPolicy.ct
index 533ce64cd5285f33a3dc371e20a25b0a5bc47f91..de3f111db1cb1d140cdcc0b4146a861bb2ceaf9e 100644
--- a/Socket/SocketPolicy.ct
+++ b/Socket/SocketPolicy.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/SocketPolicy.hh b/Socket/SocketPolicy.hh
index fbb298048a282998a56e6dabd0e58714b585603f..440a9cf404a36295403f2a86fa569603631d595a 100644
--- a/Socket/SocketPolicy.hh
+++ b/Socket/SocketPolicy.hh
@@ -1,8 +1,8 @@
 // $Id:SocketPolicy.hh 218 2007-03-20 14:39:32Z tho $
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/SocketPolicy.ih b/Socket/SocketPolicy.ih
index 1d51ba34b8b1876c6a74fa30f42753d551353dd2..f52a46c796cd0c93875418f895ce48e16b0e76c8 100644
--- a/Socket/SocketPolicy.ih
+++ b/Socket/SocketPolicy.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/SocketPolicy.test.cc b/Socket/SocketPolicy.test.cc
index 2bcb149f78f65d5b12ef2423f3396add4e7277ec..7063cccd9465a2c954f3608e7c845b5f5ade0b70 100644
--- a/Socket/SocketPolicy.test.cc
+++ b/Socket/SocketPolicy.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/SocketPolicy.test.hh b/Socket/SocketPolicy.test.hh
index 4740f6e0b744173c75bddc1ac735bcb665151811..d921a47cf31f4fb0fdb8106d69f2ec6d7b1fe38f 100644
--- a/Socket/SocketPolicy.test.hh
+++ b/Socket/SocketPolicy.test.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/SocketProtocol.cc b/Socket/SocketProtocol.cc
index 4c78a9f68b4fabe4d844acd0c777234a707f289a..e252603c14f15e47ea76323d905121b8117396f9 100644
--- a/Socket/SocketProtocol.cc
+++ b/Socket/SocketProtocol.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/SocketProtocol.cci b/Socket/SocketProtocol.cci
index 04be16c20dd9cf98ac1a0c3f9a2bedb322601c18..47f7a685ccd2d6de195648b58a3c95dac4f1dabf 100644
--- a/Socket/SocketProtocol.cci
+++ b/Socket/SocketProtocol.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/SocketProtocol.cti b/Socket/SocketProtocol.cti
index 8ec8b77af79d8d303e82b5f65801869d2bc9b513..306387238b3f04389c617223f7a4a13b37e21d9a 100644
--- a/Socket/SocketProtocol.cti
+++ b/Socket/SocketProtocol.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/SocketProtocol.hh b/Socket/SocketProtocol.hh
index 52f8195b1a8375eba38de6f49811a3229d33e371..db71a83e8fbe4314a6bddaeaba2c1464db3c48e4 100644
--- a/Socket/SocketProtocol.hh
+++ b/Socket/SocketProtocol.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/SocketProtocol.test.cc b/Socket/SocketProtocol.test.cc
index 217d2886dd2fbfd6ea97b20ce259bc9f01ff4e70..a3ba523a801f1a3e192d4139d66fc44e169f5a36 100644
--- a/Socket/SocketProtocol.test.cc
+++ b/Socket/SocketProtocol.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/SocketProtocol.test.hh b/Socket/SocketProtocol.test.hh
index f1459fe3ebea8603cea5eb7eb7fd35a2f888e65d..3ca682abf7c8a8b1a25ffa1e096846e61789bcdc 100644
--- a/Socket/SocketProtocol.test.hh
+++ b/Socket/SocketProtocol.test.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Socket/main.test.cc b/Socket/main.test.cc
index 34e220b7d09cef35375ce24ce524c0aa88186c35..b6d1686f7ac632b48c93e3ea3e1b5d81a18b3d14 100644
--- a/Socket/main.test.cc
+++ b/Socket/main.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Buffer.hh b/Utils/Buffer.hh
index 87671cd6dac0ea6ae436e2599d62a7d9ba396d8e..c5e92bfdbf78e1ffb2ff0d9701c63ebe057ed3c5 100644
--- a/Utils/Buffer.hh
+++ b/Utils/Buffer.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Buffer.test.cc b/Utils/Buffer.test.cc
index 952ebf08712140c685f297423a0b5f51c50ad997..d796d7405927f4fc0bc20d505bf9efdbbadb82a5 100644
--- a/Utils/Buffer.test.cc
+++ b/Utils/Buffer.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Daemon.hh b/Utils/Daemon.hh
index 3d8f8e61514ad44e9941fc3bdab57543352e6e28..4bd63b02b543d97912f34dec27aa4e78caec7545 100644
--- a/Utils/Daemon.hh
+++ b/Utils/Daemon.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Daemon/Daemon.cc b/Utils/Daemon/Daemon.cc
index 88b79a17531de198b5f30777c6d99c6abb392845..58b880f42050a565816d7659e8df31382510b441 100644
--- a/Utils/Daemon/Daemon.cc
+++ b/Utils/Daemon/Daemon.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Daemon/Daemon.hh b/Utils/Daemon/Daemon.hh
index 1683f451e479ae64b0273682d1f23517b5f0c4b0..4f75e1c104d986cdb7ae5830453f01cbcd3b6492 100644
--- a/Utils/Daemon/Daemon.hh
+++ b/Utils/Daemon/Daemon.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Daemon/Daemon.ih b/Utils/Daemon/Daemon.ih
index 5cfa158b8f2e87c32610967e0d81f37edf46b7b5..96b375c0d81ec0f0aca46a8eb32f232fcd6f9bba 100644
--- a/Utils/Daemon/Daemon.ih
+++ b/Utils/Daemon/Daemon.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Daemon/Daemon.test.cc b/Utils/Daemon/Daemon.test.cc
index ad001425b965e20b512cdecdb2df5f7af1963b6c..1a5990ba140f33a8059140b95f4a225893237b1f 100644
--- a/Utils/Daemon/Daemon.test.cc
+++ b/Utils/Daemon/Daemon.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Daemon/Mainpage.dox b/Utils/Daemon/Mainpage.dox
index f650e671deb331356d19bbbe09e6e481a44187a3..7cb274f9c5affe9f5793fd60c83c0b71d189e24c 100644
--- a/Utils/Daemon/Mainpage.dox
+++ b/Utils/Daemon/Mainpage.dox
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Daemon/main.test.cc b/Utils/Daemon/main.test.cc
index ae95dcea1698ff206dccce4bbaf7fdbdc62a7c07..c6b4f24956acb04c15857b01986b8c22e53f0af7 100644
--- a/Utils/Daemon/main.test.cc
+++ b/Utils/Daemon/main.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Exception.cc b/Utils/Exception.cc
index 8b2f2802c6e88020f79a9469ffa284fd0516b9e3..06d531c0269a69d93f96e8a53abace26d408b9e7 100644
--- a/Utils/Exception.cc
+++ b/Utils/Exception.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Exception.cti b/Utils/Exception.cti
index 65723fa7f4e6497009264282541cdfd1b0fb71d1..88aaca89b4fed82bc1dfcbace7e555b97ca9376d 100644
--- a/Utils/Exception.cti
+++ b/Utils/Exception.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Exception.hh b/Utils/Exception.hh
index 787a4998daea9dadbce588d590fa93d06244fcdb..9cf7c8ad27237559c211c65554dd5e4c27fe019e 100644
--- a/Utils/Exception.hh
+++ b/Utils/Exception.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Exception.test.cc b/Utils/Exception.test.cc
index a76073824f8c40b21a0c55907fb545171ddb01df..686919a1ad145021e0c1bf61386b9ec3349c9605 100644
--- a/Utils/Exception.test.cc
+++ b/Utils/Exception.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/IpChecksum.cci b/Utils/IpChecksum.cci
index f73bcf57e72cc0374e1148ab8538eae45b1f29a3..dd6611ad6769a013cd1243d3eac823dd63348d0e 100644
--- a/Utils/IpChecksum.cci
+++ b/Utils/IpChecksum.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/IpChecksum.cti b/Utils/IpChecksum.cti
index 2b1bf02f4e01620795d83fe62370e6e7eba4ea1b..782bd6086a41f512c6d48cedb40f09e0d74839e0 100644
--- a/Utils/IpChecksum.cti
+++ b/Utils/IpChecksum.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/IpChecksum.hh b/Utils/IpChecksum.hh
index b10cbee47c2b882971078439b02d5cdf77d72d12..fa0fcf1d5d4d538254230f34e047cedba887560d 100644
--- a/Utils/IpChecksum.hh
+++ b/Utils/IpChecksum.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/IpChecksum.test.cc b/Utils/IpChecksum.test.cc
index 6c79810983036b900009e2527b5b3ec156e10f5a..3dada0882bcd56a985259b8f0d08c5141876c005 100644
--- a/Utils/IpChecksum.test.cc
+++ b/Utils/IpChecksum.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/IteratorTraits.cti b/Utils/IteratorTraits.cti
index a4223c3350b661fd638b354aa88e287726ccd42c..36ac1084401f71f5e60fd9ccad08de3186674f09 100644
--- a/Utils/IteratorTraits.cti
+++ b/Utils/IteratorTraits.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/IteratorTraits.hh b/Utils/IteratorTraits.hh
index 6d655abf068de445360c901969892b9c51b87d2e..3d9d623780584d826a9d0db3381db582e168f954 100644
--- a/Utils/IteratorTraits.hh
+++ b/Utils/IteratorTraits.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/IteratorTraits.ih b/Utils/IteratorTraits.ih
index f277082171aada65109d3ccf9980708f6e1a8a6d..5ed4533cd9b77f6f9bd1db3b14cf9e8ccc676b1e 100644
--- a/Utils/IteratorTraits.ih
+++ b/Utils/IteratorTraits.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/IteratorTraits.test.cc b/Utils/IteratorTraits.test.cc
index 04b8655206286d8443d42d4df3ce5c0be68093d1..4a830d6c1a5447f1f1b368e8ee0f53f1348b6984 100644
--- a/Utils/IteratorTraits.test.cc
+++ b/Utils/IteratorTraits.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger.hh b/Utils/Logger.hh
index 3f93feeb74ee8144e82399809496263caa640c1b..c9e6c53b1bdc23f6663c9028d5ef573cc756380f 100644
--- a/Utils/Logger.hh
+++ b/Utils/Logger.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/AreaRegistry.cc b/Utils/Logger/AreaRegistry.cc
index 092101a45be767ef79b19a5039fe673972f8f08f..ed385504f1377b71872fa5fc5add28953a648fce 100644
--- a/Utils/Logger/AreaRegistry.cc
+++ b/Utils/Logger/AreaRegistry.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/AreaRegistry.cci b/Utils/Logger/AreaRegistry.cci
index 5792d55c9b4528bc5bd427c604670f959a708969..76e6e516d83a93f804a2a843fac21bddc2c29497 100644
--- a/Utils/Logger/AreaRegistry.cci
+++ b/Utils/Logger/AreaRegistry.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/AreaRegistry.hh b/Utils/Logger/AreaRegistry.hh
index 178f53197e8d19dcd93cac509965397ffbf20ac0..1ab88e601a2213db374d323fff4668a193fb7232 100644
--- a/Utils/Logger/AreaRegistry.hh
+++ b/Utils/Logger/AreaRegistry.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/AreaRegistry.ih b/Utils/Logger/AreaRegistry.ih
index 48b9a56e8b59db1a31131c97276b948e8426bfa6..41ca82bed16e763c4b7eab28c034647098437d49 100644
--- a/Utils/Logger/AreaRegistry.ih
+++ b/Utils/Logger/AreaRegistry.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/AreaRegistry.test.cc b/Utils/Logger/AreaRegistry.test.cc
index 49ffcb2c0dd9c77546a857a1b10f091aad7b7a44..ee638cfe31ed8c62f228d20c2aee786b76e5a3a4 100644
--- a/Utils/Logger/AreaRegistry.test.cc
+++ b/Utils/Logger/AreaRegistry.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Config.hh b/Utils/Logger/Config.hh
index 6c1ae63b65525818a17931910b423de26b9e2af2..ac51c7ae8d42b3bd6d71f4dd0373047713a5cfdc 100644
--- a/Utils/Logger/Config.hh
+++ b/Utils/Logger/Config.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Config.ih b/Utils/Logger/Config.ih
index 0cf9311a9a2ca88c8b37b00df35957811ec9bed8..6c6d5ac7f4a588881bcfb5d4036846d2d76f3dbe 100644
--- a/Utils/Logger/Config.ih
+++ b/Utils/Logger/Config.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Config.test.cc b/Utils/Logger/Config.test.cc
index 3b5ee6a9fd74a586b416e640d393d9e4755f3518..0e7f3cdbe3e9438013b2440534d540db9faa4fcc 100644
--- a/Utils/Logger/Config.test.cc
+++ b/Utils/Logger/Config.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/ConsoleTarget.cci b/Utils/Logger/ConsoleTarget.cci
index 3ca4cce74c00135e57e313068d167356967fceba..d1ff8e52554fa8455dc5bf5bd13000a21ecea6e1 100644
--- a/Utils/Logger/ConsoleTarget.cci
+++ b/Utils/Logger/ConsoleTarget.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/ConsoleTarget.hh b/Utils/Logger/ConsoleTarget.hh
index 5aa84279798432537d7bd6e9d42f33a4a517a2d5..4b7da17fbe66589ec151f7b8808bb060fc1eaef6 100644
--- a/Utils/Logger/ConsoleTarget.hh
+++ b/Utils/Logger/ConsoleTarget.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Definitions.hh b/Utils/Logger/Definitions.hh
index 24c32f7d87ac0dec41f312c6bd7cedd83145fd53..f37fc49c42e903bc28bd92dc20777d942fb4c88b 100644
--- a/Utils/Logger/Definitions.hh
+++ b/Utils/Logger/Definitions.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Definitions.ih b/Utils/Logger/Definitions.ih
index fe575470f7f5f47cc4e2fbbb93f4d0c0921c5fa0..0c88f6e261e468136b8627315e77f5444911a4f9 100644
--- a/Utils/Logger/Definitions.ih
+++ b/Utils/Logger/Definitions.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/FileTarget.cc b/Utils/Logger/FileTarget.cc
index 88c91d643c32bfaea5fd7e5158bf481a10497916..04675739602e84f4cc558c7c890ac345d970fe1b 100644
--- a/Utils/Logger/FileTarget.cc
+++ b/Utils/Logger/FileTarget.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/FileTarget.hh b/Utils/Logger/FileTarget.hh
index 45f1bd0eca3a609d698470342fba00f2f63868a2..cd5c71a126eb6103736f7f9fbac2bec4ac4f1dda 100644
--- a/Utils/Logger/FileTarget.hh
+++ b/Utils/Logger/FileTarget.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/IOStreamTarget.cc b/Utils/Logger/IOStreamTarget.cc
index fd1260c422f97d04f1ddd7320785a92fa5f7fd06..0de7da37131d868a96a7288c8dfbedd3f5c4e5f1 100644
--- a/Utils/Logger/IOStreamTarget.cc
+++ b/Utils/Logger/IOStreamTarget.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/IOStreamTarget.hh b/Utils/Logger/IOStreamTarget.hh
index 94e1258ffc305e371007da5c38a89b924cd4978d..84e66fc5047ca77dd67e9c403a721164ab576a7a 100644
--- a/Utils/Logger/IOStreamTarget.hh
+++ b/Utils/Logger/IOStreamTarget.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Levels.hh b/Utils/Logger/Levels.hh
index e3bd8695e8a1a4797fbe2d473f0ef15171f1f2ef..bb6ce50f275f182a980cdacbe48857cfa32d41cd 100644
--- a/Utils/Logger/Levels.hh
+++ b/Utils/Logger/Levels.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Levels.ih b/Utils/Logger/Levels.ih
index 8e2f6a358198c29ea358709f71875ff9491b9287..1557db7257b8d2bfb8fe972ea9a923862b1e973f 100644
--- a/Utils/Logger/Levels.ih
+++ b/Utils/Logger/Levels.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Log.hh b/Utils/Logger/Log.hh
index 8ddcc7167cdf62c50671496c676254a9234d9213..1fa69279ed3083fb33c860f133e855614b2d2b53 100644
--- a/Utils/Logger/Log.hh
+++ b/Utils/Logger/Log.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Log.ih b/Utils/Logger/Log.ih
index 6c91fc1ac457600ae11156cae47ec60d78c3e06a..4abdad951997a9ae66a73bc20e4f8a3df85dfb76 100644
--- a/Utils/Logger/Log.ih
+++ b/Utils/Logger/Log.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Log.test.cc b/Utils/Logger/Log.test.cc
index 0c730ae0d05931548062b3571c0bc47b03e48ea5..593654462f2233d8ff0d35eeb44c3d14a5824d68 100644
--- a/Utils/Logger/Log.test.cc
+++ b/Utils/Logger/Log.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Logger.hh b/Utils/Logger/Logger.hh
index 1ab13723f31a01c6f17de82ee86358f0bf8f5bdc..123b2ee27d3326c167156d29fb680b3a8aba591b 100644
--- a/Utils/Logger/Logger.hh
+++ b/Utils/Logger/Logger.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Mainpage.dox b/Utils/Logger/Mainpage.dox
index fb3af93567e33209def70b84e614d4b3733f7d13..cfb1d758fe37cf1b0e0d44e44370d40bb6e87d6f 100644
--- a/Utils/Logger/Mainpage.dox
+++ b/Utils/Logger/Mainpage.dox
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Parameters.hh b/Utils/Logger/Parameters.hh
index 04ceec6a5c856981164a6f02f92ceb17bbab34e7..6d8fbed4a39616852162a4f1587e82e9d4b4d0b0 100644
--- a/Utils/Logger/Parameters.hh
+++ b/Utils/Logger/Parameters.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Parameters.ih b/Utils/Logger/Parameters.ih
index 5927a8999180138b977e7e8be631b401d64fd170..7e21072abf431a4fff8464274b658773f4865227 100644
--- a/Utils/Logger/Parameters.ih
+++ b/Utils/Logger/Parameters.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Parameters.test.cc b/Utils/Logger/Parameters.test.cc
index 45fe5b8cbec40c87bd40b0d7076efb4ea7523c80..4479744fe441e70ad8f2a0bfedcd7cf431919d05 100644
--- a/Utils/Logger/Parameters.test.cc
+++ b/Utils/Logger/Parameters.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/SenfLog.hh b/Utils/Logger/SenfLog.hh
index a6f59feb5e08a7ebb69edc5e38dd7027743d6c38..11b839ac5cda405e72f7b95e18f4d0e2b26a7979 100644
--- a/Utils/Logger/SenfLog.hh
+++ b/Utils/Logger/SenfLog.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/StreamRegistry.cc b/Utils/Logger/StreamRegistry.cc
index e1f85fd2ffa12f2bf1d8b3e7c5fa3da20bf7efaa..c752b93a72f46a4c5ab9942fec05eaae66aa543e 100644
--- a/Utils/Logger/StreamRegistry.cc
+++ b/Utils/Logger/StreamRegistry.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/StreamRegistry.cci b/Utils/Logger/StreamRegistry.cci
index 02557ff155926450d602d872091afe14e995b983..02f01511bfdcedba67c1f58ea78ba61f6489e9e4 100644
--- a/Utils/Logger/StreamRegistry.cci
+++ b/Utils/Logger/StreamRegistry.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/StreamRegistry.hh b/Utils/Logger/StreamRegistry.hh
index f6e87b7f42c2a9a65c4df262743ebeb50a806bca..63ba124dbc768adfec7098648719991a027e085e 100644
--- a/Utils/Logger/StreamRegistry.hh
+++ b/Utils/Logger/StreamRegistry.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/StreamRegistry.ih b/Utils/Logger/StreamRegistry.ih
index afb44c74883e4e9822937c8110fbdbf397a765d7..c1bf5619ab96e594140854042155f6b227093a18 100644
--- a/Utils/Logger/StreamRegistry.ih
+++ b/Utils/Logger/StreamRegistry.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/StreamRegistry.test.cc b/Utils/Logger/StreamRegistry.test.cc
index c53bf3a4c6ee0a9d5f6bdc82558142d476fafc29..6323ed2d0dbdfbc0ae88a4820fe7d457bbecc894 100644
--- a/Utils/Logger/StreamRegistry.test.cc
+++ b/Utils/Logger/StreamRegistry.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/StringTarget.cti b/Utils/Logger/StringTarget.cti
index ae690d2d27e3eec6fc09a76f085db2a4b8b46bfe..11572060bf8abcec5704945369074077b076c8d1 100644
--- a/Utils/Logger/StringTarget.cti
+++ b/Utils/Logger/StringTarget.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/StringTarget.hh b/Utils/Logger/StringTarget.hh
index c9591de5fcb9765de402e3c4908b6a094f7f640d..ed16520660a4f47a9920eaad592234127a47b12b 100644
--- a/Utils/Logger/StringTarget.hh
+++ b/Utils/Logger/StringTarget.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Target.cc b/Utils/Logger/Target.cc
index aee4d6e802ac9299a248de2eef350d6e8c6de379..f1dd507268a995b4d4e99e9ff0bc75eced0fd864 100644
--- a/Utils/Logger/Target.cc
+++ b/Utils/Logger/Target.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Target.cci b/Utils/Logger/Target.cci
index e6f2d246ab9267f504d7c6210f13912eb0ed8ba3..608d7e1da25c0b3e4af2411e4104d184286b6d13 100644
--- a/Utils/Logger/Target.cci
+++ b/Utils/Logger/Target.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Target.cti b/Utils/Logger/Target.cti
index b32de460ce5e725f7879bef0ce7a6c971a1dba20..8718906e5e7fa25d5fac80ec1fe57051bcb1aa7b 100644
--- a/Utils/Logger/Target.cti
+++ b/Utils/Logger/Target.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Target.hh b/Utils/Logger/Target.hh
index d8ed8d18b68e7a1ea3be8b76b5428f14635acc95..bac116b25bf6fd37fac09e208980b49b4896ea6c 100644
--- a/Utils/Logger/Target.hh
+++ b/Utils/Logger/Target.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Target.ih b/Utils/Logger/Target.ih
index ed208de95c61cd091ed86800f061850a8e5ea9bd..b0b61d984163aef5adb5308d6cb81431d6f866c5 100644
--- a/Utils/Logger/Target.ih
+++ b/Utils/Logger/Target.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/Target.test.cc b/Utils/Logger/Target.test.cc
index 2a5648ebff4329134291403c345bcb592e6ee2ff..c896c266161e78e113c117cb361f2b310daad9cb 100644
--- a/Utils/Logger/Target.test.cc
+++ b/Utils/Logger/Target.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/main.test.cc b/Utils/Logger/main.test.cc
index ae95dcea1698ff206dccce4bbaf7fdbdc62a7c07..c6b4f24956acb04c15857b01986b8c22e53f0af7 100644
--- a/Utils/Logger/main.test.cc
+++ b/Utils/Logger/main.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Logger/main.test.hh b/Utils/Logger/main.test.hh
index 5a56c0f6fa7fc6a905c6f4ee1148a30d4dd70da7..63a1a73bf9713c5f1ab40a7e4b6a9d7810c71f49 100644
--- a/Utils/Logger/main.test.hh
+++ b/Utils/Logger/main.test.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Mainpage.dox b/Utils/Mainpage.dox
index e5639af6e592cf832446357c7bb9cf2a49dff449..49664cf5221ff6c551ed41afba8ab3e06e685954 100644
--- a/Utils/Mainpage.dox
+++ b/Utils/Mainpage.dox
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/Tags.hh b/Utils/Tags.hh
index d53467295774c57961a1174e0d3f5506fea9f2e2..7f3c2b8e2eb4eefa6ef054308f442abd466258a7 100644
--- a/Utils/Tags.hh
+++ b/Utils/Tags.hh
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
diff --git a/Utils/Tags.test.cc b/Utils/Tags.test.cc
index c58dad5f370323170b104b5d338a2ce4948c57ed..685917bb11e62e9a3049742169a4d7d8d2e82199 100644
--- a/Utils/Tags.test.cc
+++ b/Utils/Tags.test.cc
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
diff --git a/Utils/TypeIdValue.cci b/Utils/TypeIdValue.cci
index 4b6044e0ae9c79b3b4692071a00e4d0777582078..e73ffd0f8961d4e92fb92836e6de24797999af22 100644
--- a/Utils/TypeIdValue.cci
+++ b/Utils/TypeIdValue.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/TypeIdValue.cti b/Utils/TypeIdValue.cti
index b725458fb7afcf1cf5088692481964aaa2fc425a..ade0402252874ee0f2ff6104c27ae283bac27ea0 100644
--- a/Utils/TypeIdValue.cti
+++ b/Utils/TypeIdValue.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/TypeIdValue.hh b/Utils/TypeIdValue.hh
index a805a1bdc8db9071132e7382c5cf22f4aeee79a8..4a5ba0ff760ebcc929c4c509aa105a7952ed4ba7 100644
--- a/Utils/TypeIdValue.hh
+++ b/Utils/TypeIdValue.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/TypeIdValue.test.cc b/Utils/TypeIdValue.test.cc
index 672cf2017b9d0e1860787f6d50e13256dc6813d4..678ace39d06964bd84953b1184bc11aca950d19b 100644
--- a/Utils/TypeIdValue.test.cc
+++ b/Utils/TypeIdValue.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/TypeInfo.cc b/Utils/TypeInfo.cc
index 98b39f52bd96e029776d3113d21c5d655b6d620e..0effd193911007b67ec63d92fe9dec1751d40371 100644
--- a/Utils/TypeInfo.cc
+++ b/Utils/TypeInfo.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/TypeInfo.hh b/Utils/TypeInfo.hh
index 0ef67013ed4c995afcf4ba66f68ed9587433a215..724435124e4905d02489497a975ee88b01ee51f4 100644
--- a/Utils/TypeInfo.hh
+++ b/Utils/TypeInfo.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/TypeInfo.test.cc b/Utils/TypeInfo.test.cc
index fc973558f90909f86589999aec681fd7fd8bfa6e..b7a15dab1b250c516a4b0538f35bbf92cb56b118 100644
--- a/Utils/TypeInfo.test.cc
+++ b/Utils/TypeInfo.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/auto_unit_test.hh b/Utils/auto_unit_test.hh
index 81a514f36542e4eb48a924d791d2cbda799730c9..7e838a23714579661e3e1a24326e7ae8c1a85d10 100644
--- a/Utils/auto_unit_test.hh
+++ b/Utils/auto_unit_test.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/hexdump.ct b/Utils/hexdump.ct
index b9a6fb547cca44434c2a77c9dc3983172a5f9a26..513b1a45ca0f5cbce7023ebc6176d680e3108f66 100644
--- a/Utils/hexdump.ct
+++ b/Utils/hexdump.ct
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/hexdump.hh b/Utils/hexdump.hh
index 3b7825bcb214a5b8eb64c69204a4722717070d84..9dc94580790a4a52886a66ac0125a8d279e59974 100644
--- a/Utils/hexdump.hh
+++ b/Utils/hexdump.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/hexdump.test.cc b/Utils/hexdump.test.cc
index 98d63b39f839e6f76b5930b00fafe890b62f2925..7e71797a15ef6fcfe7d40fe08de9b80df159d2b4 100644
--- a/Utils/hexdump.test.cc
+++ b/Utils/hexdump.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/impl/membind.hh b/Utils/impl/membind.hh
index 8e103628847a335698d0ecf58a0bbe4db5483c7a..fcf3eaf13001149721d6935a7f33e596fc48d3a8 100644
--- a/Utils/impl/membind.hh
+++ b/Utils/impl/membind.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/intrusive_refcount.cci b/Utils/intrusive_refcount.cci
index c128363ad666f9cc9ce531ded210d89772a7018f..80f56dd200c89de1fccb6d057164b02a96440f1f 100644
--- a/Utils/intrusive_refcount.cci
+++ b/Utils/intrusive_refcount.cci
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/intrusive_refcount.cti b/Utils/intrusive_refcount.cti
index 36da4c948f9a63f1dc127d00f809eaac305f2967..a8ba41e16c3547ebfd705fe75930b520785c12e2 100644
--- a/Utils/intrusive_refcount.cti
+++ b/Utils/intrusive_refcount.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/intrusive_refcount.hh b/Utils/intrusive_refcount.hh
index 16b45f2fc2197a2fb6acd1b3a49fe3fa924dc8a6..8ce578571c7ac6d1f1df12c0fff55150536cde4f 100644
--- a/Utils/intrusive_refcount.hh
+++ b/Utils/intrusive_refcount.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/intrusive_refcount.test.cc b/Utils/intrusive_refcount.test.cc
index b89396a2e8c81a5b3ccc9a34c9e0ba80a8b5e8f4..212073b76fd09d4e5100622f2e7790b911f26fb5 100644
--- a/Utils/intrusive_refcount.test.cc
+++ b/Utils/intrusive_refcount.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/main.test.cc b/Utils/main.test.cc
index 34e220b7d09cef35375ce24ce524c0aa88186c35..b6d1686f7ac632b48c93e3ea3e1b5d81a18b3d14 100644
--- a/Utils/main.test.cc
+++ b/Utils/main.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/membind.hh b/Utils/membind.hh
index 99318086886e2d9411cf9eca61ad40856b481c2d..6b06ed35b75d7dc9549da70fdd5c07528e08c7f4 100644
--- a/Utils/membind.hh
+++ b/Utils/membind.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/membind.test.cc b/Utils/membind.test.cc
index 6c57f6c7666c4c7d75275ee106745fb3f806d0d8..6b3bec8f3a0ee690fdfd53e1870eed92748221fa 100644
--- a/Utils/membind.test.cc
+++ b/Utils/membind.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/mpl.hh b/Utils/mpl.hh
index eb7c73ec676989665cb6e2dc903c75172bf18bee..02cf225946f02174d8b368e1ccd6117e4118df70 100644
--- a/Utils/mpl.hh
+++ b/Utils/mpl.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/mpl.ih b/Utils/mpl.ih
index 8ad3caf343d43e6258844758a35461d3267e2549..d3de418720c01850af285fdda87077a85ea9a86e 100644
--- a/Utils/mpl.ih
+++ b/Utils/mpl.ih
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -119,7 +119,7 @@
     SENF_MPL_SLOT_I_CHECK(name, __LINE__>79?__LINE__-79:0,                                        \
     SENF_MPL_SLOT_I_CHECK(name, __LINE__>80?__LINE__-80:0,                                        \
         0 ))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))
-    
+
 
 ///////////////////////////////ih.e////////////////////////////////////////
 #endif
diff --git a/Utils/mpl.test.cc b/Utils/mpl.test.cc
index 8f75fc38084de550a414e56330ff8210ae111a20..41a33233bf1ee12eda640a5fc5b0927a77d860d5 100644
--- a/Utils/mpl.test.cc
+++ b/Utils/mpl.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -36,8 +36,8 @@
 ///////////////////////////////cc.p////////////////////////////////////////
 
 namespace {
-    
-    template <unsigned _> 
+
+    template <unsigned _>
     struct select {
         static bool const has_int_value = false;
         static bool const has_class_value = false;
@@ -62,7 +62,7 @@ namespace {
     template <class T>
     senf::mpl::rv<2> select_(int, senf::mpl::take_class<typename T::value> * = 0);
 
-    template <class T> 
+    template <class T>
     struct choice : public select<SENF_MPL_RV( select_<T>(0) )> {};
 
     struct A { static const int value = 0; };
@@ -70,7 +70,7 @@ namespace {
     struct C {};
 }
 
-BOOST_AUTO_UNIT_TEST(senfmpl) 
+BOOST_AUTO_UNIT_TEST(senfmpl)
 {
     BOOST_CHECK( choice<A>::has_int_value );
     BOOST_CHECK( ! choice<A>::has_class_value );
diff --git a/Utils/pool_alloc_mixin.cti b/Utils/pool_alloc_mixin.cti
index 2e78ad277a987db3ff1c2a192dffe5155f0dea75..6d66abc1f2847026c07b42517cd1d5eb49035673 100644
--- a/Utils/pool_alloc_mixin.cti
+++ b/Utils/pool_alloc_mixin.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/pool_alloc_mixin.hh b/Utils/pool_alloc_mixin.hh
index 3af419aadf9a9f1654a2131f3b8fa1c93d37b522..642e476fc0f5837b0e6193dadd0a2edceeec85e1 100644
--- a/Utils/pool_alloc_mixin.hh
+++ b/Utils/pool_alloc_mixin.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/pool_alloc_mixin.test.cc b/Utils/pool_alloc_mixin.test.cc
index 90e6f7de8bafb5ea4c22083eabaaf679dea3c259..5d130ed53a873a3713c5d80222bcd70efbc8d152 100644
--- a/Utils/pool_alloc_mixin.test.cc
+++ b/Utils/pool_alloc_mixin.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/preprocessor.hh b/Utils/preprocessor.hh
index 8e9ba496d3010eea006e68fdc5180d49b1731830..55a3fa82413d489a9189470d0cfc02e8fd2b3b8d 100644
--- a/Utils/preprocessor.hh
+++ b/Utils/preprocessor.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/preprocessor.test.cc b/Utils/preprocessor.test.cc
index 0acaea351abd6de200824eb59c6cd30b153208f1..c7a088c8666cec9265e37457923a829d646ae11a 100644
--- a/Utils/preprocessor.test.cc
+++ b/Utils/preprocessor.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/safe_bool.cci b/Utils/safe_bool.cci
index 40b5abc5e350955c5b98dc338ff9ef94a2e9c713..67034b6a3f23d88e7ab6469594b015d0ac805cd4 100644
--- a/Utils/safe_bool.cci
+++ b/Utils/safe_bool.cci
@@ -1,9 +1,9 @@
 
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/safe_bool.cti b/Utils/safe_bool.cti
index 1819ef70e11ed2ce25b8e1bcc867662c66bac034..4b71c4d633d6e178b4c7bf7fa07daff83b2f589f 100644
--- a/Utils/safe_bool.cti
+++ b/Utils/safe_bool.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/safe_bool.hh b/Utils/safe_bool.hh
index 126b2ad52b2e03270205a5a04f7833a88482c8e8..e8cff228a8ce86c0b25c9f2971f941ad60890fb2 100644
--- a/Utils/safe_bool.hh
+++ b/Utils/safe_bool.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/safe_bool.test.cc b/Utils/safe_bool.test.cc
index 5139ae8d28aa76ae6240483838464396e92fceb8..45d297079d190e033081f91c9d7a1f87d37d89a5 100644
--- a/Utils/safe_bool.test.cc
+++ b/Utils/safe_bool.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
diff --git a/Utils/senfassert.hh b/Utils/senfassert.hh
index 771081aa5e352cef8f2bf2858c078537c2c62469..7f488c836db737a7c656b0b1b6ca9ebbc63d3042 100644
--- a/Utils/senfassert.hh
+++ b/Utils/senfassert.hh
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
diff --git a/Utils/singleton.cti b/Utils/singleton.cti
index f549082908e8ec9d89cfb275075cbf46f430b2d4..d12446804771adff5c83bfd7711c4f08562de2df 100644
--- a/Utils/singleton.cti
+++ b/Utils/singleton.cti
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -35,7 +35,7 @@ prefix_ Self & senf::singleton<Self>::instance()
 {
     static Self instance_;
     // Force instantiation of force_creation (at static object creation time)
-    creator_.nop(); 
+    creator_.nop();
     return instance_;
 }
 
diff --git a/Utils/singleton.hh b/Utils/singleton.hh
index e4bdbb621935c3008c0f22f93378301515c16ff9..831e8125d108a5d02d6c8cbb376ee91217252eb8 100644
--- a/Utils/singleton.hh
+++ b/Utils/singleton.hh
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -55,15 +55,15 @@ namespace senf {
               : public senf::singleton<SomeClass>
           {
               // Must have default constructor
-              SomeClass(); 
-        
+              SomeClass();
+
               // Give singleton access to the constructor
               friend class senf::singleton<SomeClass>;
 
         public:
               // By default 'instance()' is protected. If you want, you may make it public:
               using senf::singleton<SomeClass>::instance;
-              
+
               // ...
           };
 
@@ -74,7 +74,7 @@ namespace senf {
               SomeClass::instance().doSomething();
           }
         \endcode
-        
+
         \warning The singleton class should \e not have any static data members since it cannot be
             guaranteed, that these members will be constructed before the singleton instance.
 
@@ -94,7 +94,7 @@ namespace senf {
         /** \brief Internal
             \internal
          */
-        struct force_creation 
+        struct force_creation
         {
             force_creation();
             void nop() const;
diff --git a/Utils/singleton.test.cc b/Utils/singleton.test.cc
index 39272955cc6e1219f8dc00939876f3165e22dbfb..2d1feddc021823484adc1864901a09d8b2ae564c 100644
--- a/Utils/singleton.test.cc
+++ b/Utils/singleton.test.cc
@@ -1,8 +1,8 @@
 // $Id$
 //
-// Copyright (C) 2007 
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Copyright (C) 2007
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -36,11 +36,11 @@
 ///////////////////////////////cc.p////////////////////////////////////////
 
 namespace {
-    
+
     class Test : public senf::singleton<Test>
     {
         friend class senf::singleton<Test>;
-        
+
         Test() : foo_(1234) {}
 
         int foo_;
diff --git a/_templates/Example.cc b/_templates/Example.cc
index fdd21500c58004a6c2e805bb0fdbcb992d9abe41..e9cae1e7147500f87084ee137723a1995c02eab0 100644
--- a/_templates/Example.cc
+++ b/_templates/Example.cc
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     @AUTHOR@
diff --git a/_templates/Example.cci b/_templates/Example.cci
index 0ebb6139edca1fcfda3e9528c705bdd750dea871..120096c8202a204ee6512845a68d4552d9eaa3c5 100644
--- a/_templates/Example.cci
+++ b/_templates/Example.cci
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     @AUTHOR@
diff --git a/_templates/Example.ct b/_templates/Example.ct
index 62a08d290f41a6130981ccbae5f22c3e7a1d4e31..9b0be42359287bc012e2318715f751cec81a4f80 100644
--- a/_templates/Example.ct
+++ b/_templates/Example.ct
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     @AUTHOR@
diff --git a/_templates/Example.cti b/_templates/Example.cti
index 63228646047c71928f713f8b115adbe2df1ded7d..41725d1f164589e27c737c961b29e0a7b3a20915 100644
--- a/_templates/Example.cti
+++ b/_templates/Example.cti
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     @AUTHOR@
diff --git a/_templates/Example.dox b/_templates/Example.dox
index 9e45153a2613feca693e7d1ece3f06f3ed84b99b..ed1116ac1300904106dda97d4ccf7da79bbd5a67 100644
--- a/_templates/Example.dox
+++ b/_templates/Example.dox
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     @AUTHOR@
@@ -22,7 +22,6 @@
 
 /** \mainpage
 
-    
  */
 
 
diff --git a/_templates/Example.hh b/_templates/Example.hh
index f97c2a90325bcf847837607f39a28ec6de71741d..a4acd0987858697e862ae7031801010166333d15 100644
--- a/_templates/Example.hh
+++ b/_templates/Example.hh
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     @AUTHOR@
diff --git a/_templates/Example.ih b/_templates/Example.ih
index 4782a9e718fa0b25870dcd97868fede126219f77..ed6b237a421033fb52bcd94b3756b5131f602224 100644
--- a/_templates/Example.ih
+++ b/_templates/Example.ih
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     @AUTHOR@
diff --git a/_templates/Example.mpp b/_templates/Example.mpp
index e4f7010531ad0c33631e6755990eec653d4d0527..a857577cb47a585a201672b0dab0826841a2e093 100644
--- a/_templates/Example.mpp
+++ b/_templates/Example.mpp
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     @AUTHOR@
diff --git a/_templates/Example.test.cc b/_templates/Example.test.cc
index 1544b6990ac9c596af37ed84f0ce5b5d733fe1cd..6656a6a6a2b440816f1de242ef8f34ec054a50cd 100644
--- a/_templates/Example.test.cc
+++ b/_templates/Example.test.cc
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     @AUTHOR@
diff --git a/config.hh b/config.hh
index 5b77078d6fd2a35e4e876c511fd32e14aa242136..42fb59572fa640f4a6fe07fbdb1910a4c791f61f 100644
--- a/config.hh
+++ b/config.hh
@@ -1,8 +1,8 @@
 # // $Id$
 # //
-# // Copyright (C) 2007 
-# // Fraunhofer Institute for Open Communication Systems (FOKUS) 
-# // Competence Center NETwork research (NET), St. Augustin, GERMANY 
+# // Copyright (C) 2007
+# // Fraunhofer Institute for Open Communication Systems (FOKUS)
+# // Competence Center NETwork research (NET), St. Augustin, GERMANY
 # //     Stefan Bund <g0dil@berlios.de>
 # //
 # // This program is free software; you can redistribute it and/or modify
diff --git a/senfscons/Mainpage.dox b/senfscons/Mainpage.dox
index 7a84c7c31f589a9af61eff48a5b6b21f61b28ecf..9b915dc75d01e6cc27369b92f1b1348b2445d060 100644
--- a/senfscons/Mainpage.dox
+++ b/senfscons/Mainpage.dox
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify