2012-05-24 13:22:27 -04:00
|
|
|
#ifndef __TFTP_H
|
|
|
|
#define __TFTP_H
|
2012-05-21 16:57:12 -04:00
|
|
|
|
2013-04-16 12:55:25 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
int tftp_get(uint32_t ip, const char *filename, void *buffer);
|
2013-04-16 12:55:28 -04:00
|
|
|
int tftp_put(uint32_t ip, const char *filename, const void *buffer, int size);
|
2012-05-21 16:57:12 -04:00
|
|
|
|
2012-05-24 13:22:27 -04:00
|
|
|
#endif /* __TFTP_H */
|
2012-05-21 16:57:12 -04:00
|
|
|
|