started reactor refactoring

This commit is contained in:
Sascha Kühl
2025-07-18 15:33:04 +02:00
parent 3781bd0b66
commit f32594d9fd
11 changed files with 544 additions and 434 deletions
+2 -3
View File
@@ -25,8 +25,7 @@ namespace matador {
* @tparam P Protocol type
*/
template < class P >
class socket_base
{
class socket_base {
public:
typedef P protocol_type; /**< Shortcut to the protocol type */
typedef typename P::peer peer_type; /**< Shortcut to the peer type */
@@ -42,7 +41,7 @@ public:
/**
* Creates a socket with the given peer
*
* @param peer Peer used to initialize the socket
* @param peer Peer used to initialise the socket
*/
explicit socket_base(const peer_type &peer);