- 论坛徽章:
- 0
|
本帖最后由 sunceenjoy 于 2010-03-18 17:29 编辑
我模拟了一个最简单的web服务器,如下:- #include "stdio.h"
- #include <sys/wait.h>
- #include <signal.h>
- #include <unistd.h>
- #include <sys/types.h>
- #include <sys/socket.h>
- #include <netinet/in.h>
- #include <arpa/inet.h>
- #include <string.h>
- #include <errno.h>
- void sig(int i){
- printf("receive signal\n");
- }
- int main(){
- int child = 0;
- int nums = 1;
-
- signal(SIGINT,sig);
- struct sockaddr_in addr;
- int alen = sizeof(addr);
- memset(&addr,sizeof(addr),0);
- addr.sin_family = AF_INET;
- addr.sin_port = htons(87);
- addr.sin_addr.s_addr = INADDR_ANY;
-
- int fd;
- if ((fd = socket(AF_INET,SOCK_STREAM,0)) < 0){
- fprintf(stderr, "%s.%d: socket failed (%s)\n",__FILE__, __LINE__, strerror(errno));
- return -1;
- }
- {
- int reuse = 1;
- setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &reuse,sizeof(reuse));
- }
- if (bind(fd, (struct sockaddr*)&addr, alen) < 0) {
- fprintf(stderr, "%s.%d: bind failed (%s)\n",__FILE__, __LINE__, strerror(errno));
- return -1;
- }
- if (listen(fd, 20) < 0) {
- fprintf(stderr, "%s.%d: listen failed (%s)\n",__FILE__, __LINE__, strerror(errno));
- return -1;
- }
- while(1){
- int c;
- if((c=accept(fd,NULL,NULL))==-1){
- printf("get error:%d\n",errno);
- }else{
- char *str = "HTTP/1.1 200 OK\n"
- "Content-Length: 10\n"
- "Content-Type: text/html;charset=gbk\n\n"
- "1234567890";
- size_t len = strlen(str);
- int pos = 0;
- do{
- int l = send(c,str+pos,len-pos,0);
- if(l<=0){
- puts("error");
- close(c);
- continue;
- }else{
- pos += l;
- }
- }while(pos!=len);
- printf("close fd:%d\n",c);
- close(c);
- }
- }
- }
复制代码 用浏览器可以访问,但为什么用apache的ab测试,老是出现:
[root@yt-newcvs jiguang]# /usr/local/apache/bin/ab -n 1 -c 1 http://192.168.2.151:87/
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking 192.168.2.151 (be patient)...apr_socket_recv: Connection reset by peer (104)
用ab试apache服务器正常,另外虽然上面出错,但服务器已经收到并发送完毕了(打印close fd:4)
网上查了,说是这个错误一般由于socket关闭了。也就是close. 我总不能不close吧。请问各位知情人士指教。 |
|