This commit is contained in:
Guenter Obiltschnig 2006-08-31 14:47:59 +00:00
Родитель fb39fe63e1
Коммит caf2a640df
2 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -1,7 +1,7 @@
// //
// SocketReactor.h // SocketReactor.h
// //
// $Id: //poco/1.2/Net/include/Poco/Net/SocketReactor.h#1 $ // $Id: //poco/1.2/Net/include/Poco/Net/SocketReactor.h#2 $
// //
// Library: Net // Library: Net
// Package: Reactor // Package: Reactor
@ -192,7 +192,7 @@ protected:
private: private:
typedef Poco::AutoPtr<SocketNotifier> NotifierPtr; typedef Poco::AutoPtr<SocketNotifier> NotifierPtr;
typedef Poco::AutoPtr<SocketNotification> NotificationPtr; typedef Poco::AutoPtr<SocketNotification> NotificationPtr;
typedef std::map<Socket, NotifierPtr> EventHandlerMap; typedef std::map<Socket, NotifierPtr> EventHandlerMap;
void dispatch(NotifierPtr& pNotifier, SocketNotification* pNotification); void dispatch(NotifierPtr& pNotifier, SocketNotification* pNotification);

Просмотреть файл

@ -1,7 +1,7 @@
// //
// EchoServer.cpp // EchoServer.cpp
// //
// $Id: //poco/1.2/Net/samples/EchoServer/src/EchoServer.cpp#1 $ // $Id: //poco/1.2/Net/samples/EchoServer/src/EchoServer.cpp#2 $
// //
// This sample demonstrates the SocketReactor and SocketAcceptor classes. // This sample demonstrates the SocketReactor and SocketAcceptor classes.
// //
@ -104,6 +104,7 @@ public:
void onShutdown(ShutdownNotification* pNf) void onShutdown(ShutdownNotification* pNf)
{ {
pNf->release();
delete this; delete this;
} }