Skip to content

Commit a721ef7

Browse files
committed
Adapt to network::session_tcp rename to session_server.
1 parent c2283d1 commit a721ef7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/bitcoin/node/sessions/session_tcp.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,18 @@ namespace node {
2929
class full_node;
3030

3131
class BCN_API session_tcp
32-
: public network::session_tcp,
32+
: public network::session_server,
3333
public node::session
3434
{
3535
public:
3636
typedef std::shared_ptr<session_tcp> ptr;
37-
using options_t = network::session_tcp::options_t;
37+
using options_t = network::session_server::options_t;
3838
using channel_t = node::channel_tcp;
3939

4040
// (network::net&) cast due to full_node forward ref (inheritance hidden).
4141
session_tcp(full_node& node, uint64_t identifier,
4242
const options_t& options) NOEXCEPT
43-
: network::session_tcp((network::net&)node, identifier, options),
43+
: network::session_server((network::net&)node, identifier, options),
4444
node::session(node)
4545
{
4646
}

0 commit comments

Comments
 (0)