Doxygen: Hide anonymous namespaces from documentation by default
Bonus: little doc fix for net_ssl.h
This commit is contained in:
parent
67e5ca9ad6
commit
6ef945d9a5
2
Doxyfile
2
Doxyfile
|
@ -452,7 +452,7 @@ EXTRACT_LOCAL_METHODS = NO
|
||||||
# are hidden.
|
# are hidden.
|
||||||
# The default value is: NO.
|
# The default value is: NO.
|
||||||
|
|
||||||
EXTRACT_ANON_NSPACES = YES
|
EXTRACT_ANON_NSPACES = NO
|
||||||
|
|
||||||
# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
|
# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
|
||||||
# undocumented members inside documented classes or files. If set to NO these
|
# undocumented members inside documented classes or files. If set to NO these
|
||||||
|
|
|
@ -104,7 +104,7 @@ namespace net_utils
|
||||||
//! \return False iff ssl is disabled, otherwise true.
|
//! \return False iff ssl is disabled, otherwise true.
|
||||||
explicit operator bool() const noexcept { return support != ssl_support_t::e_ssl_support_disabled; }
|
explicit operator bool() const noexcept { return support != ssl_support_t::e_ssl_support_disabled; }
|
||||||
|
|
||||||
//! \retrurn True if `host` can be verified using `this` configuration WITHOUT system "root" CAs.
|
//! \return True if `host` can be verified using `this` configuration WITHOUT system "root" CAs.
|
||||||
bool has_strong_verification(boost::string_ref host) const noexcept;
|
bool has_strong_verification(boost::string_ref host) const noexcept;
|
||||||
|
|
||||||
//! Search against internal fingerprints. Always false if `behavior() != user_certificate_check`.
|
//! Search against internal fingerprints. Always false if `behavior() != user_certificate_check`.
|
||||||
|
|
Loading…
Reference in New Issue