cmpp与cmpp3,在cmpp head中的ID,如果为中转请求(登录账号为1位数字),ID的高4位改用登录账号做为前缀。原想用于判断状态报告进行分发的,但由于MSG_ID是由服务端生成,此修改无效,但仍保留。
This commit is contained in:
parent
53133d3841
commit
9a61ff1961
@ -38,6 +38,7 @@ CCmpp::CCmpp()
|
||||
m_bRecvFrame = false;
|
||||
|
||||
m_lID = 1;
|
||||
m_lID_Begin = 0;
|
||||
m_pRecvProc = NULL;
|
||||
m_bConnect = false;
|
||||
m_bLoginCmpp= -1;
|
||||
@ -560,7 +561,8 @@ long CCmpp::Cmpp_Init(const char *pIP,long lPort, const char *pUser, const char
|
||||
|
||||
MD5_L md5;
|
||||
BYTE bMd5[64]={0};
|
||||
memcpy(bMd5 , md5.MD5Byte(Auth,lAdd),16);
|
||||
//memcpy(bMd5 , md5.MD5Byte(Auth,lAdd),16);
|
||||
md5.MD5Byte(Auth, lAdd, bMd5);
|
||||
|
||||
|
||||
Cmpp_Connect connect={0};
|
||||
@ -577,6 +579,13 @@ long CCmpp::Cmpp_Init(const char *pIP,long lPort, const char *pUser, const char
|
||||
connect.Timestamp = htonl(connect.Timestamp);
|
||||
|
||||
|
||||
m_lID = 1; //包序号从1开始
|
||||
if ( strlen(pUser) == 1 && pUser[0] >= '0' && pUser[0] <= '9' ) //只有1位的用户名,认为是中转登录
|
||||
{
|
||||
m_lID_Begin = atol(pUser) * 0xFFFFFFF; //序号以登录的端口号开始,用于中转时判断数据包
|
||||
m_lID = m_lID + m_lID_Begin;
|
||||
}
|
||||
|
||||
m_bLoginCmpp = -1;
|
||||
ULONG lSeq=0;
|
||||
if ( !SendFrame(m_hSocket,m_lID,m_dwEndSendTime,CMPP_CONNECT,(UCHAR*)&connect,sizeof(connect),lSeq) )
|
||||
@ -620,8 +629,11 @@ long CCmpp::SendFrame(SOCKET sock,ULONG &lID,DWORD &dwEndSendTime,ULONG lCommand
|
||||
head.Total_Length = sizeof(head)+lDataLen;
|
||||
lAllLen = head.Total_Length;
|
||||
head.Command_Id = lCommandID;
|
||||
if ( lID >= 0xF000000 ) //重新开始序号
|
||||
lID = 1;
|
||||
if (lID & 0x0FFFFFFF >= 0xFFFFFF0)//高4位用于标识中转码号第三位,低28位为ID,当低28位的值超过0xFFFFFF0时,重新开始序号
|
||||
{
|
||||
lID = (lID & 0xF0000000) + 1;
|
||||
}
|
||||
|
||||
if ( lSeq > 0 )
|
||||
head.Sequence_Id = lSeq; //直接使用相同序号的发送
|
||||
else
|
||||
@ -785,7 +797,8 @@ BOOL CCmpp::InitCmpp2()
|
||||
|
||||
MD5_L md5;
|
||||
BYTE bMd5[64]={0};
|
||||
memcpy(bMd5 , md5.MD5Byte(Auth,lAdd),16);
|
||||
//memcpy(bMd5 , md5.MD5Byte(Auth,lAdd),16);
|
||||
md5.MD5Byte(Auth, lAdd, bMd5);
|
||||
|
||||
|
||||
Cmpp_Connect connect={0};
|
||||
@ -802,7 +815,6 @@ BOOL CCmpp::InitCmpp2()
|
||||
connect.Timestamp = atol(str);
|
||||
connect.Timestamp = htonl(connect.Timestamp);
|
||||
|
||||
|
||||
m_bLoginCmpp = -1;
|
||||
ULONG lSeq=0;
|
||||
if ( !SendFrame(m_hSocket,m_lID,m_dwEndSendTime,CMPP_CONNECT,(UCHAR*)&connect,sizeof(connect),lSeq) )
|
||||
|
@ -169,6 +169,7 @@ typedef struct _CmppExchange
|
||||
SOCKET sock; //Socket接口
|
||||
long lIndex; //序号
|
||||
ULONG lID; //回复序号
|
||||
ULONG lID_Begin; //ID开始序号,用于收到resp时判断是谁的回复
|
||||
long lSendCount; //发送计数
|
||||
long lSendRetCount; //发送返回计数
|
||||
|
||||
@ -312,6 +313,7 @@ public:
|
||||
|
||||
|
||||
ULONG m_lID;
|
||||
ULONG m_lID_Begin;
|
||||
RECVPROC m_pRecvProc;
|
||||
//用于控制发送速度
|
||||
DWORD m_dwEndSocketSendTime; //最后短信发出间隔
|
||||
|
@ -36,6 +36,7 @@ CCmpp3::CCmpp3()
|
||||
m_bRecvFrame = false;
|
||||
|
||||
m_lID = 1;
|
||||
m_lID_Begin = 0;
|
||||
m_pRecvProc = NULL;
|
||||
m_bConnect = false;
|
||||
m_bLoginCmpp3= -1;
|
||||
@ -558,7 +559,8 @@ long CCmpp3::Cmpp3_Init(const char *pIP,long lPort, const char *pUser, const cha
|
||||
|
||||
MD5_L md5;
|
||||
BYTE bMd5[64]={0};
|
||||
memcpy(bMd5 , md5.MD5Byte(Auth,lAdd),16);
|
||||
//memcpy(bMd5 , md5.MD5Byte(Auth,lAdd),16);
|
||||
md5.MD5Byte(Auth, lAdd, bMd5);
|
||||
|
||||
|
||||
Cmpp3_Connect connect={0};
|
||||
@ -575,6 +577,13 @@ long CCmpp3::Cmpp3_Init(const char *pIP,long lPort, const char *pUser, const cha
|
||||
connect.Timestamp = htonl(connect.Timestamp);
|
||||
|
||||
|
||||
m_lID = 1; //包序号从1开始
|
||||
if (strlen(pUser) == 1 && pUser[0] >= '0' && pUser[0] <= '9') //只有1位的用户名,认为是中转登录
|
||||
{
|
||||
m_lID_Begin = atol(pUser) * 0xFFFFFFF; //序号以登录的端口号开始,用于中转时判断数据包
|
||||
m_lID = m_lID + m_lID_Begin;
|
||||
}
|
||||
|
||||
m_bLoginCmpp3 = -1;
|
||||
ULONG lSeq=0;
|
||||
if ( !SendFrame(m_hSocket,m_lID,m_dwEndSendTime,CMPP3_CONNECT,(UCHAR*)&connect,sizeof(connect),lSeq) )
|
||||
@ -618,8 +627,10 @@ long CCmpp3::SendFrame(SOCKET sock,ULONG &lID,DWORD &dwEndSendTime,ULONG lComman
|
||||
head.Total_Length = sizeof(head)+lDataLen;
|
||||
lAllLen = head.Total_Length;
|
||||
head.Command_Id = lCommandID;
|
||||
if ( lID >= 0xF000000 ) //重新开始序号
|
||||
lID = 1;
|
||||
if (lID & 0x0FFFFFFF >= 0xFFFFFF0)//高4位用于标识中转码号第三位,低28位为ID,当低28位的值超过0xFFFFFF0时,重新开始序号
|
||||
{
|
||||
lID = (lID & 0xF0000000) + 1;
|
||||
}
|
||||
if ( lSeq > 0 )
|
||||
head.Sequence_Id = lSeq; //直接使用相同序号的发送
|
||||
else
|
||||
@ -719,7 +730,8 @@ BOOL CCmpp3::InitCmpp32()
|
||||
|
||||
MD5_L md5;
|
||||
BYTE bMd5[64]={0};
|
||||
memcpy(bMd5 , md5.MD5Byte(Auth,lAdd),16);
|
||||
//memcpy(bMd5 , md5.MD5Byte(Auth,lAdd),16);
|
||||
md5.MD5Byte(Auth, lAdd, bMd5);
|
||||
|
||||
|
||||
Cmpp3_Connect connect={0};
|
||||
|
@ -302,6 +302,7 @@ public:
|
||||
|
||||
|
||||
ULONG m_lID;
|
||||
ULONG m_lID_Begin;
|
||||
RECVPROC_Cmpp3 m_pRecvProc;
|
||||
//用于控制发送速度
|
||||
DWORD m_dwEndSocketSendTime; //最后短信发出间隔
|
||||
|
194
FXSend.clw
194
FXSend.clw
@ -1,194 +0,0 @@
|
||||
; CLW file contains information for the MFC ClassWizard
|
||||
|
||||
[General Info]
|
||||
Version=1
|
||||
LastClass=DLG_TD_Setup
|
||||
LastTemplate=CDialog
|
||||
NewFileInclude1=#include "stdafx.h"
|
||||
NewFileInclude2=#include "FXSend.h"
|
||||
|
||||
ClassCount=4
|
||||
Class1=CFXSendApp
|
||||
Class2=CFXSendDlg
|
||||
Class3=CAboutDlg
|
||||
|
||||
ResourceCount=4
|
||||
Resource1=IDD_FXSEND_DIALOG
|
||||
Resource2=IDR_MAINFRAME
|
||||
Resource3=IDD_ABOUTBOX
|
||||
Class4=DLG_TD_Setup
|
||||
Resource4=IDD_TDSETUP
|
||||
|
||||
[CLS:CFXSendApp]
|
||||
Type=0
|
||||
HeaderFile=FXSend.h
|
||||
ImplementationFile=FXSend.cpp
|
||||
Filter=N
|
||||
BaseClass=CWinApp
|
||||
VirtualFilter=AC
|
||||
|
||||
[CLS:CFXSendDlg]
|
||||
Type=0
|
||||
HeaderFile=FXSendDlg.h
|
||||
ImplementationFile=FXSendDlg.cpp
|
||||
Filter=W
|
||||
BaseClass=CDialog
|
||||
VirtualFilter=dWC
|
||||
LastObject=CFXSendDlg
|
||||
|
||||
[CLS:CAboutDlg]
|
||||
Type=0
|
||||
HeaderFile=FXSendDlg.h
|
||||
ImplementationFile=FXSendDlg.cpp
|
||||
Filter=D
|
||||
|
||||
[DLG:IDD_ABOUTBOX]
|
||||
Type=1
|
||||
Class=CAboutDlg
|
||||
ControlCount=4
|
||||
Control1=IDC_STATIC,static,1342177283
|
||||
Control2=IDC_STATIC,static,1342308480
|
||||
Control3=IDC_STATIC,static,1342308352
|
||||
Control4=IDOK,button,1342373889
|
||||
|
||||
[DLG:IDD_FXSEND_DIALOG]
|
||||
Type=1
|
||||
Class=CFXSendDlg
|
||||
ControlCount=62
|
||||
Control1=IDC_START,button,1342242816
|
||||
Control2=IDC_DBIP,edit,1350631552
|
||||
Control3=IDC_DBUSER,edit,1350631552
|
||||
Control4=IDC_DBPASSWD,edit,1350631584
|
||||
Control5=IDC_SAVE,button,1342242816
|
||||
Control6=IDC_S_SEND,button,1342177287
|
||||
Control7=IDC_ALLSENDCOUNT,button,1342177287
|
||||
Control8=IDC_STATIC,static,1342308352
|
||||
Control9=IDC_STATIC,static,1342308352
|
||||
Control10=IDC_STATIC,static,1342308352
|
||||
Control11=IDC_MSG2,edit,1350637572
|
||||
Control12=IDC_TEST,button,1073807360
|
||||
Control13=IDC_EDIT1,edit,1352732740
|
||||
Control14=IDC_MSG3,edit,1350637572
|
||||
Control15=IDC_S_CMPP,button,1342177287
|
||||
Control16=IDC_STATIC,button,1342177287
|
||||
Control17=IDC_DBIP2,edit,1350631552
|
||||
Control18=IDC_DBUSER2,edit,1350631552
|
||||
Control19=IDC_DBPASSWD2,edit,1350631584
|
||||
Control20=IDC_STATIC,static,1342308352
|
||||
Control21=IDC_STATIC,static,1342308352
|
||||
Control22=IDC_STATIC,static,1342308352
|
||||
Control23=IDC_STATIC,button,1342177287
|
||||
Control24=IDC_CHECKRESEND,button,1342242819
|
||||
Control25=IDC_TOPSEL,edit,1350639744
|
||||
Control26=IDC_STATIC,static,1342308352
|
||||
Control27=IDC_NUMTYPE,edit,1350639744
|
||||
Control28=IDC_STATIC,static,1342308352
|
||||
Control29=IDC_SENDRET,edit,1350639744
|
||||
Control30=IDC_STATIC,static,1342308352
|
||||
Control31=IDC_SENDFCS,edit,1350639744
|
||||
Control32=IDC_STATIC,static,1342308352
|
||||
Control33=IDC_WINDOW,edit,1350631552
|
||||
Control34=IDC_STATIC,static,1342308352
|
||||
Control35=IDC_CHECKBACK,button,1342242819
|
||||
Control36=IDC_DELAY,edit,1350639744
|
||||
Control37=IDC_STATIC,static,1342308352
|
||||
Control38=IDC_MAINRESEND,button,1342242819
|
||||
Control39=IDC_EXCM,button,1342242819
|
||||
Control40=IDC_CHECKCM,button,1342242819
|
||||
Control41=IDC_SHOWLOG,button,1342242819
|
||||
Control42=IDC_NORET,button,1342242819
|
||||
Control43=IDC_NOREPORT,button,1342242819
|
||||
Control44=IDC_EXCM2,button,1342242819
|
||||
Control45=IDC_TEST2,button,1342242816
|
||||
Control46=IDC_0,button,1342242816
|
||||
Control47=IDC_STATIC,static,1342308352
|
||||
Control48=IDC_SELECT_LOCK,combobox,1344339971
|
||||
Control49=IDC_STATIC,static,1342308352
|
||||
Control50=IDC_UPDATE_LOCK,combobox,1344339971
|
||||
Control51=IDC_STATIC,static,1342308352
|
||||
Control52=IDC_SPEED,edit,1350639744
|
||||
Control53=IDC_S_ZD_SEND,static,1342308352
|
||||
Control54=IDC_S_ZD_RECV,static,1342308352
|
||||
Control55=IDC_S_ZD_SEND2,static,1342308352
|
||||
Control56=IDC_SELECT_DB,static,1342308352
|
||||
Control57=IDC_S_ZD_RECV2,static,1342308352
|
||||
Control58=IDC_TDMSG,static,1342308352
|
||||
Control59=IDC_TDSETUP,button,1342242816
|
||||
Control60=IDC_STATIC,static,1342308352
|
||||
Control61=IDC_ONEPACKSMSCOUNT,edit,1350639744
|
||||
Control62=IDC_SUPLONGSMS,button,1342242819
|
||||
|
||||
[DLG:IDD_TDSETUP]
|
||||
Type=1
|
||||
Class=DLG_TD_Setup
|
||||
ControlCount=60
|
||||
Control1=IDOK,button,1342242817
|
||||
Control2=IDCANCEL,button,1342242816
|
||||
Control3=IDC_CMPP_SERVER,edit,1350631552
|
||||
Control4=IDC_CMPP_USER,edit,1350631552
|
||||
Control5=IDC_CMPP_PASSWD,edit,1350631584
|
||||
Control6=IDC_CMPP_CORPID,edit,1350631552
|
||||
Control7=IDC_CMPP_NUM,edit,1350639744
|
||||
Control8=IDC_STATIC,static,1342308352
|
||||
Control9=IDC_STATIC,static,1342308352
|
||||
Control10=IDC_STATIC,static,1342308352
|
||||
Control11=IDC_CMPP_CORPID_S,static,1342308352
|
||||
Control12=IDC_STATIC,static,1342308352
|
||||
Control13=IDC_CMPP_PORT,edit,1350639744
|
||||
Control14=IDC_CMPP_YWID,edit,1350631552
|
||||
Control15=IDC_STATIC,static,1342308352
|
||||
Control16=IDC_STATIC,static,1342308352
|
||||
Control17=IDC_CMPP_SMSNUM_MAXLEN,edit,1350639744
|
||||
Control18=IDC_ALLNUM,button,1342242819
|
||||
Control19=IDC_SUBNUM,button,1342242819
|
||||
Control20=IDC_CMPP,button,1342242819
|
||||
Control21=IDC_CMPP_EXCHANGENUM,edit,1484849280
|
||||
Control22=IDC_ADC,button,1342242819
|
||||
Control23=IDC_LONGSMS,button,1342242819
|
||||
Control24=IDC_PUSHREPORT,button,1342242819
|
||||
Control25=IDC_STATIC,button,1342177287
|
||||
Control26=IDC_STATIC,static,1342308352
|
||||
Control27=IDC_CMPP_TYPE,combobox,1344339971
|
||||
Control28=IDC_CMPP_LOCALPORT_S,static,1342308352
|
||||
Control29=IDC_CMPP_LOCALPORT,edit,1350639744
|
||||
Control30=IDC_CMPP_NODEID_S,static,1342308352
|
||||
Control31=IDC_CMPP_NODEID,edit,1350639744
|
||||
Control32=IDC_STATIC,button,1342177287
|
||||
Control33=IDC_STATIC,static,1342308352
|
||||
Control34=IDC_CMPP_ADD1,edit,1350631552
|
||||
Control35=IDC_STATIC,static,1342308352
|
||||
Control36=IDC_CMPP_ADD2,edit,1350631552
|
||||
Control37=IDC_STATIC,static,1342308352
|
||||
Control38=IDC_CMPP_ADD3,edit,1350631552
|
||||
Control39=IDC_STATIC,static,1342308352
|
||||
Control40=IDC_CMPP_ADD4,edit,1350631552
|
||||
Control41=IDC_STATIC,static,1342308352
|
||||
Control42=IDC_CMPP_ADD5,edit,1350631552
|
||||
Control43=IDC_STATIC,static,1342308352
|
||||
Control44=IDC_CMPP_ADD6,edit,1350631552
|
||||
Control45=IDC_STATIC,static,1342308352
|
||||
Control46=IDD_TDSETUP_THREAD_SEND,combobox,1344339971
|
||||
Control47=IDC_STATIC,static,1342308352
|
||||
Control48=IDD_TDSETUP_THREAD_RET,combobox,1344339971
|
||||
Control49=IDC_STATIC,static,1342308352
|
||||
Control50=IDD_TDSETUP_THREAD_REPORT,combobox,1344339971
|
||||
Control51=IDC_LOG,button,1342242819
|
||||
Control52=IDC_LOGEX,button,1342242819
|
||||
Control53=IDC_STATIC,static,1342308352
|
||||
Control54=IDD_TDSETUP_THREAD_SENDSMS,combobox,1344339971
|
||||
Control55=IDC_STATIC,static,1342308352
|
||||
Control56=IDC_CMPP_ADD7,edit,1350631552
|
||||
Control57=IDC_STATIC,static,1342308352
|
||||
Control58=IDC_CMPP_ADD8,edit,1350631552
|
||||
Control59=IDC_STATIC,static,1342308352
|
||||
Control60=IDC_CMPP_ADD9,edit,1350631552
|
||||
|
||||
[CLS:DLG_TD_Setup]
|
||||
Type=0
|
||||
HeaderFile=DLG_TD_Setup.h
|
||||
ImplementationFile=DLG_TD_Setup.cpp
|
||||
BaseClass=CDialog
|
||||
Filter=D
|
||||
VirtualFilter=dWC
|
||||
LastObject=IDD_TDSETUP_THREAD_SENDSMS
|
||||
|
240
FXSend.dsp
240
FXSend.dsp
@ -1,240 +0,0 @@
|
||||
# Microsoft Developer Studio Project File - Name="FXSend" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Application" 0x0101
|
||||
|
||||
CFG=FXSend - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "FXSend.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "FXSend.mak" CFG="FXSend - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "FXSend - Win32 Release" (based on "Win32 (x86) Application")
|
||||
!MESSAGE "FXSend - Win32 Debug" (based on "Win32 (x86) Application")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
MTL=midl.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "FXSend - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 6
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 5
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /MD /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_AFXDLL" /Yu"stdafx.h" /FD /c
|
||||
# ADD CPP /nologo /MT /W3 /GX /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /Yu"stdafx.h" /FD /c
|
||||
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x804 /d "NDEBUG" /d "_AFXDLL"
|
||||
# ADD RSC /l 0x804 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 /nologo /subsystem:windows /machine:I386
|
||||
# ADD LINK32 /nologo /subsystem:windows /machine:I386 /out:"Release/CMSend.exe"
|
||||
|
||||
!ELSEIF "$(CFG)" == "FXSend - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 6
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 6
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_AFXDLL" /Yu"stdafx.h" /FD /GZ /c
|
||||
# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_AFXDLL" /D "_MBCS" /Yu"stdafx.h" /FD /GZ /c
|
||||
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x804 /d "_DEBUG" /d "_AFXDLL"
|
||||
# ADD RSC /l 0x804 /d "_DEBUG" /d "_AFXDLL"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept
|
||||
# ADD LINK32 /nologo /subsystem:windows /debug /machine:I386 /out:"Debug/SZSend.exe" /pdbtype:sept
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "FXSend - Win32 Release"
|
||||
# Name "FXSend - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\ado\Ado.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\ado\AdoCommand.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\ado\AdoRecordSet.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Cmpp\Cmpp.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\DLG_TD_Setup.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\md5\driver.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\FXSend.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\FXSend.rc
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\FXSendDlg.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\LuTool.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\CMarkup\Markup.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\md5\md5.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\SendPub.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Sgip\Sgip.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Smgp\Smgp.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\StdAfx.cpp
|
||||
# ADD CPP /Yc"stdafx.h"
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\ado\Ado.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\ado\AdoCommand.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\ado\AdoRecordSet.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Cmpp\Cmpp.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\DLG_TD_Setup.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\FXSend.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\FXSendDlg.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\LuTool.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\CMarkup\Markup.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\md5\md5.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Resource.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\public\SendPub.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Sgip\Sgip.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Smgp\Smgp.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\StdAfx.h
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Resource Files"
|
||||
|
||||
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\res\FXSend.ico
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\res\FXSend.rc2
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\ReadMe.txt
|
||||
# End Source File
|
||||
# End Target
|
||||
# End Project
|
29
FXSend.dsw
29
FXSend.dsw
@ -1,29 +0,0 @@
|
||||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "FXSend"=.\FXSend.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Global:
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<3>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
17
FXSend.rc
17
FXSend.rc
@ -128,17 +128,17 @@ BEGIN
|
||||
EDITTEXT IDC_DELAY,117,237,24,12,ES_AUTOHSCROLL | ES_NUMBER
|
||||
LTEXT "Delay",IDC_STATIC,93,239,21,8
|
||||
CONTROL "检测签名",IDC_CHECKCM,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,288,48,10
|
||||
CONTROL "强制去签名",IDC_EXCM,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,79,288,56,10
|
||||
CONTROL "半",IDC_EXCM2,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,137,288,24,10
|
||||
CONTROL "强制去签名",IDC_EXCM,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,74,288,56,10
|
||||
CONTROL "半",IDC_EXCM2,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,132,288,24,10
|
||||
CONTROL "不处理Ret",IDC_NORET,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,301,52,10
|
||||
CONTROL "不处理Report",IDC_NOREPORT,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,79,301,64,10
|
||||
CONTROL "不处理Report",IDC_NOREPORT,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,74,301,64,10
|
||||
CONTROL "不处理上行",IDC_NORECV,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,315,56,10
|
||||
CONTROL "拼接长短信",IDC_SUPLONGSMS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,79,315,56,10
|
||||
CONTROL "除去长信标记",IDC_EXPLONGSMS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,328,64,10
|
||||
LTEXT "数据包大小",IDC_STATIC,80,330,41,8
|
||||
EDITTEXT IDC_ONEPACKSMSCOUNT,123,327,24,12,ES_AUTOHSCROLL | ES_NUMBER
|
||||
CONTROL "拼接长短信",IDC_SUPLONGSMS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,74,315,56,10
|
||||
CONTROL "去长信标记",IDC_EXPLONGSMS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,328,56,10
|
||||
LTEXT "数据包大小",IDC_STATIC,75,330,41,8
|
||||
EDITTEXT IDC_ONEPACKSMSCOUNT,118,327,24,12,ES_AUTOHSCROLL | ES_NUMBER
|
||||
CONTROL "号码不加86",IDC_NO86,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,341,54,10
|
||||
CONTROL "校验报备签名",IDC_VERIFYSIGNNATURE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,79,342,64,10
|
||||
CONTROL "校验签名",IDC_VERIFYSIGNNATURE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,74,343,48,10
|
||||
EDITTEXT IDC_MSG2,170,9,297,172,ES_MULTILINE | ES_READONLY | ES_WANTRETURN
|
||||
LTEXT "中国移动",IDC_TDMSG,12,130,145,8
|
||||
CONTROL "显示日志",IDC_SHOWLOG,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,172,185,49,10
|
||||
@ -158,6 +158,7 @@ BEGIN
|
||||
PUSHBUTTON "运营商设置",IDC_TDSETUP,15,105,56,18
|
||||
CONTROL "显示详细日志",IDC_SHOWLOG2,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,227,185,64,10
|
||||
LTEXT "Prov",IDC_STATIC,85,68,17,8
|
||||
CONTROL "拒发",IDC_VERIFYSIGNNATURE_REJECT,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,125,343,32,10
|
||||
END
|
||||
|
||||
IDD_TDSETUP DIALOGEX 0, 0, 366, 317
|
||||
|
45
FXSend.sln
45
FXSend.sln
@ -1,50 +1,43 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||
# Visual Studio 2010
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.4.33110.190
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FXSend", "FXSend.vcxproj", "{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug_Unicode|Win32 = Debug_Unicode|Win32
|
||||
Debug_Unicode|x64 = Debug_Unicode|x64
|
||||
Debug_X64|Win32 = Debug_X64|Win32
|
||||
Debug_X64|x64 = Debug_X64|x64
|
||||
Debug|Win32 = Debug|Win32
|
||||
Debug_Unicode|x86 = Debug_Unicode|x86
|
||||
Debug|x64 = Debug|x64
|
||||
release_Unicode|Win32 = release_Unicode|Win32
|
||||
Debug|x86 = Debug|x86
|
||||
release_Unicode|x64 = release_Unicode|x64
|
||||
Release_X64|Win32 = Release_X64|Win32
|
||||
Release_X64|x64 = Release_X64|x64
|
||||
Release|Win32 = Release|Win32
|
||||
release_Unicode|x86 = release_Unicode|x86
|
||||
Release|x64 = Release|x64
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Debug_Unicode|Win32.ActiveCfg = Debug_Unicode|Win32
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Debug_Unicode|Win32.Build.0 = Debug_Unicode|Win32
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Debug_Unicode|x64.ActiveCfg = Debug_Unicode|x64
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Debug_Unicode|x64.Build.0 = Debug_Unicode|x64
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Debug_X64|Win32.ActiveCfg = Debug_X64|x64
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Debug_X64|Win32.Build.0 = Debug_X64|x64
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Debug_X64|x64.ActiveCfg = Debug_X64|x64
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Debug_X64|x64.Build.0 = Debug_X64|x64
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Debug_Unicode|x86.ActiveCfg = Debug_Unicode|Win32
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Debug_Unicode|x86.Build.0 = Debug_Unicode|Win32
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Debug|x64.Build.0 = Debug|x64
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.release_Unicode|Win32.ActiveCfg = release_Unicode|Win32
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.release_Unicode|Win32.Build.0 = release_Unicode|Win32
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Debug|x86.ActiveCfg = Debug|Win32
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Debug|x86.Build.0 = Debug|Win32
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.release_Unicode|x64.ActiveCfg = release_Unicode|x64
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.release_Unicode|x64.Build.0 = release_Unicode|x64
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Release_X64|Win32.ActiveCfg = Release_X64|x64
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Release_X64|Win32.Build.0 = Release_X64|x64
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Release_X64|x64.ActiveCfg = Release_X64|x64
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Release_X64|x64.Build.0 = Release_X64|x64
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Release|Win32.Build.0 = Release|Win32
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.release_Unicode|x86.ActiveCfg = release_Unicode|Win32
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.release_Unicode|x86.Build.0 = release_Unicode|Win32
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Release|x64.ActiveCfg = Release|x64
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Release|x64.Build.0 = Release|x64
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Release|x86.ActiveCfg = Release|Win32
|
||||
{D13DFE6B-353F-6909-BD4D-B82D70F69E9E}.Release|x86.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {F73C3DE4-8611-4DEF-A78B-17A78DFD1837}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
@ -116,7 +116,7 @@
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseOfMfc>Dynamic</UseOfMfc>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset>Windows7.1SDK</PlatformToolset>
|
||||
<PlatformToolset>v143</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_X64|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
@ -203,7 +203,8 @@
|
||||
<OutDir>.\Debug\</OutDir>
|
||||
<IntDir>.\Debug\</IntDir>
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<LibraryPath>.\MobsetHttp\Poco\lib;$(LibraryPath)</LibraryPath>
|
||||
<LibraryPath>.\MobsetHttp\openssl;.\MobsetHttp\Poco\lib64;$(LibraryPath)</LibraryPath>
|
||||
<IncludePath>.\MobsetHttp\openssl;..\..\public\spdlog\include;$(IncludePath)</IncludePath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_X64|Win32'">
|
||||
<OutDir>.\Debug\</OutDir>
|
||||
@ -246,7 +247,8 @@
|
||||
<OutDir>.\Release\</OutDir>
|
||||
<IntDir>.\Release\</IntDir>
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
<LibraryPath>.\MobsetHttp\openssl;.\MobsetHttp\Poco\lib;$(LibraryPath)</LibraryPath>
|
||||
<LibraryPath>.\MobsetHttp\openssl;.\MobsetHttp\Poco\lib64;$(LibraryPath)</LibraryPath>
|
||||
<IncludePath>.\MobsetHttp\openssl;..\..\public\spdlog\include;$(IncludePath)</IncludePath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_X64|x64'">
|
||||
<OutDir>.\Release\</OutDir>
|
||||
@ -800,12 +802,16 @@
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="BJDX_iagw_Mms\IAGWMMScapServiceSoapBindingService.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="BJDX_iagw_Mms_Ex\IagwMmsServiceEx.cpp" />
|
||||
<ClCompile Include="Cbip\Cbip.cpp" />
|
||||
@ -823,6 +829,8 @@
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="GDDX_Isag_Mms\ISAGMMSMessageNotificationBindingService.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|Win32'">NotUsing</PrecompiledHeader>
|
||||
@ -830,6 +838,8 @@
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="GDDX_Isag_Mms_Ex\IsagMmsServiceEx.cpp" />
|
||||
<ClCompile Include="GDDX_Isag_Sms\ISAGSMSC.cpp">
|
||||
@ -837,12 +847,16 @@
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="GDDX_Isag_Sms\ISAGSMSSmsNotificationBindingService.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="GDDX_Isag_Sms_Ex\IsagSmsServiceEx.cpp" />
|
||||
<ClCompile Include="gsoap_public\envC.cpp">
|
||||
@ -851,6 +865,8 @@
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="gsoap_public\stdsoap2.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|Win32'">NotUsing</PrecompiledHeader>
|
||||
@ -858,18 +874,24 @@
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MMS_mm7\IMm7MMSC.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MMS_mm7\IMm7MMSmm7SoapBindingService.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MMS_mm7_Ex\IMm7MMSServiceEx.cpp" />
|
||||
<ClCompile Include="MobsetApiEx\MobsetApiServiceEx.cpp" />
|
||||
@ -878,12 +900,16 @@
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MobsetApi\MobsetApiMobsetApiSoapService.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MobsetHttp\MobsetHttp.cpp" />
|
||||
<ClCompile Include="QQTX\QQTX.cpp" />
|
||||
@ -921,12 +947,16 @@
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_X64|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="WxWork\WXBizMsgCrypt.cpp">
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release_X64|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_X64|Win32'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_X64|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='release_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug_Unicode|x64'">NotUsing</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
@ -1,314 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="Source Files">
|
||||
<UniqueIdentifier>{507245b5-95f4-411f-bafa-c5b0e813ffaa}</UniqueIdentifier>
|
||||
<Extensions>cpp;c;cxx;rc;def;r;odl;idl;hpj;bat</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Header Files">
|
||||
<UniqueIdentifier>{358793de-87e5-42b5-918e-d7977f2a50ad}</UniqueIdentifier>
|
||||
<Extensions>h;hpp;hxx;hm;inl</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="Resource Files">
|
||||
<UniqueIdentifier>{49a622b5-f192-40da-b073-6fc291944167}</UniqueIdentifier>
|
||||
<Extensions>ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe</Extensions>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\public\ado\Ado.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\public\ado\AdoCommand.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\public\ado\AdoRecordSet.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Cmpp\Cmpp.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="DLG_TD_Setup.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="FXSend.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="FXSendDlg.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\public\LuTool.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\public\CMarkup\Markup.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\public\SendPub.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Sgip\Sgip.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Smgp\Smgp.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="StdAfx.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\public\md53\MD5_L.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\public\des\Des.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\public\AutoBuffer\AutoBuffer.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\public\ProxySocket\CBase64Coding.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="GDDX_Isag_Mms_Ex\IsagMmsServiceEx.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="gsoap_public\envC.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="gsoap_public\stdsoap2.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="GDDX_Isag_Mms\ISAGMMSC.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="GDDX_Isag_Mms\ISAGMMSMessageNotificationBindingService.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\public\SAStatusLog\SAStatusLog.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\public\zip\zip.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MobsetApi\MobsetApiC.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MobsetApi\MobsetApiMobsetApiSoapService.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MobsetApiEx\MobsetApiServiceEx.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="GDDX_Isag_Sms\ISAGSMSC.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="GDDX_Isag_Sms\ISAGSMSSmsNotificationBindingService.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="GDDX_Isag_Sms_Ex\IsagSmsServiceEx.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\public\LuGBBIG5.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\public\MySql\MySqlConnection.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\public\MySql\MySqlRecordSet.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="QQTX\QQTX.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MMS_mm7\IMm7MMSmm7SoapBindingService.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MMS_mm7\IMm7MMSC.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MMS_mm7_Ex\IMm7MMSServiceEx.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Cmpp3\Cmpp3.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\public\SqlPool\SqlPool.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="Cbip\Cbip.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="SmsSend.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="BJDX_iagw_Mms\IAGWMMSC.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="BJDX_iagw_Mms\IAGWMMScapServiceSoapBindingService.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="BJDX_iagw_Mms_Ex\IagwMmsServiceEx.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="MobsetHttp\MobsetHttp.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="WxWork\WXBizMsgCrypt.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="WxWork\tinyxml2\tinyxml2.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ResourceCompile Include="FXSend.rc">
|
||||
<Filter>Source Files</Filter>
|
||||
</ResourceCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\public\ado\Ado.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\public\ado\AdoCommand.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\public\ado\AdoRecordSet.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Cmpp\Cmpp.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="DLG_TD_Setup.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="FXSend.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\public\LuTool.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\public\CMarkup\Markup.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Resource.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\public\SendPub.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Sgip\Sgip.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Smgp\Smgp.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="StdAfx.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\public\md53\MD5_L.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\public\des\Des.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\public\AutoBuffer\AutoBuffer.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\public\ProxySocket\CBase64Coding.hpp">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\public\AutoCoInitializeEx\AutoCoInitializeEx.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="FXSendDlg.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="GDDX_Isag_Mms_Ex\IsagMmsServiceEx.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="gsoap_public\envH.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="gsoap_public\envStub.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="gsoap_public\stdsoap2.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="GDDX_Isag_Mms\ISAGMMSMessageNotificationBindingService.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\public\SAStatusLog\SAStatusLog.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\public\zip\zip.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="MobsetApi\MobsetApiMobsetApiSoapService.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="MobsetApiEx\MobsetApiServiceEx.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="GDDX_Isag_Sms\ISAGSMSSmsNotificationBindingService.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="GDDX_Isag_Sms_Ex\IsagSmsServiceEx.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\public\CorpSms.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\public\LuGBBIG5.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\public\MySql\MySqlConnection.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\public\MySql\MySqlRecordSet.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="QQTX\QQTX.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="MMS_mm7_Ex\IMm7MMSServiceEx.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="MMS_mm7\IMm7MMSmm7SoapBindingService.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Cmpp3\Cmpp3.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\public\SqlPool\SqlPool.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Cbip\Cbip.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="SmsSend.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="BJDX_iagw_Mms\IAGWMMScapServiceSoapBindingService.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="BJDX_iagw_Mms_Ex\IagwMmsServiceEx.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="MobsetHttp\MobsetHttp.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="WxWork\WXBizMsgCrypt.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="WxWork\tinyxml2\tinyxml2.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<CustomBuild Include="res\FXSend.ico">
|
||||
<Filter>Resource Files</Filter>
|
||||
</CustomBuild>
|
||||
<CustomBuild Include="res\FXSend.rc2">
|
||||
<Filter>Resource Files</Filter>
|
||||
</CustomBuild>
|
||||
<CustomBuild Include="ReadMe.txt" />
|
||||
</ItemGroup>
|
||||
</Project>
|
@ -84,6 +84,7 @@ CFXSendDlg::CFXSendDlg(CWnd* pParent /*=NULL*/)
|
||||
, m_strDBProvider(_T(""))
|
||||
, m_lCheckReSend(0)
|
||||
, m_bVerifySignature(FALSE)
|
||||
, m_bVerifySignatureReject(FALSE)
|
||||
{
|
||||
//{{AFX_DATA_INIT(CFXSendDlg)
|
||||
m_strIP = _T("");
|
||||
@ -299,6 +300,7 @@ void CFXSendDlg::DoDataExchange(CDataExchange* pDX)
|
||||
DDV_MaxChars(pDX, m_strDBProvider, 30);
|
||||
DDX_CBIndex(pDX, IDC_CHECKRESEND, m_lCheckReSend);
|
||||
DDX_Check(pDX, IDC_VERIFYSIGNNATURE, m_bVerifySignature);
|
||||
DDX_Check(pDX, IDC_VERIFYSIGNNATURE_REJECT, m_bVerifySignatureReject);
|
||||
}
|
||||
|
||||
BEGIN_MESSAGE_MAP(CFXSendDlg, CDialog)
|
||||
@ -402,6 +404,7 @@ BOOL CFXSendDlg::OnInitDialog()
|
||||
m_bMainReSend = m_MCom_Head.bMainReSend;
|
||||
m_bCheckCM = m_MCom_Head.bCheckCM;
|
||||
m_bVerifySignature = m_MCom_Head.bVerifySignature;
|
||||
m_bVerifySignatureReject = m_MCom_Head.bVerifySignatureReject;
|
||||
m_bExCM = m_MCom_Head.bExCM;
|
||||
m_bExCM2 = m_MCom_Head.bExCM2;
|
||||
m_bNo86 = m_MCom_Head.bNo86;
|
||||
@ -616,6 +619,7 @@ void CFXSendDlg::OnSave()
|
||||
m_MCom_Head.bMainReSend=m_bMainReSend;
|
||||
m_MCom_Head.bCheckCM = m_bCheckCM;
|
||||
m_MCom_Head.bVerifySignature = m_bVerifySignature;
|
||||
m_MCom_Head.bVerifySignatureReject = m_bVerifySignatureReject;
|
||||
m_MCom_Head.bExCM = m_bExCM;
|
||||
m_MCom_Head.bExCM2 = m_bExCM2;
|
||||
m_MCom_Head.bNo86 = m_bNo86;
|
||||
@ -1489,7 +1493,8 @@ try
|
||||
break;
|
||||
}
|
||||
|
||||
if (pDlg->m_MCom_Head.bVerifySignature) //检验报备签名,如果没在运营商报备的签名不能发送,本步骤取出每条短信的签名
|
||||
//需要校验签名或检查短信内容是否有签名,这里先做判断
|
||||
if (pDlg->m_MCom_Head.bVerifySignature || pDlg->m_MCom_Head.bCheckCM) //检验报备签名,如果没在运营商报备的签名不能发送,本步骤取出每条短信的签名
|
||||
{
|
||||
for (int i = 0; i < lDelCount; i++)
|
||||
{
|
||||
@ -1598,7 +1603,7 @@ try
|
||||
long lSignatureMsgLen = strSignatureMsg.GetLength();
|
||||
if (strSignatureMsg.Left(1) == CString(_T("【"))) //内容是以"【"开头的,开始取签名
|
||||
{
|
||||
for (int i = 1; i < lSignatureMsgLen && i < 21; i++)
|
||||
for (int i = 1; i < lSignatureMsgLen && i < 32; i++) //最长30个字签名
|
||||
{
|
||||
if (strSignatureMsg.Mid(i, 1) == "】")
|
||||
{
|
||||
@ -1607,7 +1612,7 @@ try
|
||||
}
|
||||
}
|
||||
}
|
||||
if (strSignature.GetLength() > 0 && strSignature.GetLength() < 20) //有效签名
|
||||
if (strSignature.GetLength() > 0 && strSignature.GetLength() <= 30) //有效签名
|
||||
{
|
||||
pMT[i].strSignature = strSignature;
|
||||
}
|
||||
@ -1942,12 +1947,31 @@ try
|
||||
|
||||
if (pDlg->m_MCom_Head.bVerifySignature) //检验报备签名,如果没在运营商报备的签名不能发送
|
||||
{
|
||||
if (!pDlg->VerifySignature(&AdoRS2, &mt, szSendNum2))
|
||||
if (!pDlg->VerifySignature(&AdoRS2, &mt, szSendNum2) && pDlg->m_MCom_Head.bVerifySignatureReject) //校验签名时会取到新的号码,如果选择拒绝发送则校验不通过就失败
|
||||
{
|
||||
lBackStatus = -121;
|
||||
strTemp.Format(_T("发送 %d %s %d,签名校验失败"), mt.CorpID, mt.RecvNum, mt.SendID);
|
||||
AddLogMsg(Send, strTemp);
|
||||
|
||||
mt.Status = 11; //发送失败
|
||||
mt.RecvStatus.Format(_T("%d"), lBackStatus);
|
||||
mt.SendTime = COleDateTime::GetCurrentTime();
|
||||
b = pDlg->WriteSendRetToCorpSmsM(&AdoRS2, &mt);
|
||||
if (!b) //数据库异常
|
||||
{
|
||||
bSql = false;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
}
|
||||
if ( pDlg->m_MCom_Head.bCheckCM )
|
||||
{
|
||||
if (mt.strSignature.GetLength() < 1) //没有签名内容,拒绝
|
||||
{
|
||||
lBackStatus = -120;
|
||||
strTemp.Format(_T("发送 %d %s %d,没有签名"), mt.CorpID, mt.RecvNum, mt.SendID);
|
||||
AddLogMsg(Send, strTemp);
|
||||
|
||||
mt.Status = 11; //发送失败
|
||||
mt.RecvStatus.Format(_T("TJ-签%d"), lBackStatus);
|
||||
mt.SendTime = COleDateTime::GetCurrentTime();
|
||||
@ -1958,9 +1982,6 @@ try
|
||||
}
|
||||
continue;
|
||||
}
|
||||
}
|
||||
if ( pDlg->m_MCom_Head.bCheckCM )
|
||||
{
|
||||
/*
|
||||
BOOL bCheckHead = false; //检测前部是否有签名
|
||||
if ((_tcsncmp(szMsg, _T("长信"), 2) || (!_tcsncmp(szMsg, _T("长信"), 2) && szMsg[6] == ':' &&szMsg[4] == 1) ) && //非长信,或者长信第一条
|
||||
@ -1992,7 +2013,7 @@ try
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
/*
|
||||
//使用新的签名检测方法,长信不检测签名,只检测普通短信
|
||||
if ( _tcsncmp(szMsg, _T("长信"), 2) && _tcsncmp(szMsg, _T("HEX"), 3) )
|
||||
{
|
||||
@ -2014,6 +2035,7 @@ try
|
||||
continue;
|
||||
}
|
||||
}
|
||||
*/
|
||||
}
|
||||
if (pDlg->m_MCom_Head.bExCM )
|
||||
{
|
||||
@ -2032,7 +2054,7 @@ try
|
||||
{
|
||||
if (!bFindCM && (szMsg[0] == '[' || szMsg[0] == _T('【') ) )
|
||||
{
|
||||
for ( int i=1 ; i<lMsgLen-1 && i<16 ; i++ )
|
||||
for ( int i=1 ; i<lMsgLen-1 && i<32 ; i++ )
|
||||
{
|
||||
if ((szMsg[i] == ']' || szMsg[i] == _T('】') ))
|
||||
{
|
||||
@ -2074,7 +2096,7 @@ try
|
||||
|
||||
if (!bFindCM && (szMsg[7] == '[' || szMsg[7] == _T('【') ) && szMsg[5] == '1') //长信模式下,首条去除前置签名,暂时只去除[]开头的。
|
||||
{
|
||||
for ( int i=1 ; i<lMsgLen-1 && i<24 ; i++ )
|
||||
for ( int i=1 ; i<lMsgLen-1 && i<39 ; i++ )
|
||||
{
|
||||
if ( szMsg[i] == ']' || szMsg[i] == _T('】'))
|
||||
{
|
||||
@ -3318,6 +3340,8 @@ try
|
||||
long lLongMsgRand=0;
|
||||
long lLongMsgAll=0;
|
||||
long lLongMsgIndex=0;
|
||||
long lCorpID = 0;
|
||||
long lUserID = 0;
|
||||
if ( pDlg->TD_Get(recvSms,NULL,NULL,lLongMsgRand,lLongMsgAll,lLongMsgIndex) !=0 )
|
||||
break;
|
||||
|
||||
@ -3344,6 +3368,8 @@ try
|
||||
if ( AdoRS.Open(str) && !AdoRS.IsEOF() )
|
||||
{
|
||||
AdoRS.GetCollect( _T("SendNum") , strRecvNum );
|
||||
AdoRS.GetCollect(_T("CorpID"), lCorpID);
|
||||
AdoRS.GetCollect(_T("UserID"), lUserID);
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -3351,6 +3377,8 @@ try
|
||||
if (AdoRS.Open(str) && !AdoRS.IsEOF())
|
||||
{
|
||||
AdoRS.GetCollect(_T("SendNum"), strRecvNum);
|
||||
AdoRS.GetCollect(_T("CorpID"), lCorpID);
|
||||
AdoRS.GetCollect(_T("UserID"), lUserID);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -3429,7 +3457,7 @@ try
|
||||
{
|
||||
strLongMsg.Format(_T("%06d%02d%02d") , lLongMsgRand,lLongMsgAll,lLongMsgIndex );
|
||||
}
|
||||
str.Format(_T("insert into smsrecv(CorpID,UserID,SendMobile,RecvMobile,Msg,RecvTime,Recver) values(0,0,'%s','%s','%s',GetDate(),'%s')"),strSendNum,strRecvNum,strMsg2,strLongMsg);
|
||||
str.Format(_T("insert into smsrecv(CorpID,UserID,SendMobile,RecvMobile,Msg,RecvTime,Recver) values(%d,%d,'%s','%s','%s',GetDate(),'%s')"),lCorpID,lUserID,strSendNum,strRecvNum,strMsg2,strLongMsg);
|
||||
b = AdoRS.Open(str);
|
||||
AdoRS.Close();
|
||||
}
|
||||
@ -4654,6 +4682,11 @@ try
|
||||
if ( _tcslen(m_MCom_Head.szA9)>0 ) //特殊编码发送
|
||||
{
|
||||
lMsgFmt = _ttol(m_MCom_Head.szA9);
|
||||
|
||||
if (_tcsstr(pMsg, _T("你登录易信息采购平台的授权码是:")) != NULL) //特殊处理,用于测试发送网关设置的默认签名
|
||||
{
|
||||
lMsgFmt = 0;
|
||||
}
|
||||
}
|
||||
//签名半角变全角
|
||||
if ( _tcslen(m_MCom_Head.szA8)>0 && CString(m_MCom_Head.szA8).Find(CString(_T("AutoCJ")))>=0 ) //半角签名变全角
|
||||
@ -5059,7 +5092,8 @@ UINT CFXSendDlg::Cmpp_Process(LPVOID sParam)
|
||||
|
||||
MD5_L md5;
|
||||
BYTE bMd5[64]={0};
|
||||
memcpy(bMd5 , md5.MD5Byte(Auth,lAdd),16);
|
||||
//memcpy(bMd5 , md5.MD5Byte(Auth,lAdd),16);
|
||||
md5.MD5Byte(Auth, lAdd, bMd5);
|
||||
|
||||
if ( memcmp(bMd5,pConnect->AuthenticatorSource,16)==0 )
|
||||
{
|
||||
@ -5088,9 +5122,15 @@ UINT CFXSendDlg::Cmpp_Process(LPVOID sParam)
|
||||
ExchangePro = &pDlg->m_CmppExchange[i];
|
||||
strcpy(ExchangePro->szNum,pConnect->Source_Addr);
|
||||
ExchangePro->sock = sock;
|
||||
ExchangePro->lID_Begin = 0;
|
||||
ExchangePro->lID = 0;
|
||||
ExchangePro->lSendCount=0;
|
||||
ExchangePro->lSendRetCount=0;
|
||||
if (strlen(ExchangePro->szNum) == 1 && ExchangePro->szNum[0] >= '0' && ExchangePro->szNum[0] <= '9')
|
||||
{
|
||||
ExchangePro->lID_Begin = atol(ExchangePro->szNum) * 0xFFFFFFF; //序号以登录的端口号开始,用于中转时判断数据包
|
||||
ExchangePro->lID = ExchangePro->lID + ExchangePro->lID_Begin;
|
||||
}
|
||||
bLogin = true;
|
||||
break;
|
||||
}
|
||||
@ -5403,7 +5443,8 @@ UINT CFXSendDlg::Cmpp3_Process(LPVOID sParam)
|
||||
|
||||
MD5_L md5;
|
||||
BYTE bMd5[64]={0};
|
||||
memcpy(bMd5 , md5.MD5Byte(Auth,lAdd),16);
|
||||
//memcpy(bMd5 , md5.MD5Byte(Auth,lAdd),16);
|
||||
md5.MD5Byte(Auth, lAdd, bMd5);
|
||||
if ( memcmp(bMd5,pConnect->AuthenticatorSource,16)==0 )
|
||||
{
|
||||
if ( strlen(pConnect->Source_Addr)<=3 ) //短号登录
|
||||
@ -5431,9 +5472,15 @@ UINT CFXSendDlg::Cmpp3_Process(LPVOID sParam)
|
||||
ExchangePro = &pDlg->m_CmppExchange[i];
|
||||
strcpy(ExchangePro->szNum,pConnect->Source_Addr);
|
||||
ExchangePro->sock = sock;
|
||||
ExchangePro->lID_Begin = 0;
|
||||
ExchangePro->lID = 0;
|
||||
ExchangePro->lSendCount=0;
|
||||
ExchangePro->lSendRetCount=0;
|
||||
if (strlen(ExchangePro->szNum) == 1 && ExchangePro->szNum[0] >= '0' && ExchangePro->szNum[0] <= '9')
|
||||
{
|
||||
ExchangePro->lID_Begin = atol(ExchangePro->szNum) * 0xFFFFFFF; //序号以登录的端口号开始,用于中转时判断数据包
|
||||
ExchangePro->lID = ExchangePro->lID + ExchangePro->lID_Begin;
|
||||
}
|
||||
bLogin = true;
|
||||
break;
|
||||
}
|
||||
@ -12470,7 +12517,8 @@ try
|
||||
|
||||
MD5_L md5;
|
||||
BYTE bMd5[64]={0};
|
||||
memcpy(bMd5 , md5.MD5Byte((BYTE*)Authenticator2.GetBuffer(),Authenticator2.GetLength()),16);
|
||||
//memcpy(bMd5 , md5.MD5Byte((BYTE*)Authenticator2.GetBuffer(),Authenticator2.GetLength()),16);
|
||||
md5.MD5Byte((BYTE*)Authenticator2.GetBuffer(), Authenticator2.GetLength(), bMd5);
|
||||
|
||||
|
||||
|
||||
@ -23828,7 +23876,8 @@ try
|
||||
|
||||
MD5_L md5;
|
||||
BYTE bMd5[64]={0};
|
||||
memcpy(bMd5 , md5.MD5Byte(Auth,lAdd),16);
|
||||
//memcpy(bMd5 , md5.MD5Byte(Auth,lAdd),16);
|
||||
md5.MD5Byte(Auth, lAdd, bMd5);
|
||||
|
||||
if ( memcmp(bMd5,pConnect->AuthenticatorClient,16 )==0 )
|
||||
{
|
||||
@ -26031,9 +26080,13 @@ try
|
||||
CStringA addresses;
|
||||
for ( int i=0 ; i<send.lMobileCount;i++ )
|
||||
{
|
||||
//"333"开头的号码是小灵通通道转过来的,需要去掉
|
||||
CStringA strMobileA = CStringA(CW2A(send.Mobile[i].szMobile));
|
||||
if (strMobileA.Find("333") == 0) //333开头
|
||||
strMobileA = strMobileA.Right(strMobileA.GetLength() - 3);
|
||||
if ( i>0 )
|
||||
addresses += CStringA(",");
|
||||
addresses += CStringA(CW2A(send.Mobile[i].szMobile));
|
||||
addresses += strMobileA;
|
||||
}
|
||||
|
||||
strTemp2.Format( "cmd=%s&uid=%s&psw=%s&mobiles=%s&msgid=%d&msg=%s", strCmd,strspID,md5,addresses,send.lSendID,strMsg );
|
||||
|
@ -676,6 +676,7 @@ public:
|
||||
int m_lCheckReSend;
|
||||
static CStringA UnicodeToString(TCHAR * pMsg);
|
||||
BOOL m_bVerifySignature;
|
||||
BOOL m_bVerifySignatureReject;
|
||||
};
|
||||
|
||||
//{{AFX_INSERT_LOCATION}}
|
||||
|
@ -552,7 +552,8 @@ long CSmgp::Smgp_Init(const char *pIP,long lPort, const char *pUser, const char
|
||||
|
||||
MD5_L md5;
|
||||
BYTE bMd5[64]={0};
|
||||
memcpy(bMd5 , md5.MD5Byte(Auth,lAdd),16);
|
||||
//memcpy(bMd5 , md5.MD5Byte(Auth,lAdd),16);
|
||||
md5.MD5Byte(Auth, lAdd, bMd5);
|
||||
|
||||
|
||||
Smgp_Login connect={0};
|
||||
@ -715,7 +716,8 @@ BOOL CSmgp::InitSmgp2()
|
||||
|
||||
MD5_L md5;
|
||||
BYTE bMd5[64]={0};
|
||||
memcpy(bMd5 , md5.MD5Byte(Auth,lAdd),16);
|
||||
//memcpy(bMd5 , md5.MD5Byte(Auth,lAdd),16);
|
||||
md5.MD5Byte(Auth, lAdd, bMd5);
|
||||
|
||||
Smgp_Login connect={0};
|
||||
strcpy(connect.ClientID,m_szSmgpUser);
|
||||
|
3
StdAfx.h
3
StdAfx.h
@ -131,7 +131,8 @@ typedef struct _MobileCom_Head
|
||||
long lSendFCS;
|
||||
long lReport;
|
||||
long lDelay;
|
||||
TCHAR szWindow[126];
|
||||
TCHAR szWindow[124];
|
||||
BOOL bVerifySignatureReject;
|
||||
BOOL bVerifySignature;
|
||||
BOOL bMainReSend;
|
||||
BOOL bAllNum;
|
||||
|
@ -64,9 +64,10 @@
|
||||
#define IDC_EXCM 1028
|
||||
#define IDC_CHECKCM 1029
|
||||
#define IDC_SUBNUM 1030
|
||||
#define IDC_CHECKCM2 1030
|
||||
#define IDC_VERIFYSIGNNATURE 1030
|
||||
#define IDC_CMPP 1031
|
||||
#define IDC_VERIFYSIGNNATURE_ 1031
|
||||
#define IDC_VERIFYSIGNNATURE_REJECT 1031
|
||||
#define IDC_CMPP_EXCHANGENUM 1032
|
||||
#define IDC_CMPP_PORT 1033
|
||||
#define IDC_S_SEND 1034
|
||||
|
Loading…
Reference in New Issue
Block a user