cc_session = new Session(io_service.get_io_service());
LOG_DEBUG(auth_logger, DBG_AUTH_START, AUTH_CONFIG_CHANNEL_CREATED);
// Initialize the Socket Requestor
- isc::server_common::initSocketReqeustor(*cc_session);
+ isc::server_common::initSocketRequestor(*cc_session);
// We delay starting listening to new commands/config just before we
// go into the main loop to avoid confusion due to mixture of
LOG_DEBUG(resolver_logger, RESOLVER_DBG_INIT, RESOLVER_SERVICE_CREATED);
cc_session = new Session(io_service.get_io_service());
- isc::server_common::initSocketReqeustor(*cc_session);
+ isc::server_common::initSocketRequestor(*cc_session);
// We delay starting listening to new commands/config just before we
// go into the main loop to avoid confusion due to mixture of
}
void
-initSocketReqeustor(cc::AbstractSession& session) {
+initSocketRequestor(cc::AbstractSession& session) {
if (requestor != NULL) {
isc_throw(InvalidOperation,
"The socket requestor was already initialized");
/// \param session the CC session that'll be used to talk to the
/// socket creator.
/// \throw InvalidOperation when it is called more than once
-void initSocketReqeustor(cc::AbstractSession& session);
+void initSocketRequestor(cc::AbstractSession& session);
/// \brief Initialization for tests
///
ElementPtr(new ListElement),
ElementPtr(new ListElement))
{
- initSocketReqeustor(session);
+ initSocketRequestor(session);
}
~SocketRequestorTest() {