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
Diff: udp/tftp/tftp.h
- Revision:
- 115:5c003909bcf3
- Child:
- 184:ad80a63e3002
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/udp/tftp/tftp.h Wed Jan 23 15:42:35 2019 +0000 @@ -0,0 +1,24 @@ +#include <stdint.h> +#include <stdbool.h> + +extern bool TftpTrace; + +extern char TftpServerName[]; +extern char TftpFileName[]; +extern int TftpWriteStatus; + +#define TFTP_WRITE_STATUS_NONE 0 +#define TFTP_WRITE_STATUS_REQUEST 1 +#define TFTP_WRITE_STATUS_IN_PROGRESS 2 + +extern bool TftpSendRequestsViaIp4; +extern uint32_t TftpServerIp4; +extern char TftpServerIp6[]; + +extern int (*TftpGetNextByteFunction)(); + +extern int TftpHandlePacketReceived(void (*traceback)(void), int sizeRx, void* pPacketRx, int* pSizeTx, void* pPacketTx); +extern int TftpPollForPacketToSend(int type, void* pPacket, int* pSize); + +#define TFTP_SERVER_PORT 69 +#define TFTP_CLIENT_PORT 60690