X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=CryptoPkg%2FLibrary%2FTlsLib%2FInternalTlsLib.h;h=cf5ffe1b73438fd0ab0fd01503e76255e0cde079;hp=88c4e3b38e4ef36ec94134d540799296b1ac4d76;hb=HEAD;hpb=264702a04b88e612f44615a8b968ca06c9d5435e diff --git a/CryptoPkg/Library/TlsLib/InternalTlsLib.h b/CryptoPkg/Library/TlsLib/InternalTlsLib.h index 88c4e3b38e..97a46af6c1 100644 --- a/CryptoPkg/Library/TlsLib/InternalTlsLib.h +++ b/CryptoPkg/Library/TlsLib/InternalTlsLib.h @@ -2,13 +2,7 @@ Internal include file for TlsLib. Copyright (c) 2016 - 2017, Intel Corporation. All rights reserved.
-This program and the accompanying materials -are licensed and made available under the terms and conditions of the BSD License -which accompanies this distribution. The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. +SPDX-License-Identifier: BSD-2-Clause-Patent **/ @@ -19,6 +13,14 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #undef _WIN64 #include +#include +#include +#include +#include +#include +#include +#include +#include #include #include #include @@ -28,16 +30,15 @@ typedef struct { // Main SSL Connection which is created by a server or a client // per established connection. // - SSL *Ssl; + SSL *Ssl; // // Memory BIO for the TLS/SSL Reading operations. // - BIO *InBio; + BIO *InBio; // // Memory BIO for the TLS/SSL Writing operations. // - BIO *OutBio; + BIO *OutBio; } TLS_CONNECTION; #endif -