--- innwebd/innd.h 2004/06/25 07:01:51 1.1 +++ innwebd/innd.h 2004/07/02 11:32:33 1.2 @@ -13,5 +13,22 @@ /*******************************************************/ #pragma once +#include "nntp_passive.h" -#include "resource.h" +class innd : + public nntp_passive +{ +public: + innd(void); + ~innd(void); + int Startup(void); + int Shutdown(void); + bool IsShutdown(void); +private: + static bool thread_terminate; + int Accept(void); + innd* new_client(void); + int cmd_list(void); + int cmd_ihave(const char* msg_id); + int db_env_init(void); +};