监听本地的8888端口, 当在浏览器中访问这个地址的时候, 返回一堆HTML数据, 这种方式返回的数据不稳定,不同浏览器解析不同, 因为我们没有定义返回文件类型:

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <unistd.h> int main() {
int sock = socket(AF_INET, SOCK_STREAM, );
struct sockaddr_in address;
address.sin_family = AF_INET;
address.sin_port = htons();
address.sin_addr.s_addr = inet_addr("192.168.0.58");
int ret = bind(sock , (const struct sockaddr*)&address , sizeof(address));
ret = listen(sock, );
printf("lisening..\n"); struct sockaddr_in client_address;
socklen_t len;
int newsock = accept(sock, (struct sockaddr*)&client_address, &len);
printf("client conneting\n");
FILE *fp = fopen("./html/index.html","rb");
char buf[] = {};
fread(buf, , , fp);
printf("content is %s\n", buf);
send(newsock, buf, strlen(buf), );
close(newsock);
close(sock);
return ;
}

  给服务器的返回设置文件类型和文件大小信息, 避免页面出现乱码和页面的正常解析:

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <unistd.h> int main() {
int sock = socket(AF_INET, SOCK_STREAM, );
struct sockaddr_in address;
address.sin_family = AF_INET;
address.sin_port = htons();
address.sin_addr.s_addr = inet_addr("192.168.1.102");
int ret = bind(sock , (const struct sockaddr*)&address , sizeof(address));
ret = listen(sock, );
printf("lisening..\n"); struct sockaddr_in client_address;
socklen_t len;
int newsock = accept(sock, (struct sockaddr*)&client_address, &len);
printf("client conneting\n"); //char recvData[1024] ={0};
//recv(newsock, recvData, sizeof(recvData), 0);
//printf("receive data:%s", recvData);
FILE *fp = fopen("./html/index.html","rb"); if( fp == NULL ){
printf("failed to open img\n");
}
fseek(fp, , SEEK_END);
long fileLen = ftell(fp);
fseek(fp, , SEEK_SET); char buf[] = {};
strcat(buf, "HTTP/1.0 200 OK\r\n");
strcat(buf, "Content-Type: text/html;charset=UTF-8\r\n"); char contentLength[] = {};
sprintf(contentLength, "Content-Length: %ld\r\n\r\n", fileLen);
strcat(buf, contentLength); fread(buf+strlen(buf), , , fp);
send(newsock, buf, strlen(buf), );
close(newsock);
close(sock);
return ;
}

  打开本地的PNG图片,并返回给客户端浏览器, 和上面的代码还有一点区别就是, 服务器有返回Content-type和Content-Length :

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <unistd.h> int main() {
int sock = socket(AF_INET, SOCK_STREAM, );
struct sockaddr_in address;
address.sin_family = AF_INET;
address.sin_port = htons();
address.sin_addr.s_addr = inet_addr("192.168.1.102");
int ret = bind(sock , (const struct sockaddr*)&address , sizeof(address));
ret = listen(sock, );
printf("lisening..\n"); struct sockaddr_in client_address;
socklen_t len;
int newsock = accept(sock, (struct sockaddr*)&client_address, &len);
printf("client conneting\n");
FILE *fp = fopen("./imgs/img.png","rb");
if( fp == NULL ){
printf("failed to open img\n");
}
fseek(fp, , SEEK_END);
long fileLen = ftell(fp);
fseek(fp, , SEEK_SET); char buf[] = {};
strcat(buf, "HTTP/1.0 200 OK\r\n");
strcat(buf, "Content-Type: image\png;charset=UTF-8\r\n"); char contentLength[] = {};
sprintf(contentLength, "Content-Length: %ld\r\n\r\n", fileLen);
strcat(buf, contentLength); //strlen just string length; but sizeof return all the size;
fread(buf+strlen(buf), , , fp);
send(newsock, buf, , ); close(newsock);
close(sock);
return ;
}

   搭建一个服务器:

