Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: oldheating gps motorhome heating
udp/dns/dnshdr.h
- Committer:
- andrewboyson
- Date:
- 2019-04-10
- Revision:
- 140:9000ea70b220
- Parent:
- 61:aad055f1b0d1
File content as of revision 140:9000ea70b220:
#include <stdint.h>
#include <stdbool.h>
extern uint16_t DnsHdrId;
extern bool DnsHdrIsReply;
extern bool DnsHdrIsAuthoritative;
extern bool DnsHdrIsRecursiveQuery;
extern uint16_t DnsHdrQdcount;
extern uint16_t DnsHdrAncount;
extern uint16_t DnsHdrNscount;
extern uint16_t DnsHdrArcount;
extern char* DnsHdrPacket;
extern char* DnsHdrData;
extern int DnsHdrDataLength;
extern void DnsHdrSetup(void* pPacket, int lenPacket);
extern void DnsHdrRead (void);
extern void DnsHdrWrite(void);
extern void DnsHdrLog (int ipProtocol);