Build Simple HTTP server

Build Simple HTTP server的相关文章

simple HTTP server with upload

1 #!/usr/bin/env python 2 3 """Simple HTTP Server With Upload. 4 5 https://github.com/tualatrix/tools/blob/master/SimpleHTTPServerWithUpload.py 6 7 This module builds on BaseHTTPServer by implementing the standard GET 8 and HEAD requests in

Simple Rtmp Server的安装与简单使用

Simple Rtmp Server是一个国人编写的开源的RTMP/HLS流媒体服务器. 功能与nginx-rtmp-module类似, 可以实现rtmp/hls的分发. 有关nginx-rtmp-module的可参照: http://blog.csdn.net/redstarofsleep/article/details/45092147 编译与安装过程十分的简单   ./configure --prefix=/usr/local/srs --rtmp-hls   make   make in

Build a DNS server in Ubuntu 14.04

I want to test a device DNS feature, so I build a DNS server in my Ubuntu PC. In this example, I want to my device to send the report to report.com which is a specail PC, and the PC IP address is 192.168.1.15 Note that, the configuration needs root.

Writing a Simple Action Server using the Execute Callback

fibonacci_server.cpp /* 黄金分割数列,指的是这样一个数列:1.1.2.3.5.8.13.21.--在数学上,斐波纳契数列以如下被以递归的方法定义:F0=0,F1=1,Fn=F(n-1)+F(n-2)(n>=2,n∈N*) */ #include <ros/ros.h> #include <actionlib/server/simple_action_server.h>//action lib #include <learning_actionli

A Simple Web Server

介绍 在过去20几年里,网络已经在各个方面改变了我们的生活,但是它的核心却几乎没有什么改变.多数的系统依然遵循着Tim Berners-Lee在上个世纪发布的规则.大多数的web服务器都在用同样的方式处理消息 背景 多数在web上的服务器都是运行在IP协议标准上.在这协议家族里面我们关心的成员就是TCP,这个协议使得计算机之间的通信看起来像是在读写文件. 项目通过套接字来使用IP通信.每个套接字都是一个点对点的通信信道,一个套接字包含IP地址,端口来标识具体的机器.IP地址包含4个8Bit的数字

srs(simple Rtmp Server )的一些说明

srs 是国人自己开发的一款视频服务器,采用支持rtmp和hls协议,可以做成容器,让客户端把流推过来来,也可以结合ffmpeg自己主动拉流,详细的说明可以查看srs的wiki: https://github.com/ossrs/srs/wiki/v2_CN_Home srs下载地址:http://ossrs.net/srs.release/releases/index.html srs网页播放器:http://www.ossrs.net/players/srs_player.html?stre

推荐一款优秀的开源流媒体服务器系统:SRS(Simple RTMP Server)

最近视频流媒体直播的应用很火,各种手机端的直播.美女聊天室.财经直播等等.由于项目的需要,需要寻找一款合适的流媒体直播系统,如果从头开发,显然成本和周期都不能在可接受的范围内.幸运的是,我找到了SRS这款优秀的直播系统,该系统官方地址为:http://www.ossrs.net/srs.release/releases/ 首先不得不提的是:SRS是国人开发,国人开发的开源系统近几年越来越多,是非常令人惊喜的事情,并且有很多非常优秀的,非常令人开心. 另外不得不提的是:SRS的文档非常齐全,特别是

Simple Web API Server in Golang (2)

In this challenge, I tried to implement a simple OAuth2 server basing on Simple Web API Server in [1]. For OAuth2, go to http://oauth.net/2/. Endpoint /api/2/domains/{domain name}/oauth/access_token Use port 80. We would like to use other ports such

Simple Web API Server in Golang (1)

To be an better Gopher, get your hands dirty. Topcoder offered a serials of challenges for learning Golang. In this blog, I tried to implement "Go Learning Challenge - Simple Web-API Server"[1]. What's used in this challenge ? Following aspects