/*****************************************************************
system:kali enviroment:g++ compile command:gcc webServer.c -g -o webServer -lpthread *****************************************************************/ #include <stdlib.h> #include <sys/types.h> #include <sys/socket.h> #include <sys/stat.h> #include <netinet/in.h> #include <unistd.h> #include <pthread.h> #include <stdio.h> #include <string.h> #include <arpa/inet.h> #define PORT 8848 #define BACKLOG 5 #define MAXDATASIZE 1000 #define DEBUG 1 void process_cli(int connectfd, sockaddr_in client); int sendobj(int connectfd,char* serverfilepath); int IsDIR(char* fpath); int fileordirExist(char* fpath); char* getextname(char*); void* getHead(char* extname); void* start_routine(void* arg); void msg404(int connectfd); struct ARG { int connfd; sockaddr_in client; }; main() { int listenfd, connectfd; pthread_t thread; //id of thread ARG *arg; //pass this var to the thread struct sockaddr_in server; //server's address info struct sockaddr_in client; //client's int sin_size; //create tcp socket #ifdef DEBUG printf("socket.... "); #endif if ((listenfd = socket(AF_INET, SOCK_STREAM, )) == -) { perror("creating socket failed."); exit(); } int opt = SO_REUSEADDR; setsockopt(listenfd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)); bzero(&server,sizeof(server)); server.sin_family = AF_INET; server.sin_port = htons(PORT); server.sin_addr.s_addr = htonl(INADDR_ANY); printf("bind.... "); if(bind(listenfd,(struct sockaddr *)&server,sizeof(struct sockaddr)) == -) { perror("bind error."); exit(); } printf("listen.... "); if(listen(listenfd,BACKLOG) == -) { perror("listen() error "); exit(); } sin_size = sizeof(struct sockaddr_in); while() { //accept() using main thread printf("accepting.... "); if((connectfd = accept(listenfd, (struct sockaddr *)&client, (socklen_t*)&sin_size)) == -) { printf("accept() error "); } arg = new ARG; arg->connfd = connectfd; memcpy((void *)&arg->client, &client, sizeof(client)); //invoke start_routine to handle this thread #ifdef DEBUG printf("thread_creating...."); #endif if(pthread_create(&thread, NULL, start_routine, (void*)arg)){ perror("pthread_create() error"); exit(); } } close(listenfd); } //handle the request of the client void process_cli(int connectfd, sockaddr_in client) { int num; //char recvbuf[MAXDATASIZE], sendbuf[MAXDATASIZE], cli_name[MAXDATASIZE]; char requestline[MAXDATASIZE], filepath[MAXDATASIZE], cmd[MAXDATASIZE],extname[MAXDATASIZE]; int c; FILE *fp; FILE *cfp; fp = fdopen(connectfd,"r"); #ifdef DEBUG printf("the host is:%s ",inet_ntoa(client.sin_addr) ); #endif fgets(requestline,MAXDATASIZE,fp); #ifdef DEBUG printf(" THE REQUEST IS :%s ",requestline); #endif strcpy(filepath,"./"); sscanf(requestline,"%s%s",cmd,filepath+); strcpy(extname, getextname(filepath)); #ifdef DEBUG printf("cmd:%s filepath:%s extname:%s ",cmd,filepath,extname); printf("string comparing :::::::::::::start::::::::::::::: "); #endif if(strcmp(cmd,"GET") == ){ //the command is get #ifdef DEBUG printf("cmd(%s)==GET \n",cmd); #endif //is this a file or dir or notexist?
printf("filepath is .... : %s\n", filepath);
if(fileordirExist(filepath)){ //is a file or dir or none //is this a dir if(IsDIR(filepath)){ //is a dir #ifdef DEBUG printf("%s is a DIR ",filepath); #endif if( fileordirExist( strcat(filepath,"index.htm") )){ sendobj(connectfd,"index.htm"); }else if(fileordirExist(strcat(filepath,"index.html"))){ sendobj(connectfd,"index.htm"); }else{ msg404(connectfd); } }else{ //is a file #ifdef DEBUG printf("%s is a file\n",filepath); #endif sendobj(connectfd, filepath); } }else{ #ifdef DEBUG printf("404 "); #endif msg404(connectfd); } }else{ #ifdef DEBUG printf("cmd(%s)!=GET \n",cmd); #endif } #ifdef DEBUG printf(":::::::::::::end::::::::::::::: \n"); #endif close(connectfd); } //send the 404 error message to the client void msg404(int connectfd) { char* msg; msg = "HTTP/1.0 404 Not Found Content-Type: text/plain 404 not found by Manio"; send(connectfd,msg,strlen(msg),); } //is the filepath a file or directory int fileordirExist(char* fpath) { struct stat filestat; return ( stat(fpath,&filestat) != -); } // is the filepath a directory int IsDIR(char* fpath) { #ifdef DEBUG printf("IN IsDIR "); #endif struct stat filestat; return ( stat(fpath,&filestat) != - && S_ISDIR(filestat.st_mode)); } //send the data of the file which the client want int sendobj(int connectfd,char* serverfilepath) { FILE* fp,*cfp;
char buf[] = {}; int c; fp = fopen(serverfilepath,"rb"); printf("filepath is %s \n ", serverfilepath); if( fp == NULL ){
printf("failed to open html file\n");
}
fseek(fp, , SEEK_END);
long fileLen = ftell(fp);
fseek(fp, , SEEK_SET); strcat(buf, "HTTP/1.0 200 OK\r\n");
strcat(buf, "Content-Type: ");
char* fileExt = getextname(serverfilepath);
strcat(buf, (char *)getHead(fileExt));
strcat(buf, ";charset=UTF-8\r\n"); char contentLength[] = {};
sprintf(contentLength, "Content-Length: %ld\r\n\r\n", fileLen);
strcat(buf, contentLength); fread(buf+strlen(buf), , , fp);
printf("buf is %s\n", buf);
send(connectfd, buf, strlen(buf), ); return ; } //write the packet header to the client void* getHead(char* extname) { #ifdef DEBUG printf("INGETHEAD:::::::extname is %s::::::: \n",extname); #endif char* content = "text/plain"; if( strcmp(extname,"html") == || strcmp(extname,"htm") == ) content = "text/html"; else if ( strcmp(extname,"css") == ) content = "text/css"; else if ( strcmp(extname,"gif") == ) content = "image/gif"; else if ( strcmp(extname,"jpeg") == || strcmp(extname,"jpg") == ) content = "image/jpeg"; else if ( strcmp(extname,"png") == ) content = "image/png"; return (void *)content; } //get the extent name of the file char* getextname(char* filepath) { char* p; if(( p = strrchr(filepath,'.')) != NULL) return p+; return NULL; } //invoked by pthread_create void* start_routine(void* arg) { ARG *info; info = (ARG *)arg; process_cli(info->connfd, info->client); delete arg; pthread_exit(NULL); }

  C语言的限制很少..类型可以随便转..系统相对于把所有的权利交给我们了, 所以C语言容易出问题

  C++搭建一个web服务器:http://www.cppblog.com/cuijixin/archive/2008/07/02/55112.html

