├── .gitignore ├── LICENSE ├── README.md ├── darwinconf.lua ├── darwindeps.json ├── devops.releasefier.lua ├── docs ├── ai_doc.md ├── dependencies.md ├── instalations │ ├── build_from_scratch.md │ ├── full_dir.md │ ├── one_file.md │ └── precompiled.md ├── public_api.md ├── public_api │ ├── BearHttpsRequest_add_header.md │ ├── BearHttpsRequest_add_header_fmt.md │ ├── BearHttpsRequest_create_cJSONPayloadArray.md │ ├── BearHttpsRequest_create_cJSONPayloadObject.md │ ├── BearHttpsRequest_fetch.md │ ├── BearHttpsRequest_free.md │ ├── BearHttpsRequest_send_any.md │ ├── BearHttpsRequest_send_any_with_ownership_control.md │ ├── BearHttpsRequest_send_body_str.md │ ├── BearHttpsRequest_send_body_str_with_ownership_control.md │ ├── BearHttpsRequest_send_cJSON.md │ ├── BearHttpsRequest_send_cJSON_with_ownership_control.md │ ├── BearHttpsRequest_set_chunk_header_read_props.md │ ├── BearHttpsRequest_set_dns_providers.md │ ├── BearHttpsRequest_set_known_ips.md │ ├── BearHttpsRequest_set_max_redirections.md │ ├── BearHttpsRequest_set_trusted_anchors.md │ ├── BearHttpsResponse_error.md │ ├── BearHttpsResponse_free.md │ ├── BearHttpsResponse_get_body_size.md │ ├── BearHttpsResponse_get_error_code.md │ ├── BearHttpsResponse_get_error_msg.md │ ├── BearHttpsResponse_get_header_key_by_index.md │ ├── BearHttpsResponse_get_header_value_by_index.md │ ├── BearHttpsResponse_get_header_value_by_key.md │ ├── BearHttpsResponse_get_header_value_by_sanitized_key.md │ ├── BearHttpsResponse_get_headers_size.md │ ├── BearHttpsResponse_get_status_code.md │ ├── BearHttpsResponse_read_body_json.md │ ├── BearHttpsResponse_read_body_str.md │ ├── newBearHttpsRequest.md │ └── newBearHttpsRequest_with_url_ownership_config.md └── tutorials │ ├── body_upload.md │ ├── creating_a_visual_fetcher_site.md │ ├── headers.md │ ├── memory_and_limits.md │ ├── network_configuration.md │ ├── ownership_system.md │ ├── query_param.md │ ├── rest_api_consuming.md │ └── web_assembly.md ├── examples └── example_simple.c ├── release.json └── src ├── !__EMSCRIPTEN__ ├── config │ ├── globals.dns.c │ ├── macros.body_read_mode.h │ ├── macros.http1_states.h │ ├── macros.protocol.h │ └── macros.sizes.h ├── namespace │ ├── fdefine.namespace.c │ ├── request │ │ ├── fdefine.request.c │ │ └── typesE.request.h │ ├── response │ │ ├── fdefine.response.c │ │ └── typesE.response.h │ └── typesH.namespace.h ├── network │ ├── fdefine.connect_host.c │ ├── fdefine.ipv4_connect.c │ ├── fdefine.sock.c │ ├── globals.cache_dns.h │ └── types.dns_cache.h ├── request │ ├── fdefine.body_send.c │ ├── fdefine.fetch.c │ ├── fdefine.request.c │ ├── types.dns_provider.h │ └── typesC.request.h ├── requisition_props │ ├── fdefine.requisition_props.c │ └── types.requisition_props.h ├── response │ ├── fdefine.body_read.c │ ├── fdefine.body_read_chunk.c │ ├── fdefine.http_parser.c │ ├── fdefine.read_write.c │ └── response │ │ ├── fdefine.response.c │ │ └── typesD.response.h └── src_dependencies │ ├── dep_declareB.dependencies.h │ └── dep_defineB.dependencies.c ├── ALL ├── StringArray │ ├── fdefine.StringArray.c │ └── types.StringArray.h ├── config │ ├── macros.body_types.h │ ├── macros.errors.h │ └── macros.ownership.h ├── fdefine.extra.c ├── fdefine.ownership.c ├── fdefine.str.c ├── headers │ ├── fdefine.headers.c │ └── typesB.headers.h ├── keyval │ ├── fdefine.keyval.c │ └── types.keyval.h ├── request │ ├── fdefine.body_send.c │ └── request │ │ ├── fdefine.request.c │ │ └── types.body_types.h ├── response │ ├── fdefine.body_read.c │ └── fdefine.response.c └── src_dependencies │ ├── dep_declare.dependencies.h │ └── dep_define.dependencies.c ├── _MSC_VER └── dep_declareB.dependencies.h ├── _WIN32 ├── fdefine.socket.c └── src_dependencies │ ├── dep_declareB.dependencies.h │ └── dep_defineB.dependencies.c ├── __EMSCRIPTEN__ ├── request │ ├── fdefine.fetch.c │ ├── fdefine.request.c │ └── typesC.request.h ├── response │ ├── fdefine.read_body.c │ ├── fdefine.response.c │ └── typesD.response.h └── src_dependencies │ └── dep_declareB.dependencies.h ├── __unix__&&!__EMSCRIPTEN__ └── network │ ├── fdefine.connect_host.c │ └── fdefine.socket.c ├── one.c └── tests.os_test.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/README.md -------------------------------------------------------------------------------- /darwinconf.lua: -------------------------------------------------------------------------------- 1 | darwin.load_all("build") -------------------------------------------------------------------------------- /darwindeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/darwindeps.json -------------------------------------------------------------------------------- /devops.releasefier.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/devops.releasefier.lua -------------------------------------------------------------------------------- /docs/ai_doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/ai_doc.md -------------------------------------------------------------------------------- /docs/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/dependencies.md -------------------------------------------------------------------------------- /docs/instalations/build_from_scratch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/instalations/build_from_scratch.md -------------------------------------------------------------------------------- /docs/instalations/full_dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/instalations/full_dir.md -------------------------------------------------------------------------------- /docs/instalations/one_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/instalations/one_file.md -------------------------------------------------------------------------------- /docs/instalations/precompiled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/instalations/precompiled.md -------------------------------------------------------------------------------- /docs/public_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsRequest_add_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsRequest_add_header.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsRequest_add_header_fmt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsRequest_add_header_fmt.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsRequest_create_cJSONPayloadArray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsRequest_create_cJSONPayloadArray.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsRequest_create_cJSONPayloadObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsRequest_create_cJSONPayloadObject.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsRequest_fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsRequest_fetch.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsRequest_free.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsRequest_free.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsRequest_send_any.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsRequest_send_any.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsRequest_send_any_with_ownership_control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsRequest_send_any_with_ownership_control.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsRequest_send_body_str.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsRequest_send_body_str.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsRequest_send_body_str_with_ownership_control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsRequest_send_body_str_with_ownership_control.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsRequest_send_cJSON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsRequest_send_cJSON.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsRequest_send_cJSON_with_ownership_control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsRequest_send_cJSON_with_ownership_control.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsRequest_set_chunk_header_read_props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsRequest_set_chunk_header_read_props.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsRequest_set_dns_providers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsRequest_set_dns_providers.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsRequest_set_known_ips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsRequest_set_known_ips.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsRequest_set_max_redirections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsRequest_set_max_redirections.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsRequest_set_trusted_anchors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsRequest_set_trusted_anchors.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsResponse_error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsResponse_error.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsResponse_free.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsResponse_free.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsResponse_get_body_size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsResponse_get_body_size.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsResponse_get_error_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsResponse_get_error_code.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsResponse_get_error_msg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsResponse_get_error_msg.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsResponse_get_header_key_by_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsResponse_get_header_key_by_index.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsResponse_get_header_value_by_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsResponse_get_header_value_by_index.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsResponse_get_header_value_by_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsResponse_get_header_value_by_key.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsResponse_get_header_value_by_sanitized_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsResponse_get_header_value_by_sanitized_key.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsResponse_get_headers_size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsResponse_get_headers_size.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsResponse_get_status_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsResponse_get_status_code.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsResponse_read_body_json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsResponse_read_body_json.md -------------------------------------------------------------------------------- /docs/public_api/BearHttpsResponse_read_body_str.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/BearHttpsResponse_read_body_str.md -------------------------------------------------------------------------------- /docs/public_api/newBearHttpsRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/newBearHttpsRequest.md -------------------------------------------------------------------------------- /docs/public_api/newBearHttpsRequest_with_url_ownership_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/public_api/newBearHttpsRequest_with_url_ownership_config.md -------------------------------------------------------------------------------- /docs/tutorials/body_upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/tutorials/body_upload.md -------------------------------------------------------------------------------- /docs/tutorials/creating_a_visual_fetcher_site.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/tutorials/creating_a_visual_fetcher_site.md -------------------------------------------------------------------------------- /docs/tutorials/headers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/tutorials/headers.md -------------------------------------------------------------------------------- /docs/tutorials/memory_and_limits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/tutorials/memory_and_limits.md -------------------------------------------------------------------------------- /docs/tutorials/network_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/tutorials/network_configuration.md -------------------------------------------------------------------------------- /docs/tutorials/ownership_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/tutorials/ownership_system.md -------------------------------------------------------------------------------- /docs/tutorials/query_param.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/tutorials/query_param.md -------------------------------------------------------------------------------- /docs/tutorials/rest_api_consuming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/docs/tutorials/rest_api_consuming.md -------------------------------------------------------------------------------- /docs/tutorials/web_assembly.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/example_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/examples/example_simple.c -------------------------------------------------------------------------------- /release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/release.json -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/config/globals.dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/config/globals.dns.c -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/config/macros.body_read_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/config/macros.body_read_mode.h -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/config/macros.http1_states.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/config/macros.http1_states.h -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/config/macros.protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/config/macros.protocol.h -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/config/macros.sizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/config/macros.sizes.h -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/namespace/fdefine.namespace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/namespace/fdefine.namespace.c -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/namespace/request/fdefine.request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/namespace/request/fdefine.request.c -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/namespace/request/typesE.request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/namespace/request/typesE.request.h -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/namespace/response/fdefine.response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/namespace/response/fdefine.response.c -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/namespace/response/typesE.response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/namespace/response/typesE.response.h -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/namespace/typesH.namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/namespace/typesH.namespace.h -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/network/fdefine.connect_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/network/fdefine.connect_host.c -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/network/fdefine.ipv4_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/network/fdefine.ipv4_connect.c -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/network/fdefine.sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/network/fdefine.sock.c -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/network/globals.cache_dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/network/globals.cache_dns.h -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/network/types.dns_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/network/types.dns_cache.h -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/request/fdefine.body_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/request/fdefine.body_send.c -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/request/fdefine.fetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/request/fdefine.fetch.c -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/request/fdefine.request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/request/fdefine.request.c -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/request/types.dns_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/request/types.dns_provider.h -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/request/typesC.request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/request/typesC.request.h -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/requisition_props/fdefine.requisition_props.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/requisition_props/fdefine.requisition_props.c -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/requisition_props/types.requisition_props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/requisition_props/types.requisition_props.h -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/response/fdefine.body_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/response/fdefine.body_read.c -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/response/fdefine.body_read_chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/response/fdefine.body_read_chunk.c -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/response/fdefine.http_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/response/fdefine.http_parser.c -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/response/fdefine.read_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/response/fdefine.read_write.c -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/response/response/fdefine.response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/response/response/fdefine.response.c -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/response/response/typesD.response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/response/response/typesD.response.h -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/src_dependencies/dep_declareB.dependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/src_dependencies/dep_declareB.dependencies.h -------------------------------------------------------------------------------- /src/!__EMSCRIPTEN__/src_dependencies/dep_defineB.dependencies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/!__EMSCRIPTEN__/src_dependencies/dep_defineB.dependencies.c -------------------------------------------------------------------------------- /src/ALL/StringArray/fdefine.StringArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/ALL/StringArray/fdefine.StringArray.c -------------------------------------------------------------------------------- /src/ALL/StringArray/types.StringArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/ALL/StringArray/types.StringArray.h -------------------------------------------------------------------------------- /src/ALL/config/macros.body_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/ALL/config/macros.body_types.h -------------------------------------------------------------------------------- /src/ALL/config/macros.errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/ALL/config/macros.errors.h -------------------------------------------------------------------------------- /src/ALL/config/macros.ownership.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/ALL/config/macros.ownership.h -------------------------------------------------------------------------------- /src/ALL/fdefine.extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/ALL/fdefine.extra.c -------------------------------------------------------------------------------- /src/ALL/fdefine.ownership.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/ALL/fdefine.ownership.c -------------------------------------------------------------------------------- /src/ALL/fdefine.str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/ALL/fdefine.str.c -------------------------------------------------------------------------------- /src/ALL/headers/fdefine.headers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/ALL/headers/fdefine.headers.c -------------------------------------------------------------------------------- /src/ALL/headers/typesB.headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/ALL/headers/typesB.headers.h -------------------------------------------------------------------------------- /src/ALL/keyval/fdefine.keyval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/ALL/keyval/fdefine.keyval.c -------------------------------------------------------------------------------- /src/ALL/keyval/types.keyval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/ALL/keyval/types.keyval.h -------------------------------------------------------------------------------- /src/ALL/request/fdefine.body_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/ALL/request/fdefine.body_send.c -------------------------------------------------------------------------------- /src/ALL/request/request/fdefine.request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/ALL/request/request/fdefine.request.c -------------------------------------------------------------------------------- /src/ALL/request/request/types.body_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/ALL/request/request/types.body_types.h -------------------------------------------------------------------------------- /src/ALL/response/fdefine.body_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/ALL/response/fdefine.body_read.c -------------------------------------------------------------------------------- /src/ALL/response/fdefine.response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/ALL/response/fdefine.response.c -------------------------------------------------------------------------------- /src/ALL/src_dependencies/dep_declare.dependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/ALL/src_dependencies/dep_declare.dependencies.h -------------------------------------------------------------------------------- /src/ALL/src_dependencies/dep_define.dependencies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/ALL/src_dependencies/dep_define.dependencies.c -------------------------------------------------------------------------------- /src/_MSC_VER/dep_declareB.dependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/_MSC_VER/dep_declareB.dependencies.h -------------------------------------------------------------------------------- /src/_WIN32/fdefine.socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/_WIN32/fdefine.socket.c -------------------------------------------------------------------------------- /src/_WIN32/src_dependencies/dep_declareB.dependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/_WIN32/src_dependencies/dep_declareB.dependencies.h -------------------------------------------------------------------------------- /src/_WIN32/src_dependencies/dep_defineB.dependencies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/_WIN32/src_dependencies/dep_defineB.dependencies.c -------------------------------------------------------------------------------- /src/__EMSCRIPTEN__/request/fdefine.fetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/__EMSCRIPTEN__/request/fdefine.fetch.c -------------------------------------------------------------------------------- /src/__EMSCRIPTEN__/request/fdefine.request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/__EMSCRIPTEN__/request/fdefine.request.c -------------------------------------------------------------------------------- /src/__EMSCRIPTEN__/request/typesC.request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/__EMSCRIPTEN__/request/typesC.request.h -------------------------------------------------------------------------------- /src/__EMSCRIPTEN__/response/fdefine.read_body.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/__EMSCRIPTEN__/response/fdefine.read_body.c -------------------------------------------------------------------------------- /src/__EMSCRIPTEN__/response/fdefine.response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/__EMSCRIPTEN__/response/fdefine.response.c -------------------------------------------------------------------------------- /src/__EMSCRIPTEN__/response/typesD.response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/__EMSCRIPTEN__/response/typesD.response.h -------------------------------------------------------------------------------- /src/__EMSCRIPTEN__/src_dependencies/dep_declareB.dependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/__EMSCRIPTEN__/src_dependencies/dep_declareB.dependencies.h -------------------------------------------------------------------------------- /src/__unix__&&!__EMSCRIPTEN__/network/fdefine.connect_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/__unix__&&!__EMSCRIPTEN__/network/fdefine.connect_host.c -------------------------------------------------------------------------------- /src/__unix__&&!__EMSCRIPTEN__/network/fdefine.socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/__unix__&&!__EMSCRIPTEN__/network/fdefine.socket.c -------------------------------------------------------------------------------- /src/one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/one.c -------------------------------------------------------------------------------- /src/tests.os_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OUIsolutions/BearHttpsClient/HEAD/src/tests.os_test.h --------------------------------------------------------------------------------