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
eab5b84d
Commit
eab5b84d
authored
Jun 01, 2012
by
Tomek Mrugalski
🛰
Browse files
[2017] Many Doxygen warnings removed.
parent
91164ce5
Changes
32
Hide whitespace changes
Inline
Side-by-side
src/bin/auth/auth_srv.cc
View file @
eab5b84d
...
...
@@ -390,8 +390,8 @@ private:
AuthSrv
*
server_
;
};
AuthSrv
::
AuthSrv
(
const
bool
use_cache
,
AbstractXfroutClient
&
xfrout_client
,
BaseSocketSessionForwarder
&
ddns_forwarder
)
AuthSrv
::
AuthSrv
(
const
bool
use_cache
,
isc
::
xfr
::
AbstractXfroutClient
&
xfrout_client
,
isc
::
util
::
io
::
BaseSocketSessionForwarder
&
ddns_forwarder
)
{
impl_
=
new
AuthSrvImpl
(
use_cache
,
xfrout_client
,
ddns_forwarder
);
checkin_
=
new
ConfigChecker
(
this
);
...
...
src/lib/asiolink/io_endpoint.h
View file @
eab5b84d
...
...
@@ -168,8 +168,8 @@ public:
///
/// This method converts the address and port of the endpoint in the textual
/// format that other BIND 10 modules would use in logging, i.e.,
/// - For IPv6 address: [
<
address
>
]:port (e.g., [2001:db8::5300]:53)
/// - For IPv4 address:
<
address
>
:port (e.g., 192.0.2.53:5300)
/// - For IPv6 address: [
<
address
>
]:port (e.g., [2001:db8::5300]:53)
/// - For IPv4 address:
<
address
>
:port (e.g., 192.0.2.53:5300)
///
/// If it's neither IPv6 nor IPv4, it converts the endpoint into text in the
/// same format as that for IPv4, although in practice such a case is not
...
...
src/lib/datasrc/memory_datasrc.cc
View file @
eab5b84d
...
...
@@ -1747,7 +1747,7 @@ generateRRsetFromIterator(ZoneIterator* iterator, LoadCallback callback) {
}
void
InMemoryZoneFinder
::
load
(
const
string
&
filename
)
{
InMemoryZoneFinder
::
load
(
const
std
::
string
&
filename
)
{
LOG_DEBUG
(
logger
,
DBG_TRACE_BASIC
,
DATASRC_MEM_LOAD
).
arg
(
getOrigin
()).
arg
(
filename
);
...
...
src/lib/dns/labelsequence.h
View file @
eab5b84d
...
...
@@ -101,7 +101,7 @@ public:
/// \note No actual memory is changed, this operation merely updates the
/// internal pointers based on the offsets in the Name object.
///
/// \exeption OutOfRange if i is greater than or equal to the number
/// \ex
c
eption OutOfRange if i is greater than or equal to the number
/// of labels currently pointed to by this LabelSequence
///
/// \param i The number of labels to remove.
...
...
@@ -112,7 +112,7 @@ public:
/// \note No actual memory is changed, this operation merely updates the
/// internal pointers based on the offsets in the Name object.
///
/// \exeption OutOfRange if i is greater than or equal to the number
/// \ex
c
eption OutOfRange if i is greater than or equal to the number
/// of labels currently pointed to by this LabelSequence
///
/// \param i The number of labels to remove.
...
...
src/lib/dns/rdata.cc
View file @
eab5b84d
...
...
@@ -119,7 +119,7 @@ Generic::Generic(isc::util::InputBuffer& buffer, size_t rdata_len) {
impl_
=
new
GenericImpl
(
data
);
}
Generic
::
Generic
(
const
string
&
rdata_string
)
{
Generic
::
Generic
(
const
std
::
string
&
rdata_string
)
{
istringstream
iss
(
rdata_string
);
string
unknown_mark
;
iss
>>
unknown_mark
;
...
...
src/lib/dns/rdata/any_255/tsig_250.cc
View file @
eab5b84d
...
...
@@ -74,25 +74,25 @@ struct TSIG::TSIGImpl {
/// \code <Alg> <Time> <Fudge> <MACsize> [<MAC>] <OrigID> <Error> <OtherLen> [<OtherData>]
/// \endcode
/// where
/// -
<Alg>
is a valid textual representation of domain name.
/// -
<Time>
is an unsigned 48-bit decimal integer.
/// -
<
MACSize
>, <
OrigID
>
, and
<
OtherLen
>
are an unsigned 16-bit decimal
/// -
<Alg>
is a valid textual representation of domain name.
/// -
<Time>
is an unsigned 48-bit decimal integer.
/// -
<
MACSize
>, <
OrigID
>
, and
<
OtherLen
>
are an unsigned 16-bit decimal
/// integer.
/// -
<
Error
>
is an unsigned 16-bit decimal integer or a valid mnemonic for
/// -
<
Error
>
is an unsigned 16-bit decimal integer or a valid mnemonic for
/// the Error field specified in RFC2845. Currently, "BADSIG", "BADKEY",
/// and "BADTIME" are supported (case sensitive). In future versions
/// other representations that are compatible with the DNS RCODE will be
/// supported.
/// -
<MAC>
and
<
OtherData
>
is a BASE-64 encoded string that does not contain
/// -
<MAC>
and
<
OtherData
>
is a BASE-64 encoded string that does not contain
/// space characters.
/// When
<
MACSize
>
and
<
OtherLen
>
is 0,
<MAC>
and
<
OtherData
>
must not
/// When
<
MACSize
>
and
<
OtherLen
>
is 0,
<MAC>
and
<
OtherData
>
must not
/// appear in \c tsgi_str, respectively.
/// - The decoded data of
<MAC> is <
MACSize
>
bytes of binary stream.
/// - The decoded data of
<
OtherData
> is <
OtherLen
>
bytes of binary stream.
/// - The decoded data of
<MAC> is <
MACSize
>
bytes of binary stream.
/// - The decoded data of
<
OtherData
> is <
OtherLen
>
bytes of binary stream.
///
/// An example of valid string is:
/// \code "hmac-sha256. 853804800 300 3 AAAA 2845 0 0" \endcode
/// In this example
<
OtherData
>
is missing because
<
OtherLen
>
is 0.
/// In this example
<
OtherData
>
is missing because
<
OtherLen
>
is 0.
///
/// Note that RFC2845 does not define the standard presentation format
/// of %TSIG RR, so the above syntax is implementation specific.
...
...
@@ -101,9 +101,9 @@ struct TSIG::TSIGImpl {
///
/// <b>Exceptions</b>
///
/// If
<Alg>
is not a valid domain name, a corresponding exception from
/// If
<Alg>
is not a valid domain name, a corresponding exception from
/// the \c Name class will be thrown;
/// if
<MAC> or <
OtherData
>
is not validly encoded in BASE-64, an exception
/// if
<MAC> or <
OtherData
>
is not validly encoded in BASE-64, an exception
/// of class \c isc::BadValue will be thrown;
/// if %any of the other bullet points above is not met, an exception of
/// class \c InvalidRdataText will be thrown.
...
...
src/lib/dns/rdata/ch_3/a_1.cc
View file @
eab5b84d
...
...
@@ -27,7 +27,7 @@ using namespace isc::util;
// BEGIN_ISC_NAMESPACE
// BEGIN_RDATA_NAMESPACE
A
::
A
(
const
string
&
)
{
A
::
A
(
const
std
::
string
&
)
{
// TBD
}
...
...
src/lib/dns/rdata/generic/dlv_32769.cc
View file @
eab5b84d
...
...
@@ -34,7 +34,7 @@ using namespace isc::dns::rdata::generic::detail;
/// \brief Constructor from string.
///
/// A copy of the implementation object is allocated and constructed.
DLV
::
DLV
(
const
string
&
ds_str
)
:
DLV
::
DLV
(
const
std
::
string
&
ds_str
)
:
impl_
(
new
DLVImpl
(
ds_str
))
{}
...
...
src/lib/dns/rdata/generic/dnskey_48.cc
View file @
eab5b84d
...
...
@@ -51,7 +51,7 @@ struct DNSKEYImpl {
const
vector
<
uint8_t
>
keydata_
;
};
DNSKEY
::
DNSKEY
(
const
string
&
dnskey_str
)
:
DNSKEY
::
DNSKEY
(
const
std
::
string
&
dnskey_str
)
:
impl_
(
NULL
)
{
istringstream
iss
(
dnskey_str
);
...
...
src/lib/dns/rdata/generic/ds_43.cc
View file @
eab5b84d
...
...
@@ -31,7 +31,7 @@ using namespace isc::dns::rdata::generic::detail;
// BEGIN_ISC_NAMESPACE
// BEGIN_RDATA_NAMESPACE
DS
::
DS
(
const
string
&
ds_str
)
:
DS
::
DS
(
const
std
::
string
&
ds_str
)
:
impl_
(
new
DSImpl
(
ds_str
))
{}
...
...
src/lib/dns/rdata/generic/hinfo_13.cc
View file @
eab5b84d
...
...
@@ -37,7 +37,7 @@ using namespace isc::dns::characterstr;
// BEGIN_RDATA_NAMESPACE
HINFO
::
HINFO
(
const
string
&
hinfo_str
)
{
HINFO
::
HINFO
(
const
std
::
string
&
hinfo_str
)
{
string
::
const_iterator
input_iterator
=
hinfo_str
.
begin
();
cpu_
=
getNextCharacterString
(
hinfo_str
,
input_iterator
);
...
...
src/lib/dns/rdata/generic/nsec3_50.cc
View file @
eab5b84d
...
...
@@ -64,7 +64,7 @@ struct NSEC3Impl {
const
vector
<
uint8_t
>
typebits_
;
};
NSEC3
::
NSEC3
(
const
string
&
nsec3_str
)
:
NSEC3
::
NSEC3
(
const
std
::
string
&
nsec3_str
)
:
impl_
(
NULL
)
{
istringstream
iss
(
nsec3_str
);
...
...
src/lib/dns/rdata/generic/nsec3param_51.cc
View file @
eab5b84d
...
...
@@ -46,7 +46,7 @@ struct NSEC3PARAMImpl {
const
vector
<
uint8_t
>
salt_
;
};
NSEC3PARAM
::
NSEC3PARAM
(
const
string
&
nsec3param_str
)
:
NSEC3PARAM
::
NSEC3PARAM
(
const
std
::
string
&
nsec3param_str
)
:
impl_
(
NULL
)
{
istringstream
iss
(
nsec3param_str
);
...
...
src/lib/dns/rdata/generic/nsec_47.cc
View file @
eab5b84d
...
...
@@ -49,7 +49,7 @@ struct NSECImpl {
vector
<
uint8_t
>
typebits_
;
};
NSEC
::
NSEC
(
const
string
&
nsec_str
)
:
NSEC
::
NSEC
(
const
std
::
string
&
nsec_str
)
:
impl_
(
NULL
)
{
istringstream
iss
(
nsec_str
);
...
...
src/lib/dns/rdata/generic/opt_41.cc
View file @
eab5b84d
...
...
@@ -27,7 +27,7 @@ using namespace isc::util;
// BEGIN_ISC_NAMESPACE
// BEGIN_RDATA_NAMESPACE
OPT
::
OPT
(
const
string
&
)
{
OPT
::
OPT
(
const
std
::
string
&
)
{
isc_throw
(
InvalidRdataText
,
"OPT RR cannot be constructed from text"
);
}
...
...
src/lib/dns/rdata/generic/ptr_12.cc
View file @
eab5b84d
...
...
@@ -28,7 +28,7 @@ using namespace isc::util;
// BEGIN_ISC_NAMESPACE
// BEGIN_RDATA_NAMESPACE
PTR
::
PTR
(
const
string
&
type_str
)
:
PTR
::
PTR
(
const
std
::
string
&
type_str
)
:
ptr_name_
(
type_str
)
{}
...
...
src/lib/dns/rdata/generic/rrsig_46.cc
View file @
eab5b84d
...
...
@@ -72,7 +72,7 @@ struct RRSIGImpl {
const
vector
<
uint8_t
>
signature_
;
};
RRSIG
::
RRSIG
(
const
string
&
rrsig_str
)
:
RRSIG
::
RRSIG
(
const
std
::
string
&
rrsig_str
)
:
impl_
(
NULL
)
{
istringstream
iss
(
rrsig_str
);
...
...
src/lib/dns/rdata/generic/soa_6.cc
View file @
eab5b84d
...
...
@@ -41,7 +41,7 @@ SOA::SOA(InputBuffer& buffer, size_t) :
buffer
.
readData
(
numdata_
,
sizeof
(
numdata_
));
}
SOA
::
SOA
(
const
string
&
soastr
)
:
SOA
::
SOA
(
const
std
::
string
&
soastr
)
:
mname_
(
"."
),
rname_
(
"."
)
// quick hack workaround
{
istringstream
iss
(
soastr
);
...
...
src/lib/dns/rdata/generic/sshfp_44.cc
View file @
eab5b84d
...
...
@@ -80,7 +80,7 @@ SSHFP::SSHFP(const std::string& sshfp_str)
decodeHex
(
fingerprintbuf
.
str
(),
fingerprint_
);
}
SSHFP
::
SSHFP
(
uint8_t
algorithm
,
uint8_t
fingerprint_type
,
const
string
&
fingerprint
)
SSHFP
::
SSHFP
(
uint8_t
algorithm
,
uint8_t
fingerprint_type
,
const
std
::
string
&
fingerprint
)
{
if
((
algorithm
<
1
)
||
(
algorithm
>
2
))
{
isc_throw
(
InvalidRdataText
,
"SSHFP algorithm number out of range"
);
...
...
src/lib/dns/rdata/hs_4/a_1.cc
View file @
eab5b84d
...
...
@@ -27,7 +27,7 @@ using namespace isc::util;
// BEGIN_ISC_NAMESPACE
// BEGIN_RDATA_NAMESPACE
A
::
A
(
const
string
&
)
{
A
::
A
(
const
std
::
string
&
)
{
// TBD
}
...
...
Prev
1
2
Next
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