从零开始一个http服务器-返回response 构造(三) (2)

cd 到 test 目录
运行: gcc ../request.h ../request.c ../response.h ../response.c ../tools/utils.h ../tools/utils.c responseTest.c && ./a.out
可以看到正确的输出:

--------------------------- method is: POST url is: / http version is: HTTP/1.1 the headers are : {'Content-Length': ' 3'} body is 111 --------------------------- HTTP/1.1 200 OK Content-Length: 27 <html>hello everyone</html>

现在修改main函数,加上我们的reponse处理逻辑

/** run cmd: gcc request.h request.c response.h response.c main.c tools/utils.c tools/utils.h && ./a.out */ #include <sys/types.h> #include <sys/socket.h> #include <stdio.h> #include <netinet/in.h> #include <arpa/inet.h> #include <unistd.h> #include <netinet/in.h> #include <stdlib.h> #include "request.h" #include "response.h" #define MAXREQUESTLEN 50000 void initString(char * c, int length) { int i = 0; while(i < length) { *(c + i) = '\0'; i++; } } int main() { int server_sockfd, client_sockfd; socklen_t server_len, client_len; struct sockaddr_in server_address; struct sockaddr_in client_address; server_sockfd = socket(AF_INET, SOCK_STREAM, 0); server_address.sin_family = AF_INET; server_address.sin_addr.s_addr = inet_addr("127.0.0.1"); server_address.sin_port = htons(9734); server_len = sizeof(server_address); bind(server_sockfd, (struct sockaddr *)&server_address, server_len); listen(server_sockfd, 5); while(1) { char ch[MAXREQUESTLEN]; initString(ch, MAXREQUESTLEN); // char send_str[] = "hello world !\n"; client_len = sizeof(client_address); client_sockfd = accept(server_sockfd, (struct sockaddr *)&client_address, &client_len); read(client_sockfd, &ch, MAXREQUESTLEN); printf("%s\n", ch); struct http_request request; struct Map headers; request.headers = &headers; parse_request(&request, ch); FILE* fp = fdopen(client_sockfd, "w+"); doResponse(&request, fp); fflush(fp); fclose(fp); // write(client_sockfd, &send_str, sizeof(send_str)/sizeof(send_str[0])); } } 测试

启动我们的server gcc request.h request.c response.h response.c main.c tools/utils.c tools/utils.h && ./a.out
再在浏览器访问我们的服务器地址 :9734/
现在浏览器能识别我们的返回结果了!

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsxzpg.html