forked from erlang/otp
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ssl: Refactor sslsocket to ease maintenance and extension
Backwards compatibility of this internal data structure is no longer needed and nowadays only makes it hard to understand the intent of the code. So this is a refactor long overdue.
- Loading branch information
1 parent
3651d52
commit 1ac86be
Showing
14 changed files
with
256 additions
and
184 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
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,25 +1,13 @@ | ||
%% -*- erlang -*- | ||
{"%VSN%", | ||
[ | ||
[ | ||
{<<"11\\..*">>, [{restart_application, ssl}]}, | ||
{<<"10\\..*">>, [{restart_application, ssl}]}, | ||
{<<"9\\..*">>, [{restart_application, ssl}]}, | ||
{<<"8\\..*">>, [{restart_application, ssl}]}, | ||
{<<"7\\..*">>, [{restart_application, ssl}]}, | ||
{<<"6\\..*">>, [{restart_application, ssl}]}, | ||
{<<"5\\..*">>, [{restart_application, ssl}]}, | ||
{<<"4\\..*">>, [{restart_application, ssl}]}, | ||
{<<"3\\..*">>, [{restart_application, ssl}]} | ||
{<<"9\\..*">>, [{restart_application, ssl}]} | ||
], | ||
[ | ||
{<<"11\\..*">>, [{restart_application, ssl}]}, | ||
{<<"10\\..*">>, [{restart_application, ssl}]}, | ||
{<<"9\\..*">>, [{restart_application, ssl}]}, | ||
{<<"8\\..*">>, [{restart_application, ssl}]}, | ||
{<<"7\\..*">>, [{restart_application, ssl}]}, | ||
{<<"6\\..*">>, [{restart_application, ssl}]}, | ||
{<<"5\\..*">>, [{restart_application, ssl}]}, | ||
{<<"4\\..*">>, [{restart_application, ssl}]}, | ||
{<<"3\\..*">>, [{restart_application, ssl}]} | ||
{<<"9\\..*">>, [{restart_application, ssl}]} | ||
] | ||
}. |
Oops, something went wrong.