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
331b10dc
Commit
331b10dc
authored
Nov 29, 2013
by
Marcin Siodelski
Browse files
[2765] Fix an order of parameters passed to the SocketInfo constructor.
parent
5b9c261d
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/tools/perfdhcp/test_control.cc
View file @
331b10dc
...
...
@@ -47,7 +47,7 @@ namespace perfdhcp {
bool
TestControl
::
interrupted_
=
false
;
TestControl
::
TestControlSocket
::
TestControlSocket
(
const
int
socket
)
:
SocketInfo
(
socket
,
asiolink
::
IOAddress
(
"127.0.0.1"
),
0
),
SocketInfo
(
asiolink
::
IOAddress
(
"127.0.0.1"
),
0
,
socket
),
ifindex_
(
0
),
valid_
(
true
)
{
try
{
initSocketData
();
...
...
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