#include "httpd_opts.h"
#include "lwip/err.h"
Go to the source code of this file.
◆ FS_FILE_FLAGS_CUSTOM
#define FS_FILE_FLAGS_CUSTOM 0x10 |
Definition at line 57 of file fs.h.
◆ FS_FILE_FLAGS_HEADER_HTTPVER_1_1
#define FS_FILE_FLAGS_HEADER_HTTPVER_1_1 0x04 |
Definition at line 55 of file fs.h.
◆ FS_FILE_FLAGS_HEADER_INCLUDED
#define FS_FILE_FLAGS_HEADER_INCLUDED 0x01 |
Definition at line 53 of file fs.h.
◆ FS_FILE_FLAGS_HEADER_PERSISTENT
#define FS_FILE_FLAGS_HEADER_PERSISTENT 0x02 |
Definition at line 54 of file fs.h.
◆ FS_FILE_FLAGS_SSI
#define FS_FILE_FLAGS_SSI 0x08 |
Definition at line 56 of file fs.h.
◆ FS_READ_DELAYED
Definition at line 43 of file fs.h.
◆ FS_READ_EOF
Definition at line 42 of file fs.h.
◆ fs_file_extension
Define FS_FILE_EXTENSION_T_DEFINED if you have typedef'ed to your private pointer type (defaults to 'void' so the default usage is 'void*')
Definition at line 63 of file fs.h.
◆ fs_bytes_left()
Definition at line 158 of file fs.c.
◆ fs_close()
Definition at line 83 of file fs.c.
84{
85#if LWIP_HTTPD_CUSTOM_FILES
87 fs_close_custom(
file);
88 }
89#endif
90#if LWIP_HTTPD_FILE_STATE
92#endif
94}
#define FS_FILE_FLAGS_CUSTOM
#define LWIP_UNUSED_ARG(x)
Referenced by VfatChkdsk().
◆ fs_open()
Definition at line 43 of file fs.c.
44{
46
49 }
50
51#if LWIP_HTTPD_CUSTOM_FILES
55 }
56#endif
57
60 file->data = (
const char *)
f->data;
63 file->flags =
f->flags;
65 file->chksum_count =
f->chksum_count;
66 file->chksum =
f->chksum;
67#endif
70#endif
73#endif
75 }
76 }
77
79}
int strcmp(const char *String1, const char *String2)
#define HTTPD_PRECALCULATED_CHECKSUM
#define LWIP_HTTPD_FILE_EXTENSION
#define LWIP_HTTPD_FILE_STATE
Referenced by VfatChkdsk().