summaryrefslogtreecommitdiff
path: root/includes/Socket.h
diff options
context:
space:
mode:
authorNicolas 'Pixel' Noble <pixel@nobis-crew.org>2013-01-17 23:57:31 -0800
committerNicolas 'Pixel' Noble <pixel@nobis-crew.org>2013-01-17 23:57:31 -0800
commit8c5bdc2344dbc6c1629e258b7965442046600584 (patch)
treeccb3d47880a6ab263c95abc1b9c1b5c618d7351b /includes/Socket.h
parentc728e983b71898a06685773128ab9f7b76f2ada8 (diff)
The Listener factory is now a StacklessTask.
Diffstat (limited to 'includes/Socket.h')
-rw-r--r--includes/Socket.h3
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();