mirror of
https://github.com/matrix-construct/construct
synced 2025-01-14 00:34:18 +01:00
ircd:Ⓜ️:fed: Remove opts inline constructor due to shared linkage issues.
This commit is contained in:
parent
100aefc605
commit
cb94558c4a
2 changed files with 2 additions and 4 deletions
|
@ -41,9 +41,5 @@ struct ircd::m::v1::user::opts
|
|||
const struct server::request::opts *sopts {nullptr};
|
||||
bool dynamic {true};
|
||||
|
||||
opts(const net::hostport &remote)
|
||||
:remote{remote}
|
||||
{}
|
||||
|
||||
opts() = default;
|
||||
};
|
||||
|
|
|
@ -84,6 +84,8 @@ struct ircd::net::dns::opts
|
|||
/// is ignored and always considered to be set to true; this is because
|
||||
/// the returned record is a reference to the cached error.
|
||||
bool nxdomain_exceptions {true};
|
||||
|
||||
opts() = default;
|
||||
};
|
||||
|
||||
/// (internal) DNS cache
|
||||
|
|
Loading…
Reference in a new issue