0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-02 13:48:53 +02:00

ircd::net: Add port number argument after service in ctor.

This commit is contained in:
Jason Volk 2018-04-23 00:07:55 -07:00
parent 18e9c792be
commit 3b57971f54

View file

@ -54,7 +54,7 @@ struct ircd::net::hostport
bool operator!() const;
hostport(const string_view &host, const string_view &service);
hostport(const string_view &host, const string_view &service, const uint16_t &port = 8448);
hostport(const string_view &host, const uint16_t &port);
hostport(const string_view &amalgam);
hostport() = default;
@ -69,10 +69,11 @@ struct ircd::net::hostport
/// TODO: now: the port 8448 is used with the hostname.
inline
ircd::net::hostport::hostport(const string_view &host,
const string_view &service)
const string_view &service,
const uint16_t &port)
:host{host}
,service{service}
,port{8448}
,port{port}
{}
/// Creates a host:port pair from a hostname and a port number. When