搜索资源列表
live555-ok_jrtplib-bad-ortp-bad
- 手把手实现流媒体live555实现视屏传输,内有详细指导文件。从零开始搭建,只要半个小时(可能还不到)你就可以看到网络传输视屏的过程了赠送jrtplib3.9.1最新版本,是关于rtp的赠送cmake.exe编译神器 内容简洁 没有乱七八糟的理论 -Hands-screen streaming media transmission live555 achieved, with detailed guidance documents. Built from scratch, as long as
jrtplib
- 利用开源压缩包及CMake编译生成的RTP库文件及头文件,5个例子均已跑通,成功发包以及接收。-CMake using open source tarball and compiled the RTP libraries and header files, five examples have been run through, the successful contract and receiving.
webserver-master
- webserver 简易的http服务器 1.服务器的架构为epoll + 多线程 + sendfile 2.暂时只支持GET和HEAD方法,支持的首部不多大概七八个吧,支持伪长连接 3.可配置的,现阶段只支持domain和docroot配置项,domain就是你部署的网站域名,docroot想必学过网页的都知道是什么意思吧~ 4.编译方式: cd webserver && mk build && cd build && cmake .. && make [debug|rel
cmake-2.8.1-win32-x86
- CMake是一个跨平台的安装(编译)工具,可以用简单的语句来描述所有平台的安装(编译过程)。新版本的cmake可能和老版本的cmake有区别,特此找到了老版本的2.8.1来分享(CMake is a cross platform installation (compilation) tool that describes the installation (compilation process) of all platforms with a simple statement. The new
基于 C++ 的网络在线聊天系统
- 我们将使用 TCP 套接字进行通信,并使用多线程处理多个客户端连接。 首先创建项目结构: chat-system/ ├── src/ │ ├── server/ │ │ ├── server.cpp │ │ ├── server.h │ │ └── main.cpp │ └── client/ │ ├── client.cpp │ ├── client.h │ └── main.cpp └── CMake