Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/iocore/net/BIO_fastopen.cc
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include "iocore/eventsystem/SocketManager.h"
#include "tscore/ink_assert.h"

#include "iocore/net/BIO_fastopen.h"
#include "BIO_fastopen.h"

// For BoringSSL, which for some reason doesn't have this function.
// (In BoringSSL, sock_read() and sock_write() use the internal
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/iocore/net/BoringSSLUtils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
// Borrowed from Envoy
// https://github.com/envoyproxy/envoy/blob/329b2491949fc52f4dc5c4a778ea158bfe6fe979/source/extensions/transport_sockets/tls/context_impl.cc#L962

#include "iocore/net/BoringSSLUtils.h"
#include "BoringSSLUtils.h"

#ifdef OPENSSL_IS_BORINGSSL
namespace BoringSSLUtils
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/iocore/net/OCSPStapling.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include "P_Net.h"
#include "P_SSLConfig.h"
#include "P_SSLUtils.h"
#include "iocore/net/SSLStats.h"
#include "SSLStats.h"
#include "api/FetchSM.h"

// Macros for ASN1 and the code in TS_OCSP_* functions were borrowed from OpenSSL 3.1.0 (a92271e03a8d0dee507b6f1e7f49512568b2c7ad),
Expand Down
2 changes: 1 addition & 1 deletion src/iocore/net/P_SSLConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#include "tscore/ink_inet.h"
#include "iocore/eventsystem/ConfigProcessor.h"

#include "iocore/net/SSLSessionCache.h"
#include "SSLSessionCache.h"
#include "iocore/net/YamlSNIConfig.h"

#include "P_SSLUtils.h"
Expand Down
2 changes: 1 addition & 1 deletion src/iocore/net/SSLCertLookup.cc
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

#include "P_SSLUtils.h"
#include "P_SSLConfig.h"
#include "iocore/net/SSLSessionTicket.h"
#include "SSLSessionTicket.h"

#include <unordered_map>
#include <utility>
Expand Down
2 changes: 1 addition & 1 deletion src/iocore/net/SSLClientUtils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#include "P_TLSKeyLogger.h"
#include "iocore/net/YamlSNIConfig.h"
#include "iocore/net/SSLDiags.h"
#include "iocore/net/SSLSessionCache.h"
#include "SSLSessionCache.h"

#include <openssl/err.h>
#include <openssl/pem.h>
Expand Down
4 changes: 2 additions & 2 deletions src/iocore/net/SSLConfig.cc
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
#include "P_SSLCertLookup.h"
#include "P_TLSKeyLogger.h"
#include "iocore/net/SSLDiags.h"
#include "iocore/net/SSLSessionCache.h"
#include "iocore/net/SSLSessionTicket.h"
#include "SSLSessionCache.h"
#include "SSLSessionTicket.h"
#include "iocore/net/YamlSNIConfig.h"

int SSLConfig::config_index = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/iocore/net/SSLDiags.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include <openssl/err.h>

#include "P_Net.h"
#include "iocore/net/SSLStats.h"
#include "SSLStats.h"
#include "P_SSLNetVConnection.h"

static DbgCtl ssl_diags_dbg_ctl{"ssl-diag"};
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/iocore/net/SSLNetProcessor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include "records/RecHttp.h"
#include "P_SSLUtils.h"
#include "P_OCSPStapling.h"
#include "iocore/net/SSLStats.h"
#include "SSLStats.h"
#include "P_SSLNetProcessor.h"
#include "P_SSLNetAccept.h"
#include "P_SSLNetVConnection.h"
Expand Down
4 changes: 2 additions & 2 deletions src/iocore/net/SSLNetVConnection.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
#include "P_SSLConfig.h"
#include "P_SSLClientUtils.h"
#include "P_SSLNetVConnection.h"
#include "iocore/net/BIO_fastopen.h"
#include "BIO_fastopen.h"
#include "iocore/net/SSLAPIHooks.h"
#include "iocore/net/SSLStats.h"
#include "SSLStats.h"
#include "iocore/net/TLSALPNSupport.h"

#include <netinet/in.h>
Expand Down
4 changes: 2 additions & 2 deletions src/iocore/net/SSLSessionCache.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
*/

#include "P_SSLConfig.h"
#include "iocore/net/SSLSessionCache.h"
#include "iocore/net/SSLStats.h"
#include "SSLSessionCache.h"
#include "SSLStats.h"

#include <cstring>
#include <memory>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/iocore/net/SSLSessionTicket.cc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
limitations under the License.
*/

#include "iocore/net/SSLSessionTicket.h"
#include "SSLSessionTicket.h"

#if TS_HAS_TLS_SESSION_TICKET

Expand Down
2 changes: 1 addition & 1 deletion src/iocore/net/SSLStats.cc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
limitations under the License.
*/

#include "iocore/net/SSLStats.h"
#include "SSLStats.h"

#include <openssl/err.h>

Expand Down
File renamed without changes.
10 changes: 5 additions & 5 deletions src/iocore/net/SSLUtils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@
#include "P_OCSPStapling.h"
#include "P_SSLConfig.h"
#include "P_TLSKeyLogger.h"
#include "iocore/net/BoringSSLUtils.h"
#include "BoringSSLUtils.h"
#include "iocore/net/ProxyProtocol.h"
#include "iocore/net/SSLAPIHooks.h"
#include "iocore/net/SSLSessionCache.h"
#include "iocore/net/SSLSessionTicket.h"
#include "iocore/net/SSLDynlock.h"
#include "SSLSessionCache.h"
#include "SSLSessionTicket.h"
#include "SSLDynlock.h"
#include "iocore/net/SSLDiags.h"
#include "iocore/net/SSLStats.h"
#include "SSLStats.h"
#include "iocore/net/TLSSessionResumptionSupport.h"
#if TS_USE_QUIC == 1
#include "iocore/net/QUICSupport.h"
Expand Down
2 changes: 1 addition & 1 deletion src/iocore/net/TLSBasicSupport.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*/

#include "iocore/net/TLSBasicSupport.h"
#include "iocore/net/SSLStats.h"
#include "SSLStats.h"

int TLSBasicSupport::_ex_data_index = -1;

Expand Down
2 changes: 1 addition & 1 deletion src/iocore/net/TLSSessionResumptionSupport.cc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include "iocore/net/SSLAPIHooks.h"

#include "P_SSLConfig.h"
#include "iocore/net/SSLStats.h"
#include "SSLStats.h"
#include <openssl/evp.h>
#include <openssl/hmac.h>
#ifdef HAVE_SSL_CTX_SET_TLSEXT_TICKET_KEY_EVP_CB
Expand Down