diff options
author | Nicolas 'Pixel' Noble <pixel@nobis-crew.org> | 2013-01-17 23:57:31 -0800 |
---|---|---|
committer | Nicolas 'Pixel' Noble <pixel@nobis-crew.org> | 2013-01-17 23:57:31 -0800 |
commit | 8c5bdc2344dbc6c1629e258b7965442046600584 (patch) | |
tree | ccb3d47880a6ab263c95abc1b9c1b5c618d7351b /includes | |
parent | c728e983b71898a06685773128ab9f7b76f2ada8 (diff) |
The Listener factory is now a StacklessTask.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/Socket.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/Socket.h b/includes/Socket.h index 2a6a95d..7972cb5 100644 --- a/includes/Socket.h +++ b/includes/Socket.h @@ -10,6 +10,7 @@ #include <Handle.h> #include <TaskMan.h> #include <Task.h> +#include <StacklessTask.h> #include <Printer.h> namespace Balau { @@ -61,7 +62,7 @@ class Socket : public Handle { DNSRequest * m_req = NULL; }; -class ListenerBase : public Task { +class ListenerBase : public StacklessTask { public: virtual void Do(); void stop(); |