#include "lwip/opt.h"
Go to the source code of this file.
|
| int | GetHTTP_Header (const char *fName, char *buff) |
| | Get HTTP header function.
|
| |
| struct fs_file * | fs_open_default (void) |
| | Open default HTTP file function.
|
| |
| struct fs_file * | fs_open (const char *name) |
| | Open a file from the Filesystem function.
|
| |
| void | fs_close (struct fs_file *file) |
| | Closes/Frees a previously opened file function.
|
| |
| int | fs_read (struct fs_file *file, char *buffer, int count) |
| | This reads the requested number of bytes from the file function.
|
| |
| int | fs_bytes_left (struct fs_file *file) |
| | Get number of bytes yet to be read in a file function.
|
| |