PersonalProxyDlg.cpp
上传用户:mingyuanzm
上传日期:2007-01-04
资源大小:117k
文件大小:7k
源码类别:

代理服务器

开发平台:

Visual C++

  1. // PersonalProxyDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "PersonalProxy.h"
  5. #include "PersonalProxyDlg.h"
  6. #include "winsock.h"
  7. #include "WorkingThread.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CAboutDlg dialog used for App About dumpout.cpp
  15. #include "WorkingThread.h"
  16. class CAboutDlg : public CDialog
  17. {
  18. public:
  19. CAboutDlg();
  20. // Dialog Data
  21. //{{AFX_DATA(CAboutDlg)
  22. enum { IDD = IDD_ABOUTBOX };
  23. //}}AFX_DATA
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CAboutDlg)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. protected:
  31. //{{AFX_MSG(CAboutDlg)
  32. //}}AFX_MSG
  33. DECLARE_MESSAGE_MAP()
  34. };
  35. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  36. {
  37. //{{AFX_DATA_INIT(CAboutDlg)
  38. //}}AFX_DATA_INIT
  39. }
  40. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  41. {
  42. CDialog::DoDataExchange(pDX);
  43. //{{AFX_DATA_MAP(CAboutDlg)
  44. //}}AFX_DATA_MAP
  45. }
  46. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  47. //{{AFX_MSG_MAP(CAboutDlg)
  48. // No message handlers
  49. //}}AFX_MSG_MAP
  50. END_MESSAGE_MAP()
  51. /////////////////////////////////////////////////////////////////////////////
  52. // CPersonalProxyDlg dialog
  53. CPersonalProxyDlg::CPersonalProxyDlg(CWnd* pParent /*=NULL*/)
  54. : CDialog(CPersonalProxyDlg::IDD, pParent)
  55. {
  56. //{{AFX_DATA_INIT(CPersonalProxyDlg)
  57. m_strPasswd = _T("263");
  58. m_nPort = 8080;
  59. m_nProxyPort = 2000;
  60. m_strUser = _T("user");
  61. //}}AFX_DATA_INIT
  62. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  63. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  64. }
  65. void CPersonalProxyDlg::DoDataExchange(CDataExchange* pDX)
  66. {
  67. CDialog::DoDataExchange(pDX);
  68. //{{AFX_DATA_MAP(CPersonalProxyDlg)
  69. DDX_Control(pDX, IDC_OUTPUT, m_editOutput);
  70. DDX_Control(pDX, IDC_IPADDRESS1, m_ip);
  71. DDX_Text(pDX, IDC_PASSWORD, m_strPasswd);
  72. DDX_Text(pDX, IDC_PORT, m_nPort);
  73. DDX_Text(pDX, IDC_PROXY_PORT, m_nProxyPort);
  74. DDX_Text(pDX, IDC_USER, m_strUser);
  75. //}}AFX_DATA_MAP
  76. }
  77. BEGIN_MESSAGE_MAP(CPersonalProxyDlg, CDialog)
  78. //{{AFX_MSG_MAP(CPersonalProxyDlg)
  79. ON_WM_SYSCOMMAND()
  80. ON_WM_PAINT()
  81. ON_WM_QUERYDRAGICON()
  82. ON_BN_CLICKED(IDC_START_LISTEN, OnStartListen)
  83. ON_WM_CLOSE()
  84. ON_WM_DESTROY()
  85. //}}AFX_MSG_MAP
  86. ON_MESSAGE(AGM_OUTPUT, OnOutput)
  87. END_MESSAGE_MAP()
  88. /////////////////////////////////////////////////////////////////////////////
  89. // CPersonalProxyDlg message handlers
  90. BOOL CPersonalProxyDlg::OnInitDialog()
  91. {
  92. CDialog::OnInitDialog();
  93. // Add "About..." menu item to system menu.
  94. // IDM_ABOUTBOX must be in the system command range.
  95. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  96. ASSERT(IDM_ABOUTBOX < 0xF000);
  97. CMenu* pSysMenu = GetSystemMenu(FALSE);
  98. if (pSysMenu != NULL)
  99. {
  100. CString strAboutMenu;
  101. strAboutMenu.LoadString(IDS_ABOUTBOX);
  102. if (!strAboutMenu.IsEmpty())
  103. {
  104. pSysMenu->AppendMenu(MF_SEPARATOR);
  105. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  106. }
  107. }
  108. // Set the icon for this dialog.  The framework does this automatically
  109. //  when the application's main window is not a dialog
  110. SetIcon(m_hIcon, TRUE); // Set big icon
  111. SetIcon(m_hIcon, FALSE); // Set small icon
  112. // TODO: Add extra initialization here
  113. WSADATA data;
  114. int iRet;
  115. iRet = WSAStartup(MAKEWORD(2,2), &data);
  116. m_ip.SetAddress(202,198,47,21);
  117. g_hConnectionCount = CreateSemaphore(NULL, 1, 1, NULL);
  118. m_dwCount = 0;
  119. m_pFile = fopen("g:\ag\log\proxy.log", "ab");
  120. BYTE b1, b2, b3, b4;
  121. int nRet;
  122. FILE * pFile = fopen("g:\ag\personalproxy\refuse.txt", "r");
  123. while(!feof(pFile))
  124. {
  125. nRet = fscanf(pFile, "%d.%d.%d.%d", &b1, &b2, &b3, &b4);
  126. if(nRet!=4)break;
  127. g_ulIpRefused[g_nRefused] = b4<<24 | b3<<16 | b2<<8 | b1;
  128. g_nRefused++;
  129. }
  130. // HKEY_CURRENT_USERSoftwareMax Studio
  131. HKEY hKey;
  132. DWORD dwType, dwSize;
  133. char pszPassword[16];
  134. dwSize = 16;
  135. dwType = REG_SZ;
  136. if(RegCreateKey(HKEY_CURRENT_USER, "Software\Max Studio\PersonalProxy", &hKey)==ERROR_SUCCESS)
  137. {
  138. if(RegQueryValueEx(hKey, "pszPassword", 0, &dwType, (BYTE*)pszPassword, &dwSize)!=ERROR_SUCCESS)
  139. {
  140. m_strPasswd = "66";
  141. }
  142. {
  143. m_strPasswd = (CString)pszPassword;
  144. }
  145. RegCloseKey(hKey);
  146. }
  147. UpdateData(false);
  148. return TRUE;  // return TRUE  unless you set the focus to a control
  149. }
  150. void CPersonalProxyDlg::OnSysCommand(UINT nID, LPARAM lParam)
  151. {
  152. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  153. {
  154. CAboutDlg dlgAbout;
  155. dlgAbout.DoModal();
  156. }
  157. else
  158. {
  159. CDialog::OnSysCommand(nID, lParam);
  160. }
  161. }
  162. // If you add a minimize button to your dialog, you will need the code below
  163. //  to draw the icon.  For MFC applications using the document/view model,
  164. //  this is automatically done for you by the framework.
  165. void CPersonalProxyDlg::OnPaint() 
  166. {
  167. if (IsIconic())
  168. {
  169. CPaintDC dc(this); // device context for painting
  170. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  171. // Center icon in client rectangle
  172. int cxIcon = GetSystemMetrics(SM_CXICON);
  173. int cyIcon = GetSystemMetrics(SM_CYICON);
  174. CRect rect;
  175. GetClientRect(&rect);
  176. int x = (rect.Width() - cxIcon + 1) / 2;
  177. int y = (rect.Height() - cyIcon + 1) / 2;
  178. // Draw the icon
  179. dc.DrawIcon(x, y, m_hIcon);
  180. }
  181. else
  182. {
  183. CDialog::OnPaint();
  184. }
  185. }
  186. // The system calls this to obtain the cursor to display while the user drags
  187. //  the minimized window.
  188. HCURSOR CPersonalProxyDlg::OnQueryDragIcon()
  189. {
  190. return (HCURSOR) m_hIcon;
  191. }
  192. void CPersonalProxyDlg::OnStartListen() 
  193. {
  194. UpdateData();
  195. BYTE b1, b2, b3, b4;
  196. m_ip.GetAddress(b1, b2, b3, b4);
  197. globalInfo.hWnd = GetSafeHwnd();
  198. globalInfo.nPort = m_nProxyPort; // local
  199. globalInfo._b1 = b1;
  200. globalInfo._b2 = b2;
  201. globalInfo._b3 = b3;
  202. globalInfo._b4 = b4;
  203. strcpy(globalInfo.pszPasswd, m_strPasswd);
  204. strcpy(globalInfo.pszUser, m_strUser);
  205. globalInfo.b1 = b1; // second proxy
  206. globalInfo.b2 = b2;
  207. globalInfo.b3 = b3;
  208. globalInfo.b4 = b4;
  209. globalInfo.nPort2nd = m_nPort;
  210. AfxBeginThread(ListeningThread, NULL, THREAD_PRIORITY_BELOW_NORMAL);
  211. }
  212. UINT CPersonalProxyDlg::OnOutput(WPARAM wParam, LPARAM lParam)
  213. {
  214. char* pszStr = (char*)lParam;
  215. // m_dwCount += dwCount;
  216. m_editOutput.ReplaceSel(pszStr);
  217. // TRACE(pszStr);
  218. fputs(pszStr, m_pFile);
  219. fflush(m_pFile);
  220. return 0;
  221. }
  222. void CPersonalProxyDlg::OnClose() 
  223. {
  224. CDialog::OnClose();
  225. }
  226. void CPersonalProxyDlg::OnDestroy() 
  227. {
  228. CDialog::OnDestroy();
  229. // HKEY_CURRENT_USERSoftwareMax Studio
  230. HKEY hKey;
  231. if(RegCreateKey(HKEY_CURRENT_USER, "Software\Max Studio\PersonalProxy", &hKey)==ERROR_SUCCESS)
  232. {
  233. RegSetValueEx(hKey, "pszPassword", 0, REG_SZ, (BYTE*)(LPCTSTR)m_strPasswd, m_strPasswd.GetLength());
  234. RegCloseKey(hKey);
  235. }
  236. // TODO: Add your message handler code here
  237. }