#include <boost/bind.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/date_time/posix_time/posix_time_types.hpp>
-
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_generators.hpp>
boost::uuids::random_generator random_gen;
boost::uuids::uuid random_tag = random_gen();
- BOOST_ASSERT(sizeof(Identifier) <= random_tag.size());
- memcpy(&Identifier, random_tag.data, sizeof(Identifier));
+ BOOST_ASSERT( sizeof(Identifier) <= random_tag.size() );
+ memcpy( &Identifier, random_tag.data, sizeof(Identifier) );
}
IcmpPinger::~IcmpPinger()