MINOR: h1: remove the unused states from h1m_state

States ERROR, 100_SENT, ENDING, CLOSE, CLOSING are not used at all for
the parsers. It's possible that a few others may disappear as well.
diff --git a/include/types/h1.h b/include/types/h1.h
index 7d9c12e..e410d9d 100644
--- a/include/types/h1.h
+++ b/include/types/h1.h
@@ -120,27 +120,19 @@
 
 	H1_MSG_LAST_LF      = 25, // parsing last LF
 
-	/* error state : must be before H1_MSG_BODY so that (>=BODY) always indicates
-	 * that data are being processed.
-	 */
-	H1_MSG_ERROR        = 26, // an error occurred
 	/* Body processing.
 	 * The state H1_MSG_BODY is a delimiter to know if we're waiting for headers
 	 * or body. All the sub-states below also indicate we're processing the body,
 	 * with some additional information.
 	 */
-	H1_MSG_BODY         = 27, // parsing body at end of headers
-	H1_MSG_100_SENT     = 28, // parsing body after a 100-Continue was sent
-	H1_MSG_CHUNK_SIZE   = 29, // parsing the chunk size (RFC7230 #4.1)
-	H1_MSG_DATA         = 30, // skipping data chunk / content-length data
-	H1_MSG_CHUNK_CRLF   = 31, // skipping CRLF after data chunk
-	H1_MSG_TRAILERS     = 32, // trailers (post-data entity headers)
+	H1_MSG_BODY         = 26, // parsing body at end of headers
+	H1_MSG_CHUNK_SIZE   = 27, // parsing the chunk size (RFC7230 #4.1)
+	H1_MSG_DATA         = 28, // skipping data chunk / content-length data
+	H1_MSG_CHUNK_CRLF   = 29, // skipping CRLF after data chunk
+	H1_MSG_TRAILERS     = 30, // trailers (post-data entity headers)
 	/* we enter this state when we've received the end of the current message */
-	H1_MSG_ENDING       = 33, // message end received, wait that the filters end too
-	H1_MSG_DONE         = 34, // message end received, waiting for resync or close
-	H1_MSG_CLOSING      = 35, // shutdown_w done, not all bytes sent yet
-	H1_MSG_CLOSED       = 36, // shutdown_w done, all bytes sent
-	H1_MSG_TUNNEL       = 37, // tunneled data after DONE
+	H1_MSG_DONE         = 31, // message end received, waiting for resync or close
+	H1_MSG_TUNNEL       = 32, // tunneled data after DONE
 } __attribute__((packed));