Parent Directory
|
Revision Log
Rename to class nntp_active to base_active Rename to class nntp_passive to base_passive
| 1 | /*******************************************************/ |
| 2 | /* */ |
| 3 | /* LeafOK Innd */ |
| 4 | /* Copyright (C) LeafOK.com, 2003-2004 */ |
| 5 | /* */ |
| 6 | /* Programmed by Leaf */ |
| 7 | /* E-mail:leaf@leafok.com QQ:6049044 */ |
| 8 | /* */ |
| 9 | /* http://bbs.leafok.com */ |
| 10 | /* http://bbs.leafok.net */ |
| 11 | /* http://bbs.fenglin.info */ |
| 12 | /* */ |
| 13 | /*******************************************************/ |
| 14 | |
| 15 | #pragma once |
| 16 | #include "base_active.h" |
| 17 | |
| 18 | class outd : |
| 19 | public base_active |
| 20 | { |
| 21 | public: |
| 22 | outd(void); |
| 23 | ~outd(void); |
| 24 | int work(); |
| 25 | int Startup(void); |
| 26 | int Shutdown(void); |
| 27 | bool IsShutdown(void); |
| 28 | protected: |
| 29 | int w_call(void); |
| 30 | private: |
| 31 | static bool thread_terminate; |
| 32 | }; |
| webmaster@leafok.com | ViewVC Help |
| Powered by ViewVC 1.3.0-beta1 |