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
net.h
- Committer:
- andrewboyson
- Date:
- 2017-10-19
- Revision:
- 43:bc028d5a6424
- Parent:
- 42:222a4f45f916
- Child:
- 44:83ce5ace337b
File content as of revision 43:bc028d5a6424:
#pragma once
#include "mbed.h"
extern bool NetPreferIp4Polled;
extern bool NetTraceStack;
extern bool NetTraceNewLine;
extern bool NetTraceVerbose;
extern int16_t NetToHost16(int16_t n);
extern int32_t NetToHost32(int32_t n);
extern int64_t NetToHost64(int64_t n);
extern uint16_t NetCheckSum(int count, void* pData);
extern uint16_t NetCheckSumTwo(int count1, void* pData1, int count2, void* pData2);
extern int NetInit(char* name);
extern int NetMain();
extern char* NetName;