⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tcpserverdlg.h

📁 多客户端与服务器(多线程)通信
💻 H
字号:
// TCPServerDlg.h : header file
//

#if !defined(AFX_TCPSERVERDLG_H__A404D39F_3FBA_40A7_A022_43FE2819D304__INCLUDED_)
#define AFX_TCPSERVERDLG_H__A404D39F_3FBA_40A7_A022_43FE2819D304__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

/////////////////////////////////////////////////////////////////////////////
// CTCPServerDlg dialog

class CTCPServerDlg : public CDialog
{
// Construction
public:
	CString Recurse(CString pstr,CString fileName);
	int TransportFile(CSocket &recSo,SOCKADDR_IN &client);
	int ReceiveFileMsg(CSocket &recSo,SOCKADDR_IN &client,CString theFile);
	char m_MessageType;
	bool m_isStop;
	int GetNamebyAddress(const CString &IpAddress,CString &sYouName);
	int GetIpAddress(const CString &sHostName, CString &sIpAddress);
	int GetLocalHostName(CString &sHostName);
	CString GetError(DWORD param);
	CTCPServerDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CTCPServerDlg)
	enum { IDD = IDD_TCPSERVER_DIALOG };
	CIPAddressCtrl	m_HostIP;
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CTCPServerDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CTCPServerDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnBtnStart();
	afx_msg void OnBtnShutdown();
	afx_msg void OnBtnSave();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_TCPSERVERDLG_H__A404D39F_3FBA_40A7_A022_43FE2819D304__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -