Marcelo Rebonatto / Mbed 2 deprecated PMED_Tempo

Dependencies:   EthernetInterface mbed-rtos mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers TftpServer.h Source File

TftpServer.h

00001 #include "mbed.h"
00002 #include "rtos.h"
00003 
00004 #include "EthernetInterface.h"
00005 
00006 
00007 
00008 
00009 class TftpServer
00010 {
00011 
00012 public:
00013 
00014     static void TftpServerThread(void const *arg);
00015     
00016     static void TftpDoRead(Endpoint remote,char *buffer,int length);
00017     static void TftpDoWrite(Endpoint remote,char *buffer,int length);
00018 
00019 };