资源简介
UDP打洞P2P实例源码
代码片段和文件信息
/* P2P 程序客户端
*
* 文件名:P2PClient.c
*
* 日期:2004-5-21
*
* 作者:shootingstars(zhouhuis22@sina.com)
*
*/
#pragma comment(lib“ws2_32.lib“)
#include “windows.h“
#include “..\proto.h“
#include “..\Exception.h“
#include
#include
using namespace std;
UserList ClientList;
#define COMMANDMAXC 256
#define MAXRETRY 5
SOCKET PrimaryUDP;
char UserName[10];
char ServerIP[20];
bool RecvedACK;
//初始化SOCKET
void InitWinSock()
{
WSADATA wsaData;
if (WSAStartup(MAKEWORD(2 2) &wsaData) != 0)
{
printf(_T(“初始化Socket 失败\r\n“));
throw Exception(““);
}
else{
printf(“Using %s (Status: %s)\n“
wsaData.szDescription wsaData.szSystemStatus);
printf(“with API versions %d.%d to %d.%d\n\n“
LOBYTE(wsaData.wVersion) HIBYT
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2010-07-22 16:30 P2P\
文件 498 2004-05-21 21:58 P2P\Exception.h
目录 0 2017-08-25 01:46 P2P\P2PClient\
目录 0 2017-08-25 00:45 P2P\P2PClient\Backup\
文件 907 2004-05-22 08:47 P2P\P2PClient\Backup\P2PClient.sln
文件 9903 2017-08-25 01:46 P2P\P2PClient\P2PClient.cpp
文件 4324 2004-05-21 22:55 P2P\P2PClient\P2PClient.dsp
文件 541 2004-05-21 21:55 P2P\P2PClient\P2PClient.dsw
文件 33792 2010-07-21 18:38 P2P\P2PClient\P2PClient.ncb
文件 48640 2010-07-21 18:38 P2P\P2PClient\P2PClient.opt
文件 1489 2010-07-21 18:32 P2P\P2PClient\P2PClient.plg
文件 1070 2017-08-25 00:46 P2P\P2PClient\P2PClient.sln
文件 8192 2004-05-22 09:24 P2P\P2PClient\P2PClient.suo
文件 4361 2004-05-22 08:47 P2P\P2PClient\P2PClient.vcproj
文件 6498 2017-08-25 00:49 P2P\P2PClient\P2PClient.vcxproj
文件 905 2017-08-25 00:46 P2P\P2PClient\P2PClient.vcxproj.filters
目录 0 2017-08-25 00:38 P2P\P2PServer\
目录 0 2017-08-25 00:38 P2P\P2PServer\Backup\
文件 907 2004-05-22 08:47 P2P\P2PServer\Backup\P2PServer.sln
文件 5348 2010-07-22 14:06 P2P\P2PServer\P2PServer.cpp
文件 4320 2004-05-21 22:55 P2P\P2PServer\P2PServer.dsp
文件 541 2004-05-21 21:51 P2P\P2PServer\P2PServer.dsw
文件 50176 2010-07-22 15:22 P2P\P2PServer\P2PServer.ncb
文件 54784 2010-07-22 15:22 P2P\P2PServer\P2PServer.opt
文件 252 2010-07-22 15:15 P2P\P2PServer\P2PServer.plg
文件 1075 2017-08-25 00:38 P2P\P2PServer\P2PServer.sln
文件 8192 2004-05-22 09:24 P2P\P2PServer\P2PServer.suo
文件 4305 2004-05-22 08:47 P2P\P2PServer\P2PServer.vcproj
文件 6286 2017-08-25 00:38 P2P\P2PServer\P2PServer.vcxproj
文件 905 2017-08-25 00:38 P2P\P2PServer\P2PServer.vcxproj.filters
文件 72314 2010-07-22 16:29 P2P\Peer-to-Peer (P2P).txt
............此处省略3个文件信息
- 上一篇:tcp connect扫描端口扫描
- 下一篇:简单的模拟远程控制
相关资源
- VC基本图像处理源码集
- OpenGL应用(动画渐变色显示)
- OpenGL应用2(碰撞检测)
- 《DirectX游戏开发终极指南》随书源码
- Qt5C++GUIProgrammingCookbook(PDF+源码)
- 定时器 c++源码
- 倒立摆源码
- 自动备份软件源码
- Amcap源码
- c++ 串口通信Demo源码(方便学习调试)
- c++学生信息管理系统源码(数据保存
- libssh2-1.8.0-vs2010项目
- hotelcy大学餐厅的管理系统源码(附数
- C语言解析精粹
- redis-4.0.11源码(附测试项目)
- c++ 万能打印模块源码
- c++ 界面换肤
- UDPserver开发附SQLite、Log4CPP等
- 图书馆管理系统(c++入门级源码)9
- sift算法的C源码(网上唯一原创版本不
- c++ 文件目录管理与显示(源码+设计文
- 《数据结构(c语言版)》pdf(附算法
- C++实战源码-AVI文件压缩工具
- C++实战源码-利用Direct Show进行视频捕
- C++实战源码-PSD文件向其他格式转换
- C++实战源码-幸运转盘
- C++实战源码-黑白棋
- C++实战源码-将Wave转换为MP3
- C++实战源码-网络五子棋
- C++实战源码-PSD文件浏览
评论
共有 条评论