Problem: duplication in *_event methods across subclasses of stream_connecter_base_t

Solution: pull up common code, introduce new create_engine function in base class
This commit is contained in:
Simon Giesecke
2019-01-31 09:52:21 -05:00
parent a09099a615
commit 7e73587741
8 changed files with 46 additions and 81 deletions

View File

@@ -58,9 +58,7 @@ class tipc_connecter_t : public stream_connecter_base_t
};
// Handlers for I/O events.
void in_event ();
void out_event ();
void timer_event (int id_);
// Internal function to start the actual connection establishment.
void start_connecting ();