Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sebastian Schrader
Kea
Commits
98ec643b
Commit
98ec643b
authored
Jan 10, 2012
by
JINMEI Tatuya
Browse files
[1546] (unrelated cleanup) corrected typo in a function name
parent
5279c2e1
Changes
5
Hide whitespace changes
Inline
Side-by-side
src/bin/auth/main.cc
View file @
98ec643b
...
...
@@ -160,7 +160,7 @@ main(int argc, char* argv[]) {
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
::
initSocketReq
e
ustor
(
*
cc_session
);
isc
::
server_common
::
initSocketRequ
e
stor
(
*
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
...
...
src/bin/resolver/main.cc
View file @
98ec643b
...
...
@@ -208,7 +208,7 @@ main(int argc, char* argv[]) {
LOG_DEBUG
(
resolver_logger
,
RESOLVER_DBG_INIT
,
RESOLVER_SERVICE_CREATED
);
cc_session
=
new
Session
(
io_service
.
get_io_service
());
isc
::
server_common
::
initSocketReq
e
ustor
(
*
cc_session
);
isc
::
server_common
::
initSocketRequ
e
stor
(
*
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
...
...
src/lib/server_common/socket_request.cc
View file @
98ec643b
...
...
@@ -380,7 +380,7 @@ socketRequestor() {
}
void
initSocketReq
e
ustor
(
cc
::
AbstractSession
&
session
)
{
initSocketRequ
e
stor
(
cc
::
AbstractSession
&
session
)
{
if
(
requestor
!=
NULL
)
{
isc_throw
(
InvalidOperation
,
"The socket requestor was already initialized"
);
...
...
src/lib/server_common/socket_request.h
View file @
98ec643b
...
...
@@ -168,7 +168,7 @@ SocketRequestor& socketRequestor();
/// \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
initSocketReq
e
ustor
(
cc
::
AbstractSession
&
session
);
void
initSocketRequ
e
stor
(
cc
::
AbstractSession
&
session
);
/// \brief Initialization for tests
///
...
...
src/lib/server_common/tests/socket_requestor_test.cc
View file @
98ec643b
...
...
@@ -83,7 +83,7 @@ public:
ElementPtr
(
new
ListElement
),
ElementPtr
(
new
ListElement
))
{
initSocketReq
e
ustor
(
session
);
initSocketRequ
e
stor
(
session
);
}
~
SocketRequestorTest
()
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment