Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sebastian Schrader
Kea
Commits
b62e62a4
Commit
b62e62a4
authored
Jul 26, 2013
by
Thomas Markwalder
Browse files
[master] Add missing const on NameChangeUDPListener constructor
Build was failing under Solaris.
parent
a00b45ec
Changes
2
Show whitespace changes
Inline
Side-by-side
src/lib/dhcp_ddns/ncr_msg.h
View file @
b62e62a4
...
@@ -50,7 +50,7 @@ enum NameChangeStatus {
...
@@ -50,7 +50,7 @@ enum NameChangeStatus {
ST_NEW
,
ST_NEW
,
ST_PENDING
,
ST_PENDING
,
ST_COMPLETED
,
ST_COMPLETED
,
ST_FAILED
,
ST_FAILED
};
};
/// @brief Defines the list of data wire formats supported.
/// @brief Defines the list of data wire formats supported.
...
...
src/lib/dhcp_ddns/ncr_udp.cc
View file @
b62e62a4
...
@@ -70,7 +70,7 @@ UDPCallback::putData(const uint8_t* src, size_t len) {
...
@@ -70,7 +70,7 @@ UDPCallback::putData(const uint8_t* src, size_t len) {
//*************************** NameChangeUDPListener ***********************
//*************************** NameChangeUDPListener ***********************
NameChangeUDPListener
::
NameChangeUDPListener
::
NameChangeUDPListener
(
const
isc
::
asiolink
::
IOAddress
&
ip_address
,
NameChangeUDPListener
(
const
isc
::
asiolink
::
IOAddress
&
ip_address
,
const
uint32_t
port
,
NameChangeFormat
format
,
const
uint32_t
port
,
const
NameChangeFormat
format
,
RequestReceiveHandler
&
ncr_recv_handler
,
RequestReceiveHandler
&
ncr_recv_handler
,
const
bool
reuse_address
)
const
bool
reuse_address
)
:
NameChangeListener
(
ncr_recv_handler
),
ip_address_
(
ip_address
),
:
NameChangeListener
(
ncr_recv_handler
),
ip_address_
(
ip_address
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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