nghttp2_option.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. default:
  80. return;
  81. }
  82. }
  83. void nghttp2_option_set_no_auto_ping_ack(nghttp2_option *option, int val) {
  84. option->opt_set_mask |= NGHTTP2_OPT_NO_AUTO_PING_ACK;
  85. option->no_auto_ping_ack = val;
  86. }
  87. void nghttp2_option_set_max_send_header_block_length(nghttp2_option *option,
  88. size_t val) {
  89. option->opt_set_mask |= NGHTTP2_OPT_MAX_SEND_HEADER_BLOCK_LENGTH;
  90. option->max_send_header_block_length = val;
  91. }
  92. void nghttp2_option_set_max_deflate_dynamic_table_size(nghttp2_option *option,
  93. size_t val) {
  94. option->opt_set_mask |= NGHTTP2_OPT_MAX_DEFLATE_DYNAMIC_TABLE_SIZE;
  95. option->max_deflate_dynamic_table_size = val;
  96. }
  97. void nghttp2_option_set_no_closed_streams(nghttp2_option *option, int val) {
  98. option->opt_set_mask |= NGHTTP2_OPT_NO_CLOSED_STREAMS;
  99. option->no_closed_streams = val;
  100. }
  101. void nghttp2_option_set_max_outbound_ack(nghttp2_option *option, size_t val) {
  102. option->opt_set_mask |= NGHTTP2_OPT_MAX_OUTBOUND_ACK;
  103. option->max_outbound_ack = val;
  104. }
  105. void nghttp2_option_set_max_settings(nghttp2_option *option, size_t val) {
  106. option->opt_set_mask |= NGHTTP2_OPT_MAX_SETTINGS;
  107. option->max_settings = val;
  108. }