想做到以上要求,需先认真了解HTTP协议各字段的含义,以下是部分较好的归纳:
HTTP一个HTTP请求报文由请求行(request line)、请求头部(header)、空行和请求数据4个部分组成,下图给出了请求报文的一般格式。
(1)请求行
请求行由请求方法字段、URL字段和HTTP协议版本字段3个字段组成,它们用空格分隔。例如,GET /index.html HTTP/1.1。
HTTP协议的请求方法有GET、POST、HEAD、PUT、DELETE、OPTIONS、TRACE、CONNECT。这里介绍最常用的GET方法和POST方法。
GET:当客户端要从服务器中读取文档时,使用GET方法。GET方法要求服务器将URL定位的资源放在响应报文的数据部分,回送给客户端。使用GET方法时,请求参数和对应的值附加在URL后面,利用一个问号(“?”)代表URL的结尾与请求参数的开始,传递参数长度受限制。例如,/index.jsp?id=100&op=bind。
POST:当客户端给服务器提供信息较多时可以使用POST方法。POST方法将请求参数封装在HTTP请求数据中,以名称/值的形式出现,可以传输大量数据,可用来传送文件。
(2)请求头部
请求头部由关键字/值对组成,每行一对,关键字和值用英文冒号“:”分隔。请求头部通知服务器有关于客户端请求的信息,典型的请求头有:
User-Agent:产生请求的浏览器类型。
Accept:客户端可识别的内容类型列表。
Host:请求的主机名,允许多个域名同处一个IP地址,即虚拟主机。
(3)空行
最后一个请求头之后是一个空行,发送回车符和换行符,通知服务器以下不再有请求头。
对于一个完整的http请求来说空行是必须的,否则服务器会认为本次请求的数据尚未完全发送到服务器,处于等待状态。
(4)请求数据
请求数据不在GET方法中使用,而是在POST方法中使用。POST方法适用于需要客户填写表单的场合。与请求数据相关的最常使用的请求头是Content-Type和Content-Length。
一、get访问
1、程序分析:
使用socket 编程实现get访问网页,以TCP协议绑定。
代码如下:
- #include <stdio.h>
- #include <sys/socket.h>
- #include <sys/types.h>
- #include <time.h>
- #include <errno.h>
- #include <signal.h>
- #include <stdlib.h>
- #include <string.h>
- #include <unistd.h>
- #include <sys/wait.h>
- #include <sys/time.h>
- #include <netinet/in.h>
- #include <arpa/inet.h>
-
- #define IPSTR "115.239.210.26"
- #define PORT 80
- #define BUFSIZE 4092
-
- int main(int argc, char *argv[])
- {
-
- int sockfd, ret, i, h;
- struct sockaddr_in servaddr;
- char str1[4096], buf[BUFSIZE], *str;
- socklen_t len;
- fd_set t_set1;
- struct timeval tv;
-
- if ((sockfd = socket(AF_INET, SOCK_STREAM, 0)) < 0 ) {
-
- printf("socket error!\n");
-
- exit(0);
- };
-
-
-
- bzero(&servaddr, sizeof(servaddr));
- servaddr.sin_family = AF_INET;
- servaddr.sin_port = htons(PORT);
-
- if (inet_pton(AF_INET, IPSTR, &servaddr.sin_addr) <= 0 )
-
- {
-
- printf("inet_pton error!\n");
- exit(0);
-
- }
-
- if (connect(sockfd, (struct sockaddr *)&servaddr, sizeof(servaddr)) < 0)
- {
- printf("connect error!\n");
- exit(0);
- }
- printf("connect success \n");
-
- memset(str1, 0, 4096);
- strcat(str1, "GET / HTTP/1.0\r\n");
- strcat(str1, "Accept: */*\r\n"); //image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, application/msword, application/vnd.ms-powerpoint,
- strcat(str1, "Accept-Language: cn\r\n");
- strcat(str1, "User-Agent: Mozilla/4.0\r\n");
- strcat(str1, "Host: www.baidu.com\r\n");
- strcat(str1,"Connection: Keep-Alive\r\n");
- strcat(str1, "\r\n\r\n");
- printf("%s\n",str1);
-
- ret = send(sockfd,(void *)str1,strlen(str1),0);
- if (ret < 0) {
- printf("send error %d,Error message'%s'\n",errno, strerror(errno));
- exit(0);
-
- }else{
-
- printf("send success ,total send %d \n", ret);
- }
-
-
- while(1){
-
- sleep(2);
- printf("******\n");
- tv.tv_sec= 0;
- tv.tv_usec= 0;
-
- h= 0;
- FD_ZERO(&t_set1);
-
- FD_SET(sockfd, &t_set1);
- printf("--------------->1\n");
- h= select(sockfd +1, &t_set1, NULL, NULL, &tv);
-
- printf("h = %d\n",h);
- printf("--------------->2\n");
-
- if (h == 0) continue;
- if (h < 0) {
- close(sockfd);
- printf("some thing read error!\n");
- return -1;
-
- };
-
- if (h > 0){
- memset(buf, 0, 4095);
- i= recv(sockfd, (void *)buf, 4092,0);
- printf("i = %d\n",i);
- if (i==0){
-
- close(sockfd);
- printf("read message find error,stop!\n");
- return -1;
-
- }
-
- printf("%s\n", buf);
-
- }
-
- }
-
- close(sockfd);
- return 0;
- }
2、使用socket编程实现post访问网页,以csdn登陆框为例。
代码如下:
- #include <stdio.h>
- #include <sys/socket.h>
- #include <sys/types.h>
- #include <time.h>
- #include <errno.h>
- #include <signal.h>
- #include <stdlib.h>
- #include <string.h>
- #include <unistd.h>
- #include <sys/wait.h>
- #include <sys/time.h>
- #include <netinet/in.h>
- #include <arpa/inet.h>
-
- #define IPSTR "117.79.93.222"
- #define PORT 80
- #define BUFSIZE 4096
-
- int main(int argc,char **argv)
- {
- int sockfd,ret,i ,h;
- struct sockaddr_in servaddr;
- char str1[4096], str2[2048], buf[BUFSIZE], *str;
- socklen_t len;
- fd_set t_set1;
- struct timeval tv;
-
- if ((sockfd = socket(AF_INET, SOCK_STREAM, 0)) < 0 )
- {
-
- printf("socket error!\n");
-
- exit(0);
- }
-
-
-
- bzero(&servaddr,sizeof(servaddr)); //描述端口信息
- servaddr.sin_family = AF_INET;
- servaddr.sin_port = htons(PORT);
-
- if (inet_pton(AF_INET, IPSTR, &servaddr.sin_addr) <= 0 )
- {
-
- printf("inet_pton error!\n");
- exit(0);
-
- }
- if (connect(sockfd, (struct sockaddr *)&servaddr, sizeof(servaddr)) < 0) //绑定端口
- {
- printf("connect error!\n");
- exit(0);
-
- }
- printf("hello me\n");
- printf("connect success \n");
-
-
- memset(str2, 0, 2048);
- strcat(str2, "name = leezx\n");
- strcat(str2, "code = 12345");
- str=(char *)malloc(128);
- len = strlen(str2);
- sprintf(str, "%d", len);
-
- memset(str1, 0, 4096);
-
- strcat(str1, "POST /account/login HTTP/1.0 \r\n");
- strcat(str1, "Host: PASSPORT.CSDN.NET\r\n");
- strcat(str1, "Accept-Encoding: gzip, deflate");
- strcat(str1, "Accept-Language: cn\r\n");
- strcat(str1, "Accept: */*\r\n");
- strcat(str1, "Content-Type: application/x-www-form-urlencoded\r\n");
- strcat(str1, "Content-Length: ");
- strcat(str1, str);
- strcat(str1, "\n\n");
-
-
- strcat(str1, str2);
- strcat(str1, "\r\n\r\n");
- printf("%s\n",str1);
-
- ret = write(sockfd,str1,strlen(str1));
- if (ret < 0) {
- printf("send error!errno %d,error messege'%s'\n",errno, strerror(errno));
- exit(0);
-
- }
- else {
- printf("send succeser total send %d bytes!\n\n", ret);
- }
-
- FD_ZERO(&t_set1);
- FD_SET(sockfd, &t_set1);
- while(1){
- sleep(2);
- tv.tv_sec= 0;
- tv.tv_usec= 0;
- h= 0;
- printf("--------------->1");
- h= select(sockfd +1, &t_set1, NULL, NULL, &tv);
- printf("--------------->2");
- //if (h == 0) continue;
- if (h < 0) {
- close(sockfd);
- printf("在读取数据报文时SELECT检测到异常,该异常导致线程终止!\n");
- return -1;
-
- }
-
- if (h > 0){
- memset(buf, 0, 4096);
- i= read(sockfd, buf, 4095);
- if (i==0){
- close(sockfd);
- printf("读取数据报文时发现远端关闭,该线程终止!\n");
- return -1;
- }
- printf("%s\n", buf);
- }
-
- }
- close (sockfd);
- return 0;
- }