http_parser_state.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /* SPDX-License-Identifier: MIT */
  2. /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5. * of this software and associated documentation files (the "Software"), to
  6. * deal in the Software without restriction, including without limitation the
  7. * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  8. * sell copies of the Software, and to permit persons to whom the Software is
  9. * furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  19. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  20. * IN THE SOFTWARE.
  21. */
  22. #ifndef ZEPHYR_INCLUDE_NET_HTTP_PARSER_STATE_H_
  23. #define ZEPHYR_INCLUDE_NET_HTTP_PARSER_STATE_H_
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. enum state {
  28. s_dead = 1, /* important that this is > 0 */
  29. s_start_req_or_res,
  30. s_res_or_resp_H,
  31. s_start_res,
  32. s_res_H,
  33. s_res_HT,
  34. s_res_HTT,
  35. s_res_HTTP,
  36. s_res_first_http_major,
  37. s_res_http_major,
  38. s_res_first_http_minor,
  39. s_res_http_minor,
  40. s_res_first_status_code,
  41. s_res_status_code,
  42. s_res_status_start,
  43. s_res_status,
  44. s_res_line_almost_done,
  45. s_start_req,
  46. s_req_method,
  47. s_req_spaces_before_url,
  48. s_req_schema,
  49. s_req_schema_slash,
  50. s_req_schema_slash_slash,
  51. s_req_server_start,
  52. s_req_server,
  53. s_req_server_with_at,
  54. s_req_path,
  55. s_req_query_string_start,
  56. s_req_query_string,
  57. s_req_fragment_start,
  58. s_req_fragment,
  59. s_req_http_start,
  60. s_req_http_H,
  61. s_req_http_HT,
  62. s_req_http_HTT,
  63. s_req_http_HTTP,
  64. s_req_first_http_major,
  65. s_req_http_major,
  66. s_req_first_http_minor,
  67. s_req_http_minor,
  68. s_req_line_almost_done,
  69. s_header_field_start,
  70. s_header_field,
  71. s_header_value_discard_ws,
  72. s_header_value_discard_ws_almost_done,
  73. s_header_value_discard_lws,
  74. s_header_value_start,
  75. s_header_value,
  76. s_header_value_lws,
  77. s_header_almost_done,
  78. s_chunk_size_start,
  79. s_chunk_size,
  80. s_chunk_parameters,
  81. s_chunk_size_almost_done,
  82. s_headers_almost_done,
  83. s_headers_done,
  84. /* Important: 's_headers_done' must be the last 'header' state. All
  85. * states beyond this must be 'body' states. It is used for overflow
  86. * checking. See the PARSING_HEADER() macro.
  87. */
  88. s_chunk_data,
  89. s_chunk_data_almost_done,
  90. s_chunk_data_done,
  91. s_body_identity,
  92. s_body_identity_eof,
  93. s_message_done
  94. };
  95. #ifdef __cplusplus
  96. }
  97. #endif
  98. #endif