Versão atual 13-12-2013.

Dependencies:   EthernetInterface mbed-rtos mbed

Headers/TftpServer.h

Committer:
rebonatto
Date:
2013-12-13
Revision:
1:238ac24e46dd
Parent:
0:65c41a68b49a

File content as of revision 1:238ac24e46dd:

#include "mbed.h"
#include "rtos.h"

#include "EthernetInterface.h"




class TftpServer
{

public:

    static void TftpServerThread(void const *arg);
    
    static void TftpDoRead(Endpoint remote,char *buffer,int length);
    static void TftpDoWrite(Endpoint remote,char *buffer,int length);

};