-
Intel web2.0 technology development kit that can be used to develop technical gu...
英特尔web2.0技术开发套件,可用于开发人员的技术指南。-Intel web2.0 technology development kit that can be used to develop technical guidelines for staff.
- 2022-06-17 15:29:43下载
- 积分:1
-
程序功能是完成基于OO4O和VC 6.0 实现Oracle数据库操作。运行环境为WINDOWS 2000,ORALCE 9I,VC 6.0...
程序功能是完成基于OO4O和VC 6.0 实现Oracle数据库操作。运行环境为WINDOWS 2000,ORALCE 9I,VC 6.0-Program features is the completion of OO4O and VC 6.0 based on the realization of Oracle database operations. Operating environment for the WINDOWS 2000, ORALCE 9I, VC 6.0
- 2023-01-02 10:55:06下载
- 积分:1
-
俄罗斯方块c代码,好玩简单,易懂,快快快快看
俄罗斯方块c代码,好玩简单,易懂,快快快快看-program
- 2022-05-09 10:38:28下载
- 积分:1
-
一款功能齐全的事务提醒,时钟软件。其中包括对窗口特效的处理、对INI文件的操作等...
一款功能齐全的事务提醒,时钟软件。其中包括对窗口特效的处理、对INI文件的操作等-a feature Affairs reminded that the clock software. Including the effects of the treatment window to the INI file operation
- 2022-03-22 15:20:44下载
- 积分:1
-
Socket通信示例
一次.net Socket UDP编程
最近想写一个网络服务器端的程序,想看看在大量客户端数下程序的运行情况。于是对.net 的Socket编程进行了一些研究,发现.net 3.5 里SocketAsyncEventArgs 是基于IOCP实现。MSDN上有相关的示例,但它是基于TCP协议的,而我想要的是基于UDP协议的。网上很难找到基于UDP协议的SocketAsyncEventArgs示例(UDP需要用IOCP吗?),于是决定自己写一个基于UDP协议的示例,看看它在和大量客户端通讯时的运行情况。
程序分为服务器端和客户端,它们使用UDP协议进行通讯。众所周知UDP是无连接的,可我又想计算出有多少客户端和服务器通信,其中又有多少是新的客户端。所以设计让服务器端程序绑定两个端口。一个端口专门用于接收客户端第一次发送过来的数据包;另一个端口负责和已经接入的客户端进行通讯(是不是有点像TCP的接入,例子本身也在模仿Tcp编程)。客户端比较简单让它生成足够多的Socket,然后不断的向服务器端发送数据包即可。
- 2022-08-17 12:38:18下载
- 积分:1
-
无盘通用IP修改器 无盘爱好者的好工具
无盘通用IP修改器 无盘爱好者的好工具-diskless common IP changes for the good diskless lovers tools
- 2022-02-01 18:21:06下载
- 积分:1
-
关于资料管理的源程序,功能强大,可操作性强。
关于资料管理的源程序,功能强大,可操作性强。-information on the management of the source, powerful, and highly workable.
- 2022-03-12 16:23:31下载
- 积分:1
-
C语言实现贪吃蛇
//: Snake.c
/* * * * * * * * * * * * * * * * * * * * * * *
// Project: RedSnake(贪吃蛇)
// Author: Problue
// Version: 1.0
// Date: 19:55 2012-10-29
* * * * * * * * * * * * * * * * * * * * * * */
#include
#include
#include
#include "pcc32.h"
// 定义地图的尺寸及坐标
#define MAP_WIDTH 32 // 地图宽度
#define MAP_HEIGHT 32 // 地图高度
#define OFFSET_X 1 // 地图左右的边距
#define OFFSET_Y 1 // 地图上下的边距
#define TOTAL_WIDTH (MAP_WIDTH + OFFSET_X * 2) // 窗口宽度
#define TOTAL_HEIGHT (MAP_HEIGHT + OFFSET_Y * 2) // 窗口高度
#define GotoMap(x, y) gotoTextPos((x) * 2, (y))
// 定义地图方格的状态,分别为: 空格、蛇头、蛇身、蛇尾、食物
#define BS_SPACE 0
#define BS_SHEAD 1
#define BS_SBODY 2
#define BS_STAIL 3
#define BS_FOOD 4
// 蛇默认长度
#define SNAKE_MIN_LEN 5
// 定义蛇运动方向: 上、下、左、右
#define DIR_UP 1
#define DIR_DOWN 2
#define DIR_LEFT 3
- 2022-05-15 19:59:34下载
- 积分:1
-
自己编写的Dtmf的matlab仿真的fig文件,在matlab6。0下编译通过
自己编写的Dtmf的matlab仿真的fig文件,在matlab6。0下编译通过-Fig file of Mathlab Dtmf Emulation. matlab6.0
- 2022-06-20 05:17:46下载
- 积分:1
-
计算机网络与多媒体技术的飞速发展,对传统远程通信领域产生了深远的影
响,越来越多的多媒体信息出现在Internet上,视频点播(Video on Deman...
计算机网络与多媒体技术的飞速发展,对传统远程通信领域产生了深远的影
响,越来越多的多媒体信息出现在Internet上,视频点播(Video on Demand,简
称VOD)也随之产生。
-
The rapid development of computer network and multimedia technology has great influnce on telecommunication. More and more multimedia information appears on the Internet,thus video on demand (for short VOD) also come into being.
VOD is an interactive multimedia information services form.The users are able to select video information on demand according to their need and interest and control the process.VOD enjoys a brigt future and has already become hot investigation in the field of computer network and multimedia technology
- 2022-09-18 09:05:03下载
- 积分:1