Lines Matching defs:http_ssi_state
215 struct http_ssi_state { struct
216 const char *parsed; /* Pointer to the first unparsed byte in buf. */
218 const char *tag_started;/* Pointer to the first opening '<' of the tag. */
220 const char *tag_end; /* Pointer to char after the closing '>' of the tag. */
221 u32_t parse_left; /* Number of unparsed bytes in buf. */
222 u16_t tag_index; /* Counter used by tag parsing state machine */
223 u16_t tag_insert_len; /* Length of insert in string tag_insert */
225 …_t tag_part; /* Counter passed to and changed by tag insertion function to insert multiple times */
227 u8_t tag_type; /* index into http_ssi_tag_desc array */
228 u8_t tag_name_len; /* Length of the tag name in string tag_name */
229 char tag_name[LWIP_HTTPD_MAX_TAG_NAME_LEN + 1]; /* Last tag name extracted */
230 char tag_insert[LWIP_HTTPD_MAX_TAG_INSERT_LEN + 1]; /* Insert string for tag_name */
231 enum tag_check_state tag_state; /* State of the tag processor */