Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Adam Osuchowski
Kea
Commits
72d32778
Commit
72d32778
authored
Feb 13, 2014
by
Thomas Markwalder
Browse files
[3329] ioReady methods were missing commentary in dhcp_ddns.
Adding missing commentary in ncr_io.h and ncr_upd.h
parent
35c022c9
Changes
2
Show whitespace changes
Inline
Side-by-side
src/lib/dhcp_ddns/ncr_io.h
View file @
72d32778
...
@@ -576,6 +576,9 @@ public:
...
@@ -576,6 +576,9 @@ public:
/// @throw NcrSenderError if the sender is not in send mode,
/// @throw NcrSenderError if the sender is not in send mode,
virtual
int
getSelectFd
()
=
0
;
virtual
int
getSelectFd
()
=
0
;
/// @brief Returns whether or not the sender has IO ready to process.
///
/// @return true if the sender has at IO ready, false otherwise.
virtual
bool
ioReady
()
=
0
;
virtual
bool
ioReady
()
=
0
;
protected:
protected:
...
...
src/lib/dhcp_ddns/ncr_udp.h
View file @
72d32778
...
@@ -542,6 +542,9 @@ public:
...
@@ -542,6 +542,9 @@ public:
/// @throw NcrSenderError if the sender is not in send mode,
/// @throw NcrSenderError if the sender is not in send mode,
virtual
int
getSelectFd
();
virtual
int
getSelectFd
();
/// @brief Returns whether or not the sender has IO ready to process.
///
/// @return true if the sender has at IO ready, false otherwise.
virtual
bool
ioReady
();
virtual
bool
ioReady
();
private:
private:
...
...
Write
Preview
Supports
Markdown
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