Skip to content

Commit f7f2ac1

Browse files
committed
moved header files to include/api
1 parent 7afa8aa commit f7f2ac1

26 files changed

+27
-28
lines changed
File renamed without changes.

iocore/aio/test_AIO.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*/
2323

2424
#include "P_AIO.h"
25-
#include "InkAPIInternal.h"
25+
#include "api/InkAPIInternal.h"
2626
#include "tscore/ink_hw.h"
2727
#include "tscore/I_Layout.h"
2828
#include "tscore/TSSystemState.h"

iocore/cache/Cache.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#include "HttpTransactCache.h"
3434
#include "HttpSM.h"
3535
#include "HttpCacheSM.h"
36-
#include "InkAPIInternal.h"
36+
#include "api/InkAPIInternal.h"
3737

3838
#include "tscore/hugepages.h"
3939

iocore/cache/test/stub.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ initialize_thread_for_http_sessions(EThread *, int)
3838
ink_assert(false);
3939
}
4040

41-
#include "InkAPIInternal.h"
41+
#include "api/InkAPIInternal.h"
4242
void
4343
APIHooks::append(INKContInternal *cont)
4444
{
@@ -213,7 +213,7 @@ INKVConnInternal::INKVConnInternal() : INKContInternal() {}
213213

214214
INKVConnInternal::INKVConnInternal(TSEventFunc funcp, TSMutex mutexp) : INKContInternal(funcp, mutexp) {}
215215

216-
#include "../src/api/FetchSM.h"
216+
#include "api/FetchSM.h"
217217
ClassAllocator<FetchSM> FetchSMAllocator("unusedFetchSMAllocator");
218218
void
219219
FetchSM::ext_launch()

iocore/net/Makefile.am

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ AM_CPPFLAGS += \
2929
-I$(abs_top_srcdir)/proxy/shared \
3030
-I$(abs_top_srcdir)/proxy/http \
3131
-I$(abs_top_srcdir)/proxy/http/remap \
32-
-I$(abs_top_srcdir)/src/api \
3332
$(TS_INCLUDES) \
3433
@OPENSSL_INCLUDES@ \
3534
@YAMLCPP_INCLUDES@ \

iocore/net/OCSPStapling.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#include "P_SSLConfig.h"
3232
#include "P_SSLUtils.h"
3333
#include "SSLStats.h"
34-
#include "FetchSM.h"
34+
#include "api/FetchSM.h"
3535

3636
// Macros for ASN1 and the code in TS_OCSP_* functions were borrowed from OpenSSL 3.1.0 (a92271e03a8d0dee507b6f1e7f49512568b2c7ad),
3737
// and were modified to make them compilable with BoringSSL and C++ compiler.

iocore/net/QUICNetVConnection.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#include "P_QUICNetVConnection.h"
3131
#include "P_QUICPacketHandler.h"
3232
#include "P_Net.h"
33-
#include "InkAPIInternal.h" // Added to include the quic_hook definitions
33+
#include "api/InkAPIInternal.h" // Added to include the quic_hook definitions
3434

3535
#include "P_SSLNextProtocolSet.h"
3636
#include "QUICMultiCertConfigLoader.h"

iocore/net/SSLConfig.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
#include "tscore/ink_config.h"
3838
#include <openssl/pem.h>
3939

40-
#include "InkAPIInternal.h" // Added to include the ssl_hook and lifestyle_hook definitions
40+
#include "api/InkAPIInternal.h" // Added to include the ssl_hook and lifestyle_hook definitions
4141

4242
#include "tscore/ink_platform.h"
4343
#include "tscore/I_Layout.h"

iocore/net/SSLNetVConnection.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#include "tscore/I_Layout.h"
2727
#include "tscore/TSSystemState.h"
2828

29-
#include "InkAPIInternal.h" // Added to include the ssl_hook definitions
29+
#include "api/InkAPIInternal.h" // Added to include the ssl_hook definitions
3030
#include "HttpTunnel.h"
3131
#include "ProxyProtocol.h"
3232
#include "HttpConfig.h"

0 commit comments

Comments
 (0)