{"id":32116865,"url":"https://github.com/awslabs/aws-c-http","last_synced_at":"2026-04-01T20:26:52.288Z","repository":{"id":34385160,"uuid":"142940518","full_name":"awslabs/aws-c-http","owner":"awslabs","description":"C99 implementation of the HTTP/1.1 and HTTP/2 specifications","archived":false,"fork":false,"pushed_at":"2026-03-27T23:33:31.000Z","size":4463,"stargazers_count":171,"open_issues_count":14,"forks_count":49,"subscribers_count":24,"default_branch":"main","last_synced_at":"2026-03-28T01:48:15.052Z","etag":null,"topics":["hacktoberfest"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/awslabs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":"NOTICE","maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-07-31T00:07:24.000Z","updated_at":"2026-03-25T23:28:50.000Z","dependencies_parsed_at":"2023-01-15T06:44:28.751Z","dependency_job_id":"b0af7667-a076-40a2-91f4-c76e440840c4","html_url":"https://github.com/awslabs/aws-c-http","commit_stats":{"total_commits":468,"total_committers":33,"mean_commits":"14.181818181818182","dds":0.7029914529914529,"last_synced_commit":"d83f8d70143ddce5ab4e479175fbd44ba994211b"},"previous_names":[],"tags_count":151,"template":false,"template_full_name":null,"purl":"pkg:github/awslabs/aws-c-http","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awslabs%2Faws-c-http","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awslabs%2Faws-c-http/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awslabs%2Faws-c-http/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awslabs%2Faws-c-http/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/awslabs","download_url":"https://codeload.github.com/awslabs/aws-c-http/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awslabs%2Faws-c-http/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31291611,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacktoberfest"],"created_at":"2025-10-20T16:16:31.282Z","updated_at":"2026-04-01T20:26:52.282Z","avatar_url":"https://github.com/awslabs.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"## AWS C Http\n\nC99 implementation of the HTTP/1.1 and HTTP/2 specifications\n\n## License\n\nThis library is licensed under the Apache 2.0 License.\n\n## Usage\n\n### Building\n\nCMake 3.9+ is required to build.\n\n`\u003cinstall-path\u003e` must be an absolute path in the following instructions.\n\n#### Linux-Only Dependencies\n\nIf you are building on Linux, you will need to build aws-lc and s2n-tls first.\n\n```\ngit clone git@github.com:awslabs/aws-lc.git\ncmake -S aws-lc -B aws-lc/build -DCMAKE_INSTALL_PREFIX=\u003cinstall-path\u003e\ncmake --build aws-lc/build --target install\n\ngit clone git@github.com:aws/s2n-tls.git\ncmake -S s2n-tls -B s2n-tls/build -DCMAKE_INSTALL_PREFIX=\u003cinstall-path\u003e -DCMAKE_PREFIX_PATH=\u003cinstall-path\u003e\ncmake --build s2n-tls/build --target install\n```\n\n#### Building aws-c-http and Remaining Dependencies\n\n```\ngit clone git@github.com:awslabs/aws-c-common.git\ncmake -S aws-c-common -B aws-c-common/build -DCMAKE_INSTALL_PREFIX=\u003cinstall-path\u003e\ncmake --build aws-c-common/build --target install\n\ngit clone git@github.com:awslabs/aws-c-cal.git\ncmake -S aws-c-cal -B aws-c-cal/build -DCMAKE_INSTALL_PREFIX=\u003cinstall-path\u003e -DCMAKE_PREFIX_PATH=\u003cinstall-path\u003e\ncmake --build aws-c-cal/build --target install\n\ngit clone git@github.com:awslabs/aws-c-io.git\ncmake -S aws-c-io -B aws-c-io/build -DCMAKE_INSTALL_PREFIX=\u003cinstall-path\u003e -DCMAKE_PREFIX_PATH=\u003cinstall-path\u003e\ncmake --build aws-c-io/build --target install\n\ngit clone git@github.com:awslabs/aws-c-compression.git\ncmake -S aws-c-compression -B aws-c-compression/build -DCMAKE_INSTALL_PREFIX=\u003cinstall-path\u003e -DCMAKE_PREFIX_PATH=\u003cinstall-path\u003e\ncmake --build aws-c-compression/build --target install\n\ngit clone git@github.com:awslabs/aws-c-http.git\ncmake -S aws-c-http -B aws-c-http/build -DCMAKE_INSTALL_PREFIX=\u003cinstall-path\u003e -DCMAKE_PREFIX_PATH=\u003cinstall-path\u003e\ncmake --build aws-c-http/build --target install\n```\n\n#### Run Integration Tests with localhost\n\nTo run some of the integration tests (start with localhost_integ_*), you need to set up a localhost that echo the request headers from `/echo` back first.\n\nTo do that, check [localhost](./tests/mock_server/) script we have.\n\nAfter that, configure and build your cmake project with `-DENABLE_LOCALHOST_INTEGRATION_TESTS=true` to build the tests with localhost and run them from `ctest --output-on-failure -R localhost_integ_*`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fawslabs%2Faws-c-http","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fawslabs%2Faws-c-http","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fawslabs%2Faws-c-http/lists"}