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
ISC Open Source Projects
Kea
Commits
d6e33479
Commit
d6e33479
authored
Dec 13, 2011
by
Tomek Mrugalski
🛰
Browse files
[992] Cosmetic changes (a follow-up to 1361)
parent
64546f4f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/dhcp/tests/iface_mgr_unittest.cc
View file @
d6e33479
...
...
@@ -30,7 +30,8 @@ using namespace isc::asiolink;
using
namespace
isc
::
dhcp
;
// name of loopback interface detection
char
LOOPBACK
[
32
]
=
"lo"
;
const
size_t
buf_size
=
32
;
char
LOOPBACK
[
buf_size
]
=
"lo"
;
namespace
{
const
char
*
const
INTERFACE_FILE
=
TEST_DATA_BUILDDIR
"/interfaces.txt"
;
...
...
@@ -70,16 +71,16 @@ TEST_F(IfaceMgrTest, loDetect) {
// poor man's interface detection
// it will go away as soon as proper interface detection
// is implemented
if
(
if_nametoindex
(
"lo"
)
>
0
)
{
if
(
if_nametoindex
(
"lo"
)
>
0
)
{
cout
<<
"This is Linux, using lo as loopback."
<<
endl
;
sprintf
(
LOOPBACK
,
"lo"
);
}
else
if
(
if_nametoindex
(
"lo0"
)
>
0
)
{
s
n
printf
(
LOOPBACK
,
buf_size
-
1
,
"lo"
);
}
else
if
(
if_nametoindex
(
"lo0"
)
>
0
)
{
cout
<<
"This is BSD, using lo0 as loopback."
<<
endl
;
sprintf
(
LOOPBACK
,
"lo0"
);
s
n
printf
(
LOOPBACK
,
buf_size
-
1
,
"lo0"
);
}
else
{
cout
<<
"Failed to detect loopback interface. Neither "
<<
"lo or lo0 worked. I give up."
<<
endl
;
ASSERT_TRUE
(
false
);
<<
"lo
n
or lo0 worked. I give up."
<<
endl
;
FAIL
(
);
}
}
...
...
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