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@140:9000ea70b220, 2019-04-10 (annotated)
- Committer:
- andrewboyson
- Date:
- Wed Apr 10 10:07:06 2019 +0000
- Revision:
- 140:9000ea70b220
- Parent:
- 61:aad055f1b0d1
Added ajax functions to AR4, AR6, NR4, NR6 modules
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| andrewboyson | 61:aad055f1b0d1 | 1 | #include <stdint.h> |
| andrewboyson | 61:aad055f1b0d1 | 2 | #include <stdbool.h> |
| andrewboyson | 13:9cd54f7db57a | 3 | |
| andrewboyson | 13:9cd54f7db57a | 4 | extern uint16_t DnsHdrId; |
| andrewboyson | 13:9cd54f7db57a | 5 | |
| andrewboyson | 13:9cd54f7db57a | 6 | extern bool DnsHdrIsReply; |
| andrewboyson | 13:9cd54f7db57a | 7 | extern bool DnsHdrIsAuthoritative; |
| andrewboyson | 13:9cd54f7db57a | 8 | extern bool DnsHdrIsRecursiveQuery; |
| andrewboyson | 13:9cd54f7db57a | 9 | |
| andrewboyson | 13:9cd54f7db57a | 10 | extern uint16_t DnsHdrQdcount; |
| andrewboyson | 13:9cd54f7db57a | 11 | extern uint16_t DnsHdrAncount; |
| andrewboyson | 13:9cd54f7db57a | 12 | extern uint16_t DnsHdrNscount; |
| andrewboyson | 13:9cd54f7db57a | 13 | extern uint16_t DnsHdrArcount; |
| andrewboyson | 13:9cd54f7db57a | 14 | |
| andrewboyson | 13:9cd54f7db57a | 15 | extern char* DnsHdrPacket; |
| andrewboyson | 13:9cd54f7db57a | 16 | extern char* DnsHdrData; |
| andrewboyson | 59:e0e556c8bd46 | 17 | extern int DnsHdrDataLength; |
| andrewboyson | 13:9cd54f7db57a | 18 | |
| andrewboyson | 59:e0e556c8bd46 | 19 | extern void DnsHdrSetup(void* pPacket, int lenPacket); |
| andrewboyson | 61:aad055f1b0d1 | 20 | extern void DnsHdrRead (void); |
| andrewboyson | 61:aad055f1b0d1 | 21 | extern void DnsHdrWrite(void); |
| andrewboyson | 37:793b39683406 | 22 | extern void DnsHdrLog (int ipProtocol); |