00001 #ifndef __UDPMON_H__
00002 #define __UDPMON_H__
00003
00004
00005 #define UDPMON_MAGIC { 0xEF, 0x41, 0xc6, 0x35 }
00006
00007 struct __attribute__((__packed__)) udpmon_pkt
00008 {
00009 char magic[4];
00010 double sent;
00011 double echoed;
00012 int seqnum;
00013 char padding[4096];
00014 };
00015
00016 struct __attribute__((__packed__)) udpmon_pkt_old
00017 {
00018 double sent;
00019 double echoed;
00020 int seqnum;
00021 char padding[4096];
00022 };
00023
00024 #endif