CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - bit c
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Sub Category
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
xml-soap-webservice
Remote Control
P2P
TCP/IP stack
SNMP
Grid Computing
CloudComputing
Search - bit c - List
[
Internet-Network
]
(利用GIF_LZW算法实现的)网络图片传输
DL : 0
(利用GIF_LZW算法实现的)网络图片传输 技术特点 ~~~~~~~~ 一、使用TCP协议传输数据。理由:稳定性好。 二、使用字节数据流进行传输,理由: A:VB的String存在自动Unicode转换问题,影响速度; B:可以直接发送8位字节数据,不需要使用Base64编码,从而减少了编码时间。 三、使用GIF-LZW压缩算法压缩图像。理由: A:行程编码、Huffman压缩算法压缩率太低; B:JPEG压缩算法需要太多位运算,且运算量大(有专门MMX优化算法),不利于VB实现; C:GIF-LZW压缩算法压缩率较好,且我已想出VB语法下高效GIF-LZW压缩/解压算法。 四、使用“有序抖动”算法进行 色彩量化。理由:“有序抖动”处理的结果具有一定规律性,有助于LZW类算法压缩。-(using GIF_LZW algorithm) picture transmission network ~~~~~~~~ a technical features, the use of TCP to transmit data. Reason : good stability. Two, the use of byte data stream for transmission, reasons : A : VB String exist automatically Unicode conversion, the impact speed; B : can directly send eight bytes of data and do not need to use Base64 encoding, thereby reducing the coding time. 3, the use of GIF- LZW compression algorithm for image compression. Reason : A : itinerary coding, Huffman compression algorithm compression rate is too low; B : JPEG compression algorithm needs much-bit computing, and large amount of computation (with MMX specialized optimization algorithm), is not conducive to VB; C : GIF- LZW compression algorithm compression ratio better, and I have come up with un
Date
: 2026-01-02
Size
: 61kb
User
:
房
[
Internet-Network
]
实验四 路由跟踪111
DL : 0
这是一份实验报告,是关于路由器的trace的,做的时候还是有点困难,做完了收获很大,供大家参考了,-this experiment is a report on the trace router, or the time to do a bit difficult to finish a very fruitful, for your reference.
Date
: 2026-01-02
Size
: 37kb
User
:
Jack
[
Internet-Network
]
cutebomb_blink
DL : 0
blink的最新版本是1.04,它可以混合连接16位和32位代码,可连接Vc++,Borland c++生成的.obj文件,还能混合连接OMF和COFF格式的.obj文件,将微软和Borland大统一^ ^。生成的bin文件短小精悍,而且可以指定bin放在内存什么地址执行.对于嵌入式开发需要的bin可执行文件十分有用。感谢cutebomb提交。-blink of 1.04 is the latest version, which can link mixed 16- and 32-bit code, which will connect Vc, Borland c generated. Obj files, and mixed connectivity OMF and COFF format. Obj files, Microsoft and Borland reunification ^ ^. Bin documents generated short and pithy, but can specify what bin on the memory address implementation. For embedded developers need bin executable file is very useful. Thank cutebomb submitted.
Date
: 2026-01-02
Size
: 33kb
User
:
张小姐
[
Internet-Network
]
winsocketAsyCommunicate
DL : 0
这里是我自己学习winsocket2 编程序时候所写的一个聊天室的程序,程序是一步一步完善过来的。 ChartSrv是服务器端 ChartCLient是客户端(可以开多个) 由于里面加入了获取hostname的东西所以速度有点慢,可以注释掉直接使用IP通信就快了。 代码展示了socket2的异步通信的实现,有兴趣的可以一起学习。-Here is my own time learning winsocket2 programmed written by a chat room procedures step by step procedure is to improve overnight. ChartSrv is a server-side ChartCLient the client (can be opened more than) as a result of which joined the hostname to obtain the speed of things so a bit slow, you can comment out the direct use of IP communications on faster. Code demonstrates the socket2 realize asynchronous communication, are interested in learning together.
Date
: 2026-01-02
Size
: 109kb
User
:
wangwei
[
Internet-Network
]
MD5
DL : 0
MD5 (Message-Digest algorithm 5) is a widely used, partially insecure[1] cryptographic hash function with a 128-bit hash value. As an Internet standard (RFC 1321), MD5 has been employed in a wide variety of security applications, and is also commonly used to check the integrity of files. An MD5 hash is typically expressed as a 32 digit hexadecimal number.
Date
: 2026-01-02
Size
: 3.75mb
User
:
chu
[
Internet-Network
]
SlidingWindowUDP(1)
DL : 0
教学实验源代码,提供对滑动窗口协议的实验演示,协议分层和协议软件的设计与实现有基本的认识利用所学数据链路层原理,自己设计一个滑动窗口协议并在仿真环境下编程实现有噪音信道环境下的 可靠的双工通信。信道模型为 8000bps 全双工卫星信道,信道传播时延 270 毫秒,信道误码率为 10-5,信道提供字节流传输服务,网络层分组长度在240~256字节范围-Teaching experiment source code, on the Sliding Window Protocol provides experimental demonstration of the agreement stratification and protocol software design and implementation of a basic understanding of the use of the data link layer principle, its own design of a sliding window protocol and simulation programming environment the realization of the noise channel environment duplex reliable communication. Channel model for 8000bps full-duplex satellite channel, channel propagation delay of 270 ms, channel bit error rate of 10-5, byte-stream channel to provide transmission services, network layer packet length in the range of 240 ~ 256 bytes
Date
: 2026-01-02
Size
: 405kb
User
:
Tony Yau
[
Internet-Network
]
Picture.Translate.Of.Remote.Desktop.Control
DL : 0
一、使用TCP协议传输数据。理由:稳定性好。 二、使用字节数据流进行传输,理由: A:VB的String存在自动Unicode转换问题,影响速度; B:可以直接发送8位字节数据,不需要使用Base64编码,从而减少了编码时间。 三、使用GIF-LZW压缩算法压缩图像。理由: A:行程编码、Huffman压缩算法压缩率太低; B:JPEG压缩算法需要太多位运算,且运算量大(有专门MMX优化算法),不利于VB实现; C:GIF-LZW压缩算法压缩率较好,且我已想出VB语法下高效GIF-LZW压缩/解压算法。 四、使用“有序抖动”算法进行 色彩量化。理由:“有序抖动”处理的结果具有一定规律性,有助于LZW类算法压缩。-First, use the TCP protocol to transmit data. Reason: better stability. Two, the use of byte data stream for transmission, the reasons: A: VB s String existence automatic Unicode conversion question, effects of speed B: can directly send 8-bit byte data, Does not need to use Base64 encoding, thereby reducing the encoding time. Three, the use of GIF-LZW compression algorithm for image compression. Rationale: A: Run-Length Coding, Huffman compression algorithm compression ratio is too low B: JPEG compression algorithm required too many bit computing, and computing a large quantity (MMX has specialized optimization algorithm), VB is not conducive to implementation C: GIF-LZW compression algorithm compression ratio is better, and I have come up with efficient under VB grammar GIF-LZW compression/decompression algorithm. Four, use the "orderly jitter" algorithm for color quantization. Rationale: "orderly jitter" must deal with the results of reg
Date
: 2026-01-02
Size
: 53kb
User
:
whoamixp
[
Internet-Network
]
RXJHWG
DL : 0
热血江湖穿墙精灵外挂原码,可实现热血江湖游戏的穿墙功能,有点老,只是提供参考-Elven Yulgang wall plug-in the original code, can achieve the Game Yulgang function through walls, a bit old, but to provide reference
Date
: 2026-01-02
Size
: 97kb
User
:
杨明
[
Internet-Network
]
HTTP
DL : 0
用C++实现的HTTP Web下载,两种方式实现: 1.WinInet(这种方式很简单,但不是很灵活) 2.WinSock(也就是Socket,这种方式有点繁琐,但是可以自定义发送HTTP的报文头和接收响应头,很灵活) 因作者编程水平有限,错误之处,在所难免,欢迎批评指正。 -Using C++ to achieve the HTTP Web download, the realization of two ways: 1.WinInet (in this way is very simple, but it is not very flexible) 2.WinSock (that is, Socket, in this way a bit tedious, but you can customize the report to send HTTP text first and receive the first response, it is flexible) due to limited programming author, wrong, the inevitable criticism welcome.
Date
: 2026-01-02
Size
: 6kb
User
:
star
[
Internet-Network
]
BTSourceCode
DL : 0
可能许多人使用过比特彗星(BitComet)、比特精灵(BitSpirit)、迅雷下载过自己喜欢的影片、电视剧、网络游戏;还有很多人使用过PPLive、PPStream、沸点、QQ直播等免费的网络电视直播软件在线观看自己喜欢的影片。所有这些软件都采用了一种近年来流行起来的协议,BitTorrent协议,简称BT协议。 在互联网中,许多新技术深刻地改变了人们的工作、生活和学习的模式。Tim Berners Lee在1990年设计和发明了HTTP协议,从而引发了互联网的变革,使网络冲浪、电子商务成为可能,因此也造就了百度、谷歌等搜索引擎公司以及网易、雅虎、搜狐、新浪、腾讯等门户网站,同时也造就了一个又一个的数字英雄。在HTTP协议发明之前,统治互联网的是SMTP和FTP协议,这两种协议的通信量占据首位;HTTP协议诞生之后,其通信流量和使用率都占据了第一。2003年,年轻的软件工程师Bram Cohen发明了BitTorrent协议。在短短的时间内,BT协议的通信流量占据了互联网总流量的六成以上。BT协议成为一种新的变革技术,因此也催生了很多BT软件,如BitComet、BitSpirit、Azureus,PPLive、PPStream。 下面将详细介绍BT协议和技术的各个细节,并在此基础上使用C语言在Linux环境下开发了一个BT软件。 -Many people may have used Bit Comet (BitComet), Bitspirit (BitSpirit), Thunder downloaded their favorite movies, TV shows, online games there are a lot of people used PPLive, PPStream, boiling point, QQ and other free Internet TV live broadcast Software Online Watch your favorite movies. All of these software uses a popular protocol in recent years, BitTorrent protocol, referred to as BT protocol. On the Internet, many new technologies profoundly changed the way people work, live and study models. Tim Berners Lee in 1990, designed and invented the HTTP protocol, which led to changes in the Internet, so that surfing the Internet, e-commerce possible, and therefore created Baidu, Google and other search engine companies as well as Netease, Yahoo, Sohu, Sina, Tencent and other portals, but also created a number of another hero. Prior to the invention in the HTTP protocol, the rule of the Internet is SMTP and FTP protocols, these two protocols traffic occupied the first HTTP protocol,
Date
: 2026-01-02
Size
: 8.44mb
User
:
笑问
[
Internet-Network
]
cvery_300329569
DL : 0
这是一个简单的软件开发包(SDK),你可以利用这个 GPSLIB 在自己的32位 Windows 应用程序中加入全球定位系统的支持。源代码压缩文件中包含有 GPSLIB 库的源代码和 Demo 程序。很多文件中都有详细的注释说明。为了保证可下载文件的体积尽量的小,压缩文件中不含任何二进制文件。请使用Visual C++ 5 以上的版本编译并生成 DLLs、控制面板程序和可执行文件。-This is a simple software development kit (SDK), you can use this GPSLIB in their 32-bit Windows applications to add GPS support. Source code zip file contains the source code and libraries GPSLIB Demo program. Many documents are detailed explanatory notes. In order to ensure as far as possible to download a small file size, compressed file does not contain any binary files. Please use the Visual C++ 5 or later to compile and generate DLLs, Control Panel programs and executable files.
Date
: 2026-01-02
Size
: 71kb
User
:
wennaisong
[
Internet-Network
]
mfc_test1_udp_7_28
DL : 0
C++(MFC)开发,实现语言的采集,压缩和局域网的互传。 搜索局域网内的所有主机,可连接选中主机进行通话。 语言聊天对误码率要求较低,而且对实时性要求较高,因此使用的传输协议为UDP,使用winsock完成对接。 接收端和发送端的buff使用循环队列以缓冲局域网较快的数据传输。 压缩算法使用window自带的压缩算法。 由于对话双方既是客户端也是服务端,因此使用多线程进行接收和发送数据。 向窗体注册winsock的消息,用于建立连接和发送接收数据时弹出消息。-C++ (MFC) development, implementation language acquisition, compression and transfer each LAN. Search for all hosts within the LAN, the call can be connected to selected host. Language chat on low bit error rate requirements, but also demanding real-time, so use the transport protocol for the UDP, use winsock to complete docking. Receiver and sender buffer buff to the LAN using the circular queue faster data transmission. Compression algorithm using the window' s own compression algorithm. Because the dialogue is both a client and a service both side, so the use of multiple threads to receive and send data. Winsock message to the registration form, used to establish connections and send and receive data pop-up message.
Date
: 2026-01-02
Size
: 16.89mb
User
:
liyongjian
[
Internet-Network
]
GHCommonNetDll
DL : 0
偶从大学开始维护至今的好东西。这个高度封装的轻量级网络库实现了基于异步Socket的C/S模式通信环境。本库经过4个现实项目的考验,用于轻量级的应用,不先进、不高深,但是讲究实用,开发小型C/S架构程序比ACE\Socket\QT都快。 主要特点: 1、已经为传送大文件做了优化。自动拆分、拼合,如果配合上内存映射文件,可以传送超过内存容量的数据(32位指针)。 2、集成了接受者-伴随处理者模型,收到的数据包传递到独立的线程回调用户的处理函数。 3、提供了C++封装,只需重载服务器类、客户端类的方法即可实现收发。 4、提供了C封装,简单调用方法实现发送 已经在范例中实现了C/S程序的框架,服务采用C接口演示,客户用C++接口演示,收发程序合二为一。 编译器支持 VC2005 ~ VC 2010-The highly encapsulated lightweight network based on Asynchronous Socket library implementation in C/S mode communications environment. The reality of the library, four test items for lightweight applications. Main features: 1, has to send large files are optimized. Automatically split, put together, with the memory map if the file can be sent over the data memory (32-bit pointer). 2, the integrated receiver- with handler model, the received data packets delivered to the user separate thread callback handler. 3, provides a C++ package, just reload the server class, client class methods send and receive can be realized. 4, provides a C package, simply call the method to achieve transmit Has been achieved in the sample C/S framework of the program, service demonstration using C interfaces, the customer interfaces with C++ demo, send and receive programs combined. Compiler support for VC2005 ~ VC 2010
Date
: 2026-01-02
Size
: 126kb
User
:
流浪小狗
[
Internet-Network
]
bmp2raw.c.tar
DL : 0
bmp3raw is a program which convert 24 bit bitmap file into RGB565 format-bmp3raw is a program which convert 24 bit bitmap file into RGB565 format
Date
: 2026-01-02
Size
: 2kb
User
:
Mithun Kumar
[
Internet-Network
]
Scanner
DL : 0
c++实现的端口扫描器,又有好的图形界面使用MFC来实现的,不过是比较简单,扫描的效率不是很高,有事有点慢-c++ implementation of the port scanner, have a good graphical interface implemented using MFC, but is relatively simple and scanning is not very efficient, something a bit slow
Date
: 2026-01-02
Size
: 1.87mb
User
:
韦健
[
Internet-Network
]
gbn
DL : 0
ALTERNATING BIT AND GO-BACK-N NETWORK EMULATOR: Network properties: - one way network delay averages five time units (longer if there are other messages in the channel for GBN), but can be larger - packets can be corrupted (either the header or the data portion) or lost, according to user-defined probabilities - packets will be delivered in the order in which they were sent (although some can be lost). - converted to Alt Bit- ALTERNATING BIT AND GO-BACK-N NETWORK EMULATOR: Network properties: - one way network delay averages five time units (longer if there are other messages in the channel for GBN), but can be larger - packets can be corrupted (either the header or the data portion) or lost, according to user-defined probabilities - packets will be delivered in the order in which they were sent (although some can be lost). - fixed C style to adhere to current programming style - converted to Alt Bit
Date
: 2026-01-02
Size
: 3kb
User
:
xujun
[
Internet-Network
]
PLC_COM
DL : 0
C# 写的欧姆龙PLC通讯程序源码。 通讯协议为HOST LINK可实现 1、通讯测试 2、PLC工作模式设定 3、读写DM数据区 4、置位和复位IR区,读相应位的状态 5、完全由程序实现,无需安装控件-C# written by Omron PLC communication program source code. Communication protocol for HOST LINK can be achieved 1, the communication test 2, the PLC mode is set 3, reading and writing DM data area 4, set and reset the IR area, read the corresponding bit in the state 5, fully implemented by the program, without having to install control
Date
: 2026-01-02
Size
: 84kb
User
:
许有良
[
Internet-Network
]
Answer-for-C-of-BIT
DL : 0
北理工网络教室C语言答案,部分答案,已通过编译测试,包含题目-North University Network Classroom C language
Date
: 2026-01-02
Size
: 57kb
User
:
韩宇
[
Internet-Network
]
NetTran
DL : 0
(利用GIF_LZW算法实现的)网络图片传输 一、使用TCP协议传输数据。理由:稳定性好。 二、使用字节数据流进行传输,理由: A:VB的String存在自动Unicode转换问题,影响速度; B:可以直接发送8位字节数据,不需要使用Base64编码,从而减少了编码时间。 三、使用GIF-LZW压缩算法压缩图像。理由: A:行程编码、Huffman压缩算法压缩率太低; B:JPEG压缩算法需要太多位运算,且运算量大(有专门MMX优化算法),不利于VB实现; C:GIF-LZW压缩算法压缩率较好,且我已想出VB语法下高效GIF-LZW压缩/解压算法。 四、使用“有序抖动”算法进行 色彩量化。理由:“有序抖动”处理的结果具有一定规律性,有助于LZW类算法压缩。-(Using GIF_LZW algorithm) network picture transmission one, use the TCP protocol to transfer data. Reasons: good stability. Second, the use of byte data stream for transmission reasons: A: VB' s String automatic Unicode conversion problem exists, impact speed B: You can directly send 8 bytes of data, do not need to use Base64 encoding, thereby reducing the encoding time. Third, the use of GIF-LZW compression algorithm to compress the image. Rationale: A: run-length encoding, Huffman compression algorithm compression rate is too low : JPEG compression algorithm requires too many bit operations, and the large amount of computation (specifically MMX optimization algorithm), and not conducive to the realization of VB C: GIF-LZW compression algorithm The compression ratio is better, and I have come up with the VB syntax efficient GIF-LZW compression/decompression algorithm. Ordered dithering algorithm for color quantization. The reason: " ordered dithering" the results of trea
Date
: 2026-01-02
Size
: 130kb
User
:
霍小刘
[
Internet-Network
]
dt9-1
DL : 0
C++语言学习,对C++语言相关的位与算法有一定的帮助-C++ language learning, language C++ algorithm associated with a certain bit of help
Date
: 2026-01-02
Size
: 362kb
User
:
dd
«
1
2
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.