Skip to content

Commit

Permalink
Fix multiple threading bugs including yhirose#699 and yhirose#697
Browse files Browse the repository at this point in the history
  • Loading branch information
lightvector authored and yhirose committed Nov 29, 2020
1 parent 47e5af1 commit 02d3cd5
Show file tree
Hide file tree
Showing 3 changed files with 175 additions and 46 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -645,6 +645,12 @@ cli.set_ca_cert_path("./ca-bundle.crt");
cli.enable_server_certificate_verification(true);
```
Note: When using SSL, it seems impossible to avoid SIGPIPE in all cases, since on some operating systems, SIGPIPE
can only be suppressed on a per-message basis, but there is no way to make the OpenSSL library do so for its
internal communications. If your program needs to avoid being terminated on SIGPIPE, the only fully general way might
be to set up a signal handler for SIGPIPE to handle or ignore it yourself.
Compression
-----------
Expand Down
Loading

0 comments on commit 02d3cd5

Please sign in to comment.