VTTelnetDaemon.h
上传用户:wsk323
上传日期:2007-01-05
资源大小:403k
文件大小:3k
源码类别:

Telnet服务器

开发平台:

Visual C++

  1. /*---------------------------------------------------------------------------
  2. Copyright:    E. Brady Trexler
  3. Creation:     March 13, 1998 (based on F. Piette's telnet server demo).
  4.               A lot of code was lifted from his sources.
  5. Description:  VTTelnetDaemon -- a class that owns a TWSocket component.
  6.               The TWSocket listens to the telnet port and creates an
  7.               instance of a VTTelnetSession to start the session.
  8. Legal issues: Copyright (C) 1998 by E. Brady Trexler and Fran鏾is Piette
  9.               This software is provided 'as-is', without any express or
  10.               implied warranty.  In no event will the author be held liable
  11.               for any  damages arising from the use of this software.
  12.               Permission is granted to anyone to use this software for any
  13.               purpose, excluding commercial applications, and to alter it
  14.               and redistribute it freely, subject to the following
  15.               restrictions:
  16.               1. The origin of this software must not be misrepresented,
  17.                  you must not claim that you wrote the original software.
  18.                  If you use this software in a product, an acknowledgment
  19.                  in the product documentation would be appreciated but is
  20.                  not required.
  21.               2. Altered source versions must be plainly marked as such, and
  22.                  must not be misrepresented as being the original software.
  23.               3. This notice may not be removed or altered from any source
  24.                  distribution.
  25. Updates:
  26. ---------------------------------------------------------------------------*/
  27. //---------------------------------------------------------------------------
  28. #ifndef VTTelnetDaemonH
  29. #define VTTelnetDaemonH
  30. //---------------------------------------------------------------------------
  31. #include <vclClasses.hpp>
  32. #include <vclControls.hpp>
  33. #include <vclStdCtrls.hpp>
  34. #include <vclForms.hpp>
  35. #include "WSocket.hpp"
  36. #define WM_DISCONNECT      (WM_USER + 2)
  37. #define MAXSESSIONS 5
  38. //---------------------------------------------------------------------------
  39. class TVTDaemon : public TForm
  40. {
  41. __published: // IDE-managed Components
  42. TWSocket *SrvSocket;
  43. void __fastcall SrvSocketSessionAvailable(TObject *Sender, WORD Error);
  44. void __fastcall SrvSocketSessionClosed(TObject *Sender, WORD Error);
  45. private: // User declarations
  46. public: // User declarations
  47. char WelcomeMessage[256], ExitMessage[256];
  48. TList *TheSessions;
  49.   int __fastcall GetNumSessions();
  50. __fastcall TVTDaemon(TComponent* Owner);
  51. protected:
  52.     void __fastcall WMDisconnect(TMessage Message);
  53. BEGIN_MESSAGE_MAP
  54.     MESSAGE_HANDLER(WM_DISCONNECT, TMessage, WMDisconnect)
  55. END_MESSAGE_MAP(TForm)
  56. };
  57. //---------------------------------------------------------------------------
  58. extern TVTDaemon *VTDaemon;
  59. //---------------------------------------------------------------------------
  60. #endif
  61.