资源简介
P2P聊天软件使用VC6开发,包括文字聊天和语音聊天功能,总之很强大,可以学习下
代码片段和文件信息
// LoginDlg.cpp : implementation file
//
#pragma comment(lib“ws2_32.lib“)
#include “stdafx.h“
#include “P2PClient.h“
#include “LoginDlg.h“
#include “windows.h“
#include “Exception.h“
#include
using namespace std;
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
UserList ClientList;
SOCKET PrimaryUDP;
/////////////////////////////////////////////////////////////////////////////
// CLoginDlg dialog
CLoginDlg::CLoginDlg(CP2PClientDlg *MainDlgCWnd* pParent /*=NULL*/)
: CDialog(CLoginDlg::IDD pParent)
{
//{{AFX_DATA_INIT(CLoginDlg)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
m_pMainDlg = MainDlg;
IsLogin = false;
}
void CLoginDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CLoginDlg)
DDX_Control(pDX IDC_USERNAME m_UserName);
DDX_Control(pDX IDC_SVRIP m_SvrIP);
DDX_Control(pDX IDC_PASSWORD m_PassWord);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CLoginDlg CDialog)
//{{AFX_MSG_MAP(CLoginDlg)
ON_BN_CLICKED(IDC_BUTTON_CANCEL OnButtonCancel)
ON_BN_CLICKED(IDC_BUTTON_LOGIN OnBtnLogin)
//}}AFX_MSG_MAP
ON_MESSAGE(WM_RECVDATAOnRecvData)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CLoginDlg message handlers
SOCKET mksock(int type)
{
SOCKET sock = socket(AF_INET type 0);
if (sock < 0)
{
AfxMessageBox(“套接字创建失败!“);
return -1;
}
return sock;
}
void BindSock(SOCKET sock)
{
sockaddr_in sin;
sin.sin_addr.S_un.S_addr = INADDR_ANY;
sin.sin_family = AF_INET;
sin.sin_port = 0;
if (bind(sock (struct sockaddr*)&sin sizeof(sin)) < 0)
{
closesocket(sock);
AfxMessageBox(“绑定失败!“);
return;
}
}
BOOL ConnectToServer(SOCKET sockchar *username char *serverip)
{
sockaddr_in remote;
remote.sin_addr.S_un.S_addr = inet_addr(serverip);
remote.sin_family = AF_INET;
remote.sin_port = htons(SERVER_PORT);
stMessage sendbuf;
sendbuf.iMessageType = LOGIN;
strncpy(sendbuf.message.loginmember.userName username 10);
sendto(sock (const char*)&sendbuf sizeof(sendbuf) 0 (const sockaddr*)&remotesizeof(remote));
int usercount;
int fromlen = sizeof(remote);
int iread = recvfrom(sock (char *)&usercount sizeof(int) 0 (sockaddr *)&remote &fromlen);
if(iread<=0)
{
AfxMessageBox(“服务器连接失败!\n“);
return false;
}
// 登录到服务端后,接收服务端发来的已经登录的用户的信息
for(int i = 0;i {
stUserListNode *node = new stUserListNode;
recvfrom(sock (char*)node sizeof(stUserListNode) 0 (sockaddr *)&remote &fromlen);
ClientList.push_back(node);
}
return true;
}
void CLoginDlg::OnButtonCancel()
{
// TODO: Add your control notification handler code here
CDialog::OnCancel();
}
BOOL CLoginDlg::OnInitDialog()
{
CDialog::OnInitDialog();
// TODO: Add extra
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 74177 2011-05-09 13:45 P2P聊天\P2PClient\Debug\LoginDlg.obj
文件 122929 2011-05-09 13:45 P2P聊天\P2PClient\Debug\P2PClient.exe
文件 274296 2011-05-09 13:45 P2P聊天\P2PClient\Debug\P2PClient.ilk
文件 21653 2011-05-09 13:45 P2P聊天\P2PClient\Debug\P2PClient.obj
文件 5630376 2011-05-09 13:46 P2P聊天\P2PClient\Debug\P2PClient.pch
文件 484352 2011-05-09 13:45 P2P聊天\P2PClient\Debug\P2PClient.pdb
文件 3400 2011-05-09 13:45 P2P聊天\P2PClient\Debug\P2PClient.res
文件 94642 2011-05-09 13:45 P2P聊天\P2PClient\Debug\P2PClientDlg.obj
文件 110663 2011-05-09 13:45 P2P聊天\P2PClient\Debug\StdAfx.obj
文件 15016 2011-05-09 13:45 P2P聊天\P2PClient\Debug\TalkDlg.obj
文件 176225 2011-05-09 13:45 P2P聊天\P2PClient\Debug\TalkDll.dll
文件 263168 2011-05-09 13:45 P2P聊天\P2PClient\Debug\vc60.idb
文件 413696 2011-05-09 13:45 P2P聊天\P2PClient\Debug\vc60.pdb
文件 1997 2011-05-09 13:45 P2P聊天\P2PClient\Exception.h
文件 7724 2011-05-09 13:45 P2P聊天\P2PClient\LoginDlg.cpp
文件 1708 2011-05-09 13:45 P2P聊天\P2PClient\LoginDlg.h
文件 22188 2011-05-09 13:45 P2P聊天\P2PClient\P2PClient.aps
文件 2315 2011-05-09 13:45 P2P聊天\P2PClient\P2PClient.clw
文件 2568 2011-05-09 13:45 P2P聊天\P2PClient\P2PClient.cpp
文件 4465 2011-05-09 13:45 P2P聊天\P2PClient\P2PClient.dsp
文件 541 2011-05-09 13:45 P2P聊天\P2PClient\P2PClient.dsw
文件 1387 2011-05-09 13:45 P2P聊天\P2PClient\P2PClient.h
文件 99328 2011-05-11 17:56 P2P聊天\P2PClient\P2PClient.ncb
文件 570880 2011-05-11 17:56 P2P聊天\P2PClient\P2PClient.opt
文件 252 2011-05-09 13:45 P2P聊天\P2PClient\P2PClient.plg
文件 6916 2011-05-09 13:45 P2P聊天\P2PClient\P2PClient.rc
文件 15483 2011-05-09 13:45 P2P聊天\P2PClient\P2PClientDlg.cpp
文件 2038 2011-05-09 13:45 P2P聊天\P2PClient\P2PClientDlg.h
文件 3633 2011-05-09 13:45 P2P聊天\P2PClient\ReadMe.txt
文件 1078 2011-05-09 13:45 P2P聊天\P2PClient\res\P2PClient.ico
............此处省略80个文件信息
相关资源
- 简单易懂C++ WebServer接口开发源代码
- 用c++做数据曲线和函数曲线
- c++太空射击代码Opengl
- C++写的报文转发的网关程序
- 傅里叶变换研究|C++源码|带通滤波器
- MFC局域网聊天室C++
- k-means的C++代码vs
- 进程管理模拟 VC++ mfc实现
- 销售管理系统C++
- 列车时刻表查询系统c++ sql
- Visual_C++_开发的即时通讯系统
- 82道华为校招历年机试编程题C++代码附
- 画图模仿画图白板小程序源代码(V
- 经典小游戏大集合(C++ 源码)
- AES加密/解密C++源代码
- 分别用c语言和c++mfc实现正态分布曲线
- Programming_With_Microsoft_Visual_C++_.Net
- 语音识别端点检测程序C++
- visual c++实现的跳棋程序
- ISO/IEC 14882:2014 C++14 C++标准 英文版 P
- 用C++实现MapInfo 的mif文件读取源码
- 七巧板VC++实现
- 深入理解C++11:C++11新特性解析与应用
- C++FTP服务端客户端
- C11 C++11标准帮助文档中文版-20181230
- 一个用C++编写的画图程序
- Snake主动轮廓模型的C++实现
- C++调用python3.5中的函数
- visual c++数字图像处理何斌光盘源代码
- 用C++实现OFDM
评论
共有 条评论