libmoost
/home/mhx/git/github/libmoost/include/moost/nagios/detail/nsca_init_packet.hpp
Go to the documentation of this file.
00001 /* vim:set ts=3 sw=3 sts=3 et: */
00028 // [ricky 7/13/2011 ] Mostly ripped from the nsca_send common.h file
00029 
00030 #ifndef MOOST_NAGIOS_NSCA_CLIENT_NSCA_INIT_PACKET_HPP__
00031 #define MOOST_NAGIOS_NSCA_CLIENT_NSCA_INIT_PACKET_HPP__
00032 
00033 #include "nsca_common.hpp"
00034 
00035 namespace moost { namespace nagios {
00036 
00037    struct nsca_init_packet // MUST be a POD
00038    {
00039       char iv[nsca_const::TRANSMITTED_IV_SIZE];
00040       boost::uint32_t timestamp;
00041    };
00042 
00043 }}
00044 
00045 #endif