0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-27 23:51:04 +08:00

Problem: socks_connecter_t, vmci_connecter_t and vmci_listener_t duplicate code with stream_*_base_t

Solution: add TODO comments to resolve this debt
This commit is contained in:
Simon Giesecke 2019-02-01 08:32:17 -05:00 committed by Simon Giesecke
parent b462cc0912
commit 2e73554644
3 changed files with 3 additions and 0 deletions

View File

@ -42,6 +42,7 @@ class io_thread_t;
class session_base_t;
struct address_t;
// TODO consider refactoring this to derive from stream_connecter_base_t
class socks_connecter_t : public own_t, public io_object_t
{
public:

View File

@ -45,6 +45,7 @@ class io_thread_t;
class session_base_t;
struct address_t;
// TODO consider refactoring this to derive from stream_connecter_base_t
class vmci_connecter_t : public own_t, public io_object_t
{
public:

View File

@ -46,6 +46,7 @@ namespace zmq
class io_thread_t;
class socket_base_t;
// TODO consider refactoring this to derive from stream_listener_base_t
class vmci_listener_t : public own_t, public io_object_t
{
public: