Remove tftp context from header file It should not be used anywhere else
20 lines
318 B
C
20 lines
318 B
C
/**
|
|
* @file tftp.h
|
|
* @brief tftp server
|
|
* @author Speetjens S.
|
|
*/
|
|
|
|
#ifndef PROJECT_TFTP_H
|
|
#define PROJECT_TFTP_H
|
|
#define LOGGER_LEVEL_ALL
|
|
#include <tftp_server.h>
|
|
#include "log.h"
|
|
#include "llfs.h"
|
|
#include "stdlib.h"
|
|
#include "string.h"
|
|
|
|
#define TFTP_READ 0
|
|
|
|
void tftp_server_init(void);
|
|
#endif // PROJECT_TFTP_H
|