ListenSocket.h
上传用户:zslianheng
上传日期:2013-04-03
资源大小:946k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Visual C++

  1. /***************************************************************************
  2.  *                                                                         *
  3.  *   This program is free software; you can redistribute it and/or modify  *
  4.  *   it under the terms of the GNU General Public License as published by  *
  5.  *   the Free Software Foundation; either version 2 of the License, or     *
  6.  *   (at your option) any later version.                                   *
  7.  *                                                                         *
  8.  *   copyright            : (C) 2002 by Zhang Yong                         *
  9.  *   email                : z-yong163@163.com                              *
  10.  ***************************************************************************/
  11. #if !defined(AFX_LISTENSOCKET_H__341221F2_4EB2_4E0E_B2AF_C26E8F4C2677__INCLUDED_)
  12. #define AFX_LISTENSOCKET_H__341221F2_4EB2_4E0E_B2AF_C26E8F4C2677__INCLUDED_
  13. #if _MSC_VER > 1000
  14. #pragma once
  15. #endif // _MSC_VER > 1000
  16. // ListenSocket.h : header file
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CListenSocket command target
  20. class CListenSocket : public CAsyncSocket
  21. {
  22. // Attributes
  23. public:
  24. // Operations
  25. public:
  26. CListenSocket(const char *name);
  27. virtual ~CListenSocket();
  28. // Overrides
  29. public:
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CListenSocket)
  32. public:
  33. virtual void OnAccept(int nErrorCode);
  34. //}}AFX_VIRTUAL
  35. // Generated message map functions
  36. //{{AFX_MSG(CListenSocket)
  37. // NOTE - the ClassWizard will add and remove member functions here.
  38. //}}AFX_MSG
  39. // Implementation
  40. protected:
  41. CString sessionName;
  42. };
  43. /////////////////////////////////////////////////////////////////////////////
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_LISTENSOCKET_H__341221F2_4EB2_4E0E_B2AF_C26E8F4C2677__INCLUDED_)