-
WCDMA接口协议中文版,用于详细了解WCDMA接口结构组成及流程
WCDMA接口协议中文版,用于详细了解WCDMA接口结构组成及流程-Chinese version of WCDMA Interface Protocol for details about the composition and structure of WCDMA interface flow
- 2022-04-27 08:42:50下载
- 积分:1
-
SIM300C EVB User Guide English manual, want to be useful for you
SIM300C EVB User Guide英语手册,希望对您有用-SIM300C EVB User Guide English manual, want to be useful for you
- 2022-06-18 13:52:00下载
- 积分:1
-
ICQ client source code
ICQ客户端源代码-ICQ client source code
- 2022-02-25 19:40:06下载
- 积分:1
-
On the splitting method for VQ codebook generation
On the splitting method for VQ codebook generation
- 2022-07-01 19:52:35下载
- 积分:1
-
simple chat program, beginners can see, not masters!
简单的聊天程序,初学者可以看看,高手勿进!-simple chat program, beginners can see, not masters!
- 2022-05-14 08:59:41下载
- 积分:1
-
控制语音Modem的程序
控制语音Modem的程序 -Modem program controlling voice
- 2022-01-24 09:39:49下载
- 积分:1
-
存储转发网络
这个源代码在NS2中。这是为商店结转网络。门店结转网络是在间歇连接期间使用的网络。它存储、传输数据,并在失去连接时转发数据。在我的程序中,我创建了一个数据库节点,它为请求节点发布名称空间
- 2022-03-21 05:51:35下载
- 积分:1
-
移动网格网络仿真
应用背景模拟AODV和AOMDV网格网络中的路由协议关键技术路由协议(AODV和AOMDV),网络模拟器2,移动网格,Tcl/Tk脚本编码,netwoork动画师(NAM),通过对上述代码的帮助我们可以分析 ;平均抖动等性能指标,平均端到端延迟,吞吐量。
- 2022-03-11 23:09:05下载
- 积分:1
-
symbian编程,国内的参考书,系统介绍api和symbian的体系结构。
symbian编程,国内的参考书,系统介绍api和symbian的体系结构。-symbian programming, internal reference, the system introduced api and symbian architecture.
- 2023-02-09 13:50:10下载
- 积分:1
-
两台电脑简单通信
很简单的源码,通过C++实现两台电脑的简单通信,希望对大家有帮助,#include
#include
#pragma comment(lib,"ws2_32.lib")
void main()
{
WORD wVersionRequested;
WSADATA wsaData;
int err;
wVersionRequested = MAKEWORD( 1, 1 );//请求1.1版本的winsock库
err = WSAStartup( wVersionRequested, &wsaData );
if ( err != 0 ) {
return;
}
if ( LOBYTE( wsaData.wVersion ) != 1 ||
HIBYTE( wsaData.wVersion ) != 1 ) {
WSACleanup( );
return;
}
&n
- 2022-03-20 09:13:36下载
- 积分:1