mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-04 21:09:19 +08:00
cf2528eb7c
完善了非阻塞IO的SSL功能;将 acl/samples/ 下的示例分别移到 lib_acl 及 lib_protocol 目录下
75 lines
1.6 KiB
C++
75 lines
1.6 KiB
C++
// http_clientDlg.h : 头文件
|
|
//
|
|
|
|
#pragma once
|
|
#include "HttpClient.h"
|
|
#include "MeterBar.h"
|
|
#include "lib_protocol.h"
|
|
#include "afxwin.h"
|
|
#include "afxext.h"
|
|
|
|
// Chttp_clientDlg 对话框
|
|
class Chttp_clientDlg : public CDialog
|
|
{
|
|
// 构造
|
|
public:
|
|
Chttp_clientDlg(CWnd* pParent = NULL); // 标准构造函数
|
|
|
|
// 对话框数据
|
|
enum { IDD = IDD_HTTP_CLIENT_DIALOG };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
|
|
|
|
|
// 实现
|
|
protected:
|
|
HICON m_hIcon;
|
|
|
|
// 生成的消息映射函数
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
|
|
afx_msg void OnPaint();
|
|
afx_msg HCURSOR OnQueryDragIcon();
|
|
DECLARE_MESSAGE_MAP()
|
|
public:
|
|
afx_msg void OnBnClickedButtonBrowser();
|
|
afx_msg void OnBnClickedButtonOption();
|
|
afx_msg void OnBnClickedButtonGet();
|
|
afx_msg LRESULT OnWriteDisplay(WPARAM wParam, LPARAM lParam);
|
|
private:
|
|
CString m_sReqUrl;
|
|
CString m_sLocalFile;
|
|
CHttpClient m_hClient;
|
|
CEdit m_reqCtlEdit;
|
|
CEdit m_resCtlEdit;
|
|
CEdit m_resBodyCtlEdit;
|
|
BOOL m_bHttp11;
|
|
BOOL m_bZip;
|
|
BOOL m_bKeepAlive;
|
|
BOOL m_bPostMethod;
|
|
CString m_sBody;
|
|
CString m_sAccept;
|
|
CString m_sCType;
|
|
|
|
http_off_t m_nContentLength;
|
|
http_off_t m_nDownLen;
|
|
|
|
void ClearWinText(void);
|
|
public:
|
|
afx_msg void OnBnClickedButtonClear();
|
|
private:
|
|
CString m_sHttpHdrAppend;
|
|
CString m_sServerAddr;
|
|
BOOL m_bUseAddr;
|
|
protected:
|
|
CMeterBar m_wndMeterBar;
|
|
//CStatusBarCtrl m_wndMeterBar;
|
|
public:
|
|
afx_msg void OnSize(UINT nType, int cx, int cy);
|
|
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
|
|
private:
|
|
BOOL m_bForwardAuto;
|
|
UINT m_nMaxTry;
|
|
};
|