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
1 change: 1 addition & 0 deletions iocore/net/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ test_UDPNet_LDADD = \
@HWLOC_LIBS@ @OPENSSL_LIBS@ @LIBPCRE@ @YAMLCPP_LIBS@

test_UDPNet_SOURCES = \
libinknet_stub.cc \
test_I_UDPNet.cc

libinknet_a_SOURCES = \
Expand Down
162 changes: 162 additions & 0 deletions iocore/net/libinknet_stub.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,162 @@
/** @file

Stub file for linking libinknet.a from unit tests

@section license License

Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

#include "HttpSessionManager.h"
void
initialize_thread_for_http_sessions(EThread *, int)
{
ink_assert(false);
}

#include "P_UnixNet.h"
#include "P_DNSConnection.h"
int
DNSConnection::close()
{
ink_assert(false);
return 0;
}

void
DNSConnection::trigger()
{
ink_assert(false);
}

#include "StatPages.h"
void
StatPagesManager::register_http(char const *, Action *(*)(Continuation *, HTTPHdr *))
{
ink_assert(false);
}

#include "ParentSelection.h"
void
SocksServerConfig::startup()
{
ink_assert(false);
}

int SocksServerConfig::m_id = 0;

void
ParentConfigParams::findParent(HttpRequestData *, ParentResult *, unsigned int, unsigned int)
{
ink_assert(false);
}

void
ParentConfigParams::nextParent(HttpRequestData *, ParentResult *, unsigned int, unsigned int)
{
ink_assert(false);
}

#include "Log.h"
void
Log::trace_in(sockaddr const *, unsigned short, char const *, ...)
{
ink_assert(false);
}

void
Log::trace_out(sockaddr const *, unsigned short, char const *, ...)
{
ink_assert(false);
}

#include "InkAPIInternal.h"
int
APIHook::invoke(int, void *)
{
ink_assert(false);
return 0;
}

APIHook *
APIHook::next() const
{
ink_assert(false);
return nullptr;
}

APIHook *
APIHooks::get() const
{
ink_assert(false);
return nullptr;
}

void
ConfigUpdateCbTable::invoke(const char * /* name ATS_UNUSED */)
{
ink_release_assert(false);
}

#include "ControlMatcher.h"
char *
HttpRequestData::get_string()
{
ink_assert(false);
return nullptr;
}

const char *
HttpRequestData::get_host()
{
ink_assert(false);
return nullptr;
}

sockaddr const *
HttpRequestData::get_ip()
{
ink_assert(false);
return nullptr;
}

sockaddr const *
HttpRequestData::get_client_ip()
{
ink_assert(false);
return nullptr;
}

SslAPIHooks *ssl_hooks = nullptr;
StatPagesManager statPagesManager;

#include "ProcessManager.h"
inkcoreapi ProcessManager *pmgmt = nullptr;

int
BaseManager::registerMgmtCallback(int, MgmtCallback const &)
{
ink_assert(false);
return 0;
}

void
ProcessManager::signalManager(int, char const *, int)
{
ink_assert(false);
return;
}
142 changes: 0 additions & 142 deletions iocore/net/test_I_UDPNet.cc
Original file line number Diff line number Diff line change
Expand Up @@ -232,145 +232,3 @@ main(int /* argc ATS_UNUSED */, const char ** /* argv ATS_UNUSED */)
RegressionTest::run("UDPNet", REGRESSION_TEST_QUICK);
return RegressionTest::final_status == REGRESSION_TEST_PASSED ? 0 : 1;
}

//
// stub
//
void
initialize_thread_for_http_sessions(EThread *, int)
{
ink_assert(false);
}

#include "P_UnixNet.h"
#include "P_DNSConnection.h"
int
DNSConnection::close()
{
ink_assert(false);
return 0;
}

void
DNSConnection::trigger()
{
ink_assert(false);
}

#include "StatPages.h"
void
StatPagesManager::register_http(char const *, Action *(*)(Continuation *, HTTPHdr *))
{
ink_assert(false);
}

#include "ParentSelection.h"
void
SocksServerConfig::startup()
{
ink_assert(false);
}

int SocksServerConfig::m_id = 0;

void
ParentConfigParams::findParent(HttpRequestData *, ParentResult *, unsigned int, unsigned int)
{
ink_assert(false);
}

void
ParentConfigParams::nextParent(HttpRequestData *, ParentResult *, unsigned int, unsigned int)
{
ink_assert(false);
}

#include "Log.h"
void
Log::trace_in(sockaddr const *, unsigned short, char const *, ...)
{
ink_assert(false);
}

void
Log::trace_out(sockaddr const *, unsigned short, char const *, ...)
{
ink_assert(false);
}

#include "InkAPIInternal.h"
int
APIHook::invoke(int, void *)
{
ink_assert(false);
return 0;
}

APIHook *
APIHook::next() const
{
ink_assert(false);
return nullptr;
}

APIHook *
APIHooks::get() const
{
ink_assert(false);
return nullptr;
}

void
ConfigUpdateCbTable::invoke(const char * /* name ATS_UNUSED */)
{
ink_release_assert(false);
}

#include "ControlMatcher.h"
char *
HttpRequestData::get_string()
{
ink_assert(false);
return nullptr;
}

const char *
HttpRequestData::get_host()
{
ink_assert(false);
return nullptr;
}

sockaddr const *
HttpRequestData::get_ip()
{
ink_assert(false);
return nullptr;
}

sockaddr const *
HttpRequestData::get_client_ip()
{
ink_assert(false);
return nullptr;
}

SslAPIHooks *ssl_hooks = nullptr;
StatPagesManager statPagesManager;

#include "ProcessManager.h"
inkcoreapi ProcessManager *pmgmt = nullptr;

int
BaseManager::registerMgmtCallback(int, MgmtCallback const &)
{
ink_assert(false);
return 0;
}

void
ProcessManager::signalManager(int, char const *, int)
{
ink_assert(false);
return;
}