C++实现一个web服务器, 弱智版服务器的更多相关文章

  1. 部署Eclipse中的Web项目到Tomcat服务器运行

    用Eclipse开发Web项目时,可以通过Tomcat服务器运行Web项目,此时Web项目被部署在[WorkSpace]\.metadata\.plugins\org.eclipse.wst.serv ...

  2. 手写一个Web服务器,极简版Tomcat

    网络传输是通过遵守HTTP协议的数据格式来传输的. HTTP协议是由标准化组织W3C(World Wide Web Consortium,万维网联盟)和IETF(Internet Engineerin ...

  3. 【重点突破】——使用Express创建一个web服务器

    一.引言 在自学node.js的过程中有一个非常重要的框架,那就是Express.它是一个基于NodeJs http模块而编写的高层模块,弥补http模块的繁琐和不方便,能够快速开发http服务器.这 ...

  4. python web编程 创建一个web服务器

    这里就介绍几个底层的用于创建web服务器的模块,其中最为主要的就是BaseHTTPServer,很多框架和web服务器就是在他们的基础上创建的 基础知识 要建立一个Web 服务,一个基本的服务器和一个 ...

  5. 建立一个node.js服务器(使用express搭建第一个Web环境)

    一.官网下载node.js 下载地址:https://nodejs.org/en/download/ 根据向导,下一步安装就可以了! 二.使用express搭建Web环境 express是一个开源的n ...

  6. 用java写一个web服务器

    一.超文本传输协议 Web服务器和浏览器通过HTTP协议在Internet上发送和接收消息.HTTP协议是一种请求-应答式的协议——客户端发送一个请求,服务器返回该请求的应答.HTTP协议使用可靠的T ...

  7. 树莓派变成一个Web服务器: nginx + php + sqlite

    将树莓派变成一个Web服务器,通过访问网页,就可以控制树莓派,比如:查看摄像头\开灯等等. 一想到Linux Web服务器,我们首先想到的是,Apache + MySql + Php. 树莓派可以安装 ...

  8. 用C写一个web服务器(二) I/O多路复用之epoll

    .container { margin-right: auto; margin-left: auto; padding-left: 15px; padding-right: 15px } .conta ...

  9. 用C写一个web服务器(四) CGI协议

    * { margin: 0; padding: 0 } body { font: 13.34px helvetica, arial, freesans, clean, sans-serif; colo ...

随机推荐

  1. C++ 实践总结

     对于一个应用程序而言,静态链接库可能被载入多次,而动态链接库仅仅会被载入一次. Gameloft面试之错误一 Event: 面试官说例如以下程序是能够链接通过的. class Base { Pu ...

  2. 【CentOS】centos7上查看服务开机启动列表

    centos7上查看服务开机启动列表 命令: systemctl list-unit-files; 点击回车,可以向下翻页查询

  3. c++中 extern

    用例子给你示范 // 1.cpp int x = 10; // 2.cpp 注意没有包含1.cpp #include <iostream> using namespace std; ext ...

  4. Ubuntu14.04LTS下使用eclipse搭建Cocos2d-x的Android环境

    from://http://www.58player.com/blog-2534-94136.html 最近想玩玩游戏制作,于是选择了目前流行的游戏引擎Cocos2d-x,这个东西虽然有Android ...

  5. Traceroute(路由追踪)的原理及实现

    现实世界中的网络是由无数的计算机和路由器组成的一张的大网,应用的数据包在发送到服务器之前都要经过层层的路由转发.而Traceroute是一种常规的网络分析工具,用来定位到目标主机之间的所有路由器 原理 ...

  6. Oracle简易界面工具 (Oracle 10g, Oracle 11g)

    Oracle简易界面工具 背景:偶在远程机上干活,须要调用到 Oracle 11gserver的数据,远程机上已安装Oracle client, 但 sql plus 和 sql developer ...

  7. 完全定制UITabBarViewController

    完全定制UITabBarViewController 效果   源码 https://github.com/YouXianMing/iOS-Project-Examples 中的 TotalCusto ...

  8. 明日传奇第三季/全集Legends of Tomorrow迅雷下载

    <明日传奇>第三季将加入一名新的女性角色.据Variety得到的消息称,塔拉·阿什(Tala Ashe)将作为<明日传奇>第三季的常规演员加入该剧.在第三季中,塔拉·阿什饰演的 ...

  9. TrafficStats——流量统计类的范例,获取实时网速

    2.3开始android就提供来这个类的API,这样我们就可以方便的用他来实现统计手机流量来.这个类其实也很简单,我贴上他的几个方法,大家一看就知道怎么用了. static long getMobil ...

  10. Asp.Net Mvc控制器重名问题整理

    一.关于控制器重名问题 1.没有区域的时候控制器不能重名 2.有区域的时候,外部控制器和区域中的控制器重名,访问外部控制器异常,访问区域控制器正常. 3.区域和区域之间的控制器重名,互不影响.区域从某 ...