A stack which works with or without an Mbed os library. Provides IPv4 or IPv6 with a full 1500 byte buffer.

Dependents:   oldheating gps motorhome heating

eth/nr4.h

Committer:
andrewboyson
Date:
2018-12-05
Revision:
94:e2973a2c488e
Parent:
61:aad055f1b0d1

File content as of revision 94:e2973a2c488e:

#include <stdbool.h>

extern bool Nr4Trace;

extern void Nr4MakeRequestForNameFromIp(uint32_t ip);
extern void Nr4MakeRequestForIpFromName(char*  name);

extern void Nr4AddIpRecord(uint32_t ip, char* name, int protocol);

extern void Nr4IpToName(uint32_t ip, char*     name);
extern void Nr4NameToIp(char*  name, uint32_t*  pIp);
extern void Nr4SendHttp(void);

extern void Nr4Main(void);
extern void Nr4Init(void);