- 论坛徽章:
- 0
|
小弟近日在看《GNU/Linux编程指南》,里面有web_server.c和web_client.c的源码,实际测试了很久都无法成功,在这里发帖求助。
在我的本机上有Apache服务器,端口为10088,在htdocs目录下有一个abc.html文件,使用浏览器访问http://localhost:10088/abc.html或者http://127.0.0.1:10088/abc.html都成功。
我直接测试的是web_client.c,连接的是Apache服务。
web_client.c代码如下:- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <sys/socket.h>
- #include <sys/types.h>
- #include <sys/wait.h>
- #include <netinet/in.h>
- #include <arpa/inet.h>
- #include <netdb.h>
- #include <error.h>
- char * host_name = "127.0.0.1";
- int port = 10088;
- int main(int argc, char *argv[])
- {
- char buf[8192];
- char message[256];
- int sd;
- struct sockaddr_in pin;
- struct hostent *nlp_host;
- if ((nlp_host = gethostbyname(host_name)) == 0)
- {
- printf("Error resolving local host\n");
- exit(1);
- }
- bzero(&pin, sizeof(pin));
- pin.sin_family = AF_INET;
- pin.sin_addr.s_addr = htonl(INADDR_ANY);
- pin.sin_addr.s_addr = ((struct in_addr *)(nlp_host->h_addr))->s_addr;
- pin.sin_port = htons(port);
- if ((sd = socket(AF_INET, SOCK_STREAM, 0)) == -1)
- {
- printf("Error opening socket\n");
- exit(1);
- }
- if (connect(sd, (void *)&pin, sizeof(pin)) == -1)
- {
- printf("Error connecting to socket\n");
- exit(1);
- }
- sprintf(message, "GET /abc.html HTTP/1.1\n");
- printf("Sending message %s to web_server...\n", message);
- if (send(sd, message, strlen(message), 0) == -1)
- {
- printf("Error in send\n");
- exit(1);
- }
- printf(".. sent message.. wait for response...\n");
- if (recv(sd, buf, 8192, 0) == -1)
- {
- printf("Error in receiving response from HTTPServer\n");
- exit(1);
- }
- printf("\nResponse from HTTPServer:\n\n%s\n", buf);
- close(sd);
- exit(0);
- }
复制代码 每次执行到recv的时候代码就停下来,前面的都正常。
盼望高手能指点迷津! |
|