Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Kea
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
446
Issues
446
List
Boards
Labels
Service Desk
Milestones
Merge Requests
71
Merge Requests
71
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
ISC Open Source Projects
Kea
Commits
806865cd
Commit
806865cd
authored
Jan 07, 2013
by
Mukund Sivaraman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2432] Fix more cases of \return (use singular form)
parent
e7f9ab53
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
7 deletions
+6
-7
src/bin/resolver/resolver.h
src/bin/resolver/resolver.h
+3
-3
src/lib/cc/data.h
src/lib/cc/data.h
+1
-2
src/lib/config/config_data.h
src/lib/config/config_data.h
+2
-2
No files found.
src/bin/resolver/resolver.h
View file @
806865cd
...
...
@@ -200,14 +200,14 @@ public:
/**
* \short Get info about timeouts.
*
* \return
s
Timeout and retries (as described in setTimeouts).
* \return Timeout and retries (as described in setTimeouts).
*/
std
::
pair
<
int
,
unsigned
>
getTimeouts
()
const
;
/**
* \brief Get the timeout for outgoing queries
*
* \return
s
Timeout for outgoing queries
* \return Timeout for outgoing queries
*/
int
getQueryTimeout
()
const
;
...
...
@@ -218,7 +218,7 @@ public:
* (internal resolving on the query will continue, see
* \c getLookupTimeout())
*
* \return
s
Timeout for outgoing queries
* \return Timeout for outgoing queries
*/
int
getClientTimeout
()
const
;
...
...
src/lib/cc/data.h
View file @
806865cd
...
...
@@ -109,8 +109,7 @@ public:
/// \name pure virtuals, every derived class must implement these
/// \returns true if the other ElementPtr has the same type and
/// value
/// \return true if the other ElementPtr has the same type and value
virtual
bool
equals
(
const
Element
&
other
)
const
=
0
;
/// Converts the Element to JSON format and appends it to
...
...
src/lib/config/config_data.h
View file @
806865cd
...
...
@@ -93,8 +93,8 @@ public:
void
setLocalConfig
(
isc
::
data
::
ElementPtr
config
)
{
_config
=
config
;
}
/// Returns the local (i.e. non-default) configuration.
/// \return
s
An ElementPtr pointing to a MapElement containing all
///
non-default configuration options.
/// \return An ElementPtr pointing to a MapElement containing all
/// non-default configuration options.
isc
::
data
::
ElementPtr
getLocalConfig
()
{
return
(
_config
);
}
/// Returns a list of all possible configuration options as specified
...
...
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