nghttp2_option.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /*
  2. * nghttp2 - HTTP/2 C Library
  3. *
  4. * Copyright (c) 2014 Tatsuhiro Tsujikawa
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining
  7. * a copy of this software and associated documentation files (the
  8. * "Software"), to deal in the Software without restriction, including
  9. * without limitation the rights to use, copy, modify, merge, publish,
  10. * distribute, sublicense, and/or sell copies of the Software, and to
  11. * permit persons to whom the Software is furnished to do so, subject to
  12. * the following conditions:
  13. *
  14. * The above copyright notice and this permission notice shall be
  15. * included in all copies or substantial portions of the Software.
  16. *
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  18. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  19. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  20. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  21. * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  22. * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  23. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  24. */
  25. #include "nghttp2_option.h"
  26. #include "nghttp2_session.h"
  27. int nghttp2_option_new(nghttp2_option **option_ptr) {
  28. *option_ptr = calloc(1, sizeof(nghttp2_option));
  29. if (*option_ptr == NULL) {
  30. return NGHTTP2_ERR_NOMEM;
  31. }
  32. return 0;
  33. }
  34. void nghttp2_option_del(nghttp2_option *option) { free(option); }
  35. void nghttp2_option_set_no_auto_window_update(nghttp2_option *option, int val) {
  36. option->opt_set_mask |= NGHTTP2_OPT_NO_AUTO_WINDOW_UPDATE;
  37. option->no_auto_window_update = val;
  38. }
  39. void nghttp2_option_set_peer_max_concurrent_streams(nghttp2_option *option,
  40. uint32_t val) {
  41. option->opt_set_mask |= NGHTTP2_OPT_PEER_MAX_CONCURRENT_STREAMS;
  42. option->peer_max_concurrent_streams = val;
  43. }
  44. void nghttp2_option_set_no_recv_client_magic(nghttp2_option *option, int val) {
  45. option->opt_set_mask |= NGHTTP2_OPT_NO_RECV_CLIENT_MAGIC;
  46. option->no_recv_client_magic = val;
  47. }
  48. void nghttp2_option_set_no_http_messaging(nghttp2_option *option, int val) {
  49. option->opt_set_mask |= NGHTTP2_OPT_NO_HTTP_MESSAGING;
  50. option->no_http_messaging = val;
  51. }
  52. void nghttp2_option_set_max_reserved_remote_streams(nghttp2_option *option,
  53. uint32_t val) {
  54. option->opt_set_mask |= NGHTTP2_OPT_MAX_RESERVED_REMOTE_STREAMS;
  55. option->max_reserved_remote_streams = val;
  56. }
  57. static void set_ext_type(uint8_t *ext_types, uint8_t type) {
  58. ext_types[type / 8] = (uint8_t)(ext_types[type / 8] | (1 << (type & 0x7)));
  59. }
  60. void nghttp2_option_set_user_recv_extension_type(nghttp2_option *option,
  61. uint8_t type) {
  62. if (type < 10) {
  63. return;
  64. }
  65. option->opt_set_mask |= NGHTTP2_OPT_USER_RECV_EXT_TYPES;
  66. set_ext_type(option->user_recv_ext_types, type);
  67. }
  68. void nghttp2_option_set_builtin_recv_extension_type(nghttp2_option *option,
  69. uint8_t type) {
  70. switch (type) {
  71. case NGHTTP2_ALTSVC:
  72. option->opt_set_mask |= NGHTTP2_OPT_BUILTIN_RECV_EXT_TYPES;
  73. option->builtin_recv_ext_types |= NGHTTP2_TYPEMASK_ALTSVC;
  74. return;
  75. case NGHTTP2_ORIGIN:
  76. option->opt_set_mask |= NGHTTP2_OPT_BUILTIN_RECV_EXT_TYPES;
  77. option->builtin_recv_ext_types |= NGHTTP2_TYPEMASK_ORIGIN;
  78. return;
  79. case NGHTTP2_PRIORITY_UPDATE:
  80. option->opt_set_mask |= NGHTTP2_OPT_BUILTIN_RECV_EXT_TYPES;
  81. option->builtin_recv_ext_types |= NGHTTP2_TYPEMASK_PRIORITY_UPDATE;
  82. return;
  83. default:
  84. return;
  85. }
  86. }
  87. void nghttp2_option_set_no_auto_ping_ack(nghttp2_option *option, int val) {
  88. option->opt_set_mask |= NGHTTP2_OPT_NO_AUTO_PING_ACK;
  89. option->no_auto_ping_ack = val;
  90. }
  91. void nghttp2_option_set_max_send_header_block_length(nghttp2_option *option,
  92. size_t val) {
  93. option->opt_set_mask |= NGHTTP2_OPT_MAX_SEND_HEADER_BLOCK_LENGTH;
  94. option->max_send_header_block_length = val;
  95. }
  96. void nghttp2_option_set_max_deflate_dynamic_table_size(nghttp2_option *option,
  97. size_t val) {
  98. option->opt_set_mask |= NGHTTP2_OPT_MAX_DEFLATE_DYNAMIC_TABLE_SIZE;
  99. option->max_deflate_dynamic_table_size = val;
  100. }
  101. void nghttp2_option_set_no_closed_streams(nghttp2_option *option, int val) {
  102. option->opt_set_mask |= NGHTTP2_OPT_NO_CLOSED_STREAMS;
  103. option->no_closed_streams = val;
  104. }
  105. void nghttp2_option_set_max_outbound_ack(nghttp2_option *option, size_t val) {
  106. option->opt_set_mask |= NGHTTP2_OPT_MAX_OUTBOUND_ACK;
  107. option->max_outbound_ack = val;
  108. }
  109. void nghttp2_option_set_max_settings(nghttp2_option *option, size_t val) {
  110. option->opt_set_mask |= NGHTTP2_OPT_MAX_SETTINGS;
  111. option->max_settings = val;
  112. }
  113. void nghttp2_option_set_server_fallback_rfc7540_priorities(
  114. nghttp2_option *option, int val) {
  115. option->opt_set_mask |= NGHTTP2_OPT_SERVER_FALLBACK_RFC7540_PRIORITIES;
  116. option->server_fallback_rfc7540_priorities = val;
  117. }
  118. void nghttp2_option_set_no_rfc9113_leading_and_trailing_ws_validation(
  119. nghttp2_option *option, int val) {
  120. option->opt_set_mask |=
  121. NGHTTP2_OPT_NO_RFC9113_LEADING_AND_TRAILING_WS_VALIDATION;
  122. option->no_rfc9113_leading_and_trailing_ws_validation = val;
  123. }
  124. void nghttp2_option_set_stream_reset_rate_limit(nghttp2_option *option,
  125. uint64_t burst, uint64_t rate) {
  126. option->opt_set_mask |= NGHTTP2_OPT_STREAM_RESET_RATE_LIMIT;
  127. option->stream_reset_burst = burst;
  128. option->stream_reset_rate = rate;
  129. }
  130. void nghttp2_option_set_max_continuations(nghttp2_option *option, size_t val) {
  131. option->opt_set_mask |= NGHTTP2_OPT_MAX_CONTINUATIONS;
  132. option->max_continuations = val;
  133. }