-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR adds HTTPS support to the Async runtime, based on `Async_ssl`. Once `ocaml-tls` provides an Async runtime, we can add that one here.
- Loading branch information
1 parent
86b94fe
commit 464723c
Showing
17 changed files
with
799 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,16 @@ | ||
(library | ||
(name httpaf_async) | ||
(name httpaf_async) | ||
(public_name httpaf-async) | ||
(wrapped false) | ||
(libraries | ||
async core faraday-async httpaf) | ||
(flags (:standard -safe-string))) | ||
async | ||
core | ||
faraday-async | ||
httpaf | ||
(select | ||
ssl_io.ml | ||
from | ||
(async_ssl -> ssl_io_real.ml) | ||
(!async_ssl -> ssl_io_dummy.ml))) | ||
(modules httpaf_async httpaf_async_intf ssl_io) | ||
(flags | ||
(:standard -safe-string))) |
Oops, something went wrong.