-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
patch: get tls
ConnectionState
directly from request
- `http.Server.ConnContext` is called before the tls connection is established, meaning themis' request builder `RequestBuilderFunc(setConnectionState)` will not find the context embedded tls ConnectionState. - Have have `RequestBuilderFunc(setConnectionState)`get the tls ConnectionState directly from the request's `TLS` field instead from the context, since request's `TLS` field is the connection's ConnectionState.
- Loading branch information
Showing
5 changed files
with
3 additions
and
34 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ report.json | |
|
||
# for VSCode | ||
.vscode/ | ||
.dev/ | ||
|
||
# for releases | ||
.ignore/ | ||
|
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
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