http server v0.1_http_webapp.c】的更多相关文章

#include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> /*----------------------------------------------------------------- functionname: file_exist param: NA return: NA author: xxxx…
#include <string.h> #include <sys/stat.h> #include <sys/mman.h> #include <fcntl.h> #include <unistd.h> #include <stdio.h> #include "mime.h" #include "http_common.h" #include "http_webapp.h"…
/**************************************************************** filename: http_server.c author: xxxx function: Main file of http server Impliment the response of Get and Post mehtods history: created by xxxx date: 2014.01.03 ***********************…
#include <stdio.h> #include <string.h> #include <stdlib.h> #include "mime.h" #include "http_common.h" static const char* methods[]= { "GET", "POST" }; static int get_version(const char* versionPos,…
#include <string.h> #include "mime.h" static STR_MIME_MAP mime_map[]= { MIME_MAP(MIME_STR_GEN) }; void get_mime_type(const char* filename, EN_MIME_TYPE* filetype) { ; ; i<= MIME_ELSE; i++) { if(strstr(filename, mime_map[i].extension)) {…
FileZilla(教程)是经典的开源FTP解决方案,包括FileZilla客户端和FileZilla Server.其中,FileZilla Server的功能比起商业软件FTP Serv-U毫不逊色.FileZilla Server几乎无用户数限制:多线程引擎:在 Windows NT4.2000.XP下以服务形式运行:针对 fxp/反弹攻击过滤:安全密码储存 (使用 MD5 hash):实时对用户/组进行管理:所有选项可以在服务器在线时改变,无需服务器下线:传输超时功能可以踢掉使用普通工具…
我自己的命令: server端: dns2tcpd -F -d 1 -f ./dns2tcpd.conf 输出: 09:08:59 : Debug options.c:97 Add resource ssh:127.0.0.1 port 229:08:59 : Debug options.c:97 Add resource smtp:127.0.0.1 port 259:08:59 : Debug options.c:97 Add resource socks:127.0.0.1 port 10…
sudo yum update 更新系统环境 curl -sSL https://get.docker.com/ | sh 安装最新docker版本 systemctl start docker.service 启动DOCKERsystemctl enable docker.service 开机自启动DOCKERdocker version 查看docker版本docker info 查看DOCKER信息sudo service docker status 查看DOCKER状态 docker e…
配置 在上一节的基础上,  增加如下的docker-compose.yml文件, 然后用docker-compose up命令启动容器进行部署: version: " services: server: image: update/server:v0. labels: description: "tcp server test script" restart: always command: -p worker: image: update/worker:v0. labels…
环境 基于上一节的env/server:v0.1, env/worker:v0.1镜像, 在基于debian8.2的两台机器上测试部署docker swarm. docker service部署 ➜ ~ docker service create --replicas --name server -e APP_PORT= --network docker-net --publish : env/server:v0. image env/server:v0. could not be access…