aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/postprocessor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/postprocessor.h')
-rw-r--r--src/microhttpd/postprocessor.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/microhttpd/postprocessor.h b/src/microhttpd/postprocessor.h
index df681ce9..c3b19ef1 100644
--- a/src/microhttpd/postprocessor.h
+++ b/src/microhttpd/postprocessor.h
@@ -74,13 +74,13 @@ enum RN_State
74 RN_OptN = 1, 74 RN_OptN = 1,
75 75
76 /** 76 /**
77 * Expect LFCR (and only LFCR). As always, we also 77 * Expect CRLF (and only CRLF). As always, we also
78 * expect only LF or only CR. 78 * expect only LF or only CR.
79 */ 79 */
80 RN_Full = 2, 80 RN_Full = 2,
81 81
82 /** 82 /**
83 * Expect either LFCR or '--'LFCR. If '--'LFCR, transition into dash-state 83 * Expect either CRLF or '--'CRLF. If '--'CRLF, transition into dash-state
84 * for the main state machine 84 * for the main state machine
85 */ 85 */
86 RN_Dash = 3, 86 RN_Dash = 3,
@@ -222,9 +222,9 @@ struct MHD_PostProcessor
222 enum PP_State state; 222 enum PP_State state;
223 223
224 /** 224 /**
225 * Side-state-machine: skip LRCR (or just LF). 225 * Side-state-machine: skip CRLF (or just LF).
226 * Set to 0 if we are not in skip mode. Set to 2 226 * Set to 0 if we are not in skip mode. Set to 2
227 * if a LFCR is expected, set to 1 if a CR should 227 * if a CRLF is expected, set to 1 if a CR should
228 * be skipped if it is the next character. 228 * be skipped if it is the next character.
229 */ 229 */
230 enum RN_State skip_rn; 230 enum RN_State skip_rn;