mirror of
https://github.com/matrix-construct/construct
synced 2024-12-28 08:24:08 +01:00
ircd::net: Kill implicit conversion.
This commit is contained in:
parent
54d6cbc8c1
commit
9bb927712e
1 changed files with 2 additions and 2 deletions
|
@ -48,9 +48,9 @@ struct ircd::net::open_opts
|
|||
friend string_view common_name(const open_opts &);
|
||||
|
||||
open_opts() = default;
|
||||
open_opts(const net::ipport &ipport);
|
||||
explicit open_opts(const net::ipport &ipport);
|
||||
open_opts(const net::hostport &hostport);
|
||||
explicit open_opts(const net::remote &remote);
|
||||
open_opts(const net::remote &remote);
|
||||
|
||||
/// Remote's hostname and port. This will be used for address resolution
|
||||
/// if an ipport is not also provided later. The hostname will also be used
|
||||
|
|
Loading…
Reference in a new issue