/** * @file ddt.h * @brief Derived data types * @note Copyright (C) 2011 Richard Cochran * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef HAVE_DDT_H #define HAVE_DDT_H #include "pdt.h" #define PACKED __attribute__((packed)) typedef Integer64 TimeInterval; /* nanoseconds << 16 */ /** On the wire time stamp format. */ struct Timestamp { uint16_t seconds_msb; /* 16 bits + */ uint32_t seconds_lsb; /* 32 bits = 48 bits*/ UInteger32 nanoseconds; } PACKED; /** Internal binary time stamp format. */ struct timestamp { uint64_t sec; UInteger32 nsec; }; struct ClockIdentity { Octet id[8]; }; struct PortIdentity { struct ClockIdentity clockIdentity; UInteger16 portNumber; } PACKED; struct PortAddress { Enumeration16 networkProtocol; UInteger16 addressLength; Octet *address; }; struct ClockQuality { UInteger8 clockClass; Enumeration8 clockAccuracy; UInteger16 offsetScaledLogVariance; } PACKED; struct TLV { Enumeration16 tlvType; UInteger16 length; /* must be even */ Octet *value; }; struct PTPText { UInteger8 length; Octet *text; }; struct FaultRecord { UInteger16 faultRecordLength; struct Timestamp faultTime; Enumeration8 severityCode; struct PTPText faultName; struct PTPText faultValue; struct PTPText faultDescription; }; #endif