❶ c語言實現HTTP協議
要會C中的TCP客戶端操作
C不會,不清楚,似乎是用Socket?
然後就是要找點教程學HTTP了,比如:
http://sites.google.com/site/xierch/text/http
❷ c語言怎麼實現http 請求頭發送
1。建立到伺服器的TCP連接
2。向伺服器發送GET或者POST報文,報文格式請參考HTTP協議
3。接收伺服器返回的報文
❸ C語言建立TCP連接後,怎麼發送HTTP的GET請求
send發送請求串 回車 再回車。 一行結束後 換另一個語句 最後要有一個空行
GET ***** 回車
回車
❹ C#中C/S如何模擬HTTP的GET協議
模擬HTTP客戶端的GET協議
usingSystem.Net;
WebRequestrequest=WebRequest.Create("http://..com/question/135065331971221885.html?push=category&entry=qb_home_category");
request.Method="GET"
WebResponseresponse=request.GetResponse();
注意url中「……?push=category&entry=qb_home_category」從問號?開始的是Get 請求的參數。各個參數直接用&分隔。
❺ 如何用c語言實現http伺服器
//服務端簡易代碼如下:
#include<stdio.h>
#include<stdlib.h>
#include<err.h>
#include<event.h>
#include<evhttp.h>
voidhttp_handle(structevhttp_request*req,void*arg);/*HTTPRequestHandle*/
intmain(){
structevhttp*httpd;
event_init();
httpd=evhttp_start("0.0.0.0",2345);
if(httpd==NULL){
fprintf(stderr,"Error:Unabletolistenon%s:%d ");
exit(1);
}
evhttp_set_timeout(httpd,2000);
evhttp_set_gencb(httpd,http_handle,NULL);
event_dispatch();
evhttp_free(httpd);
return0;
}
voidhttp_handle(structevhttp_request*req,void*arg){
structevbuffer*buf;
buf=evbuffer_new();
/*Responsetheclient*/
evhttp_send_reply(req,HTTP_OK,"OK",buf);
//evbuffer_add_printf(buf,"%s","HTTPSQS_AUTH_FAILED");
/*Releasethememory*/
evbuffer_free(buf);
fprintf(stderr,"Send ");
}
編譯:編譯時把libevent的類庫中的.so文件和.h文件連接進來。
❻ c語言實現 請求網址
首先, 127.0.0.1是本機地址
❼ 如何用C/C++模擬post提交數據,獲得http相應。
http協議有不少內容。post是把數據寫到協議頭的後面。
比如要傳輸「abc」
首先是頭部分,後面是數據部分
POST /aaa.asp HTTP1.1
......
\r\n\r\n
abc
類型這樣的數據用tcp傳就ok
❽ c語言 構造http請求
GET %s/ HTTP/1.0\r\n
%s 後面的/沒有的
❾ 如何通過 c/c++ 實現http請求
示常式序,轉載自CNBLOG,做了針對C語言編譯器的適應性修正:
#include<stdio.h>
#include<winsock2.h>
#pragmacomment(lib,"ws2_32.lib")/*WinSock使用的庫函數*/
/*定義常量*/
#defineHTTP_DEF_PORT80/*連接的預設埠*/
#defineHTTP_BUF_SIZE1024/*緩沖區的大小*/
#defineHTTP_HOST_LEN256/*主機名長度*/
char*http_req_hdr_tmpl="GET%sHTTP/1.1 "
"Accept:image/gif,image/jpeg,*/* Accept-Language:zh-cn "
"Accept-Encoding:gzip,deflate Host:%s:%d "
"User-Agent:Huiyong'sBrowser<0.1> Connection:Keep-Alive ";
/**************************************************************************
*
*函數功能:解析命令行參數,分別得到主機名,埠號和文件名.命令行格式:
*[http://www..com:8080/index.html]
*
*參數說明:[IN]buf,字元串指針數組;
*[OUT]host,保存主機;
*[OUT]port,埠;
*[OUT]file_name,文件名;
*
*返回值:void.
*
**************************************************************************/
voidhttp_parse_request_url(constchar*buf,char*host,
unsignedshort*port,char*file_name)
{
intlength=0;
charport_buf[8];
char*buf_end=(char*)(buf+strlen(buf));
char*begin,*host_end,*colon,*file;
/*查找主機的開始位置*/
begin=(char*)(strstr(buf,"//"));
begin=(begin?begin+2:(char*)(buf));
colon=strchr(begin,':');
host_end=strchr(begin,'/');
if(host_end==NULL)
{
host_end=buf_end;
}
else
{/*得到文件名*/
file=strrchr(host_end,'/');
if(file&&(file+1)!=buf_end)
strcpy(file_name,file+1);
}
if(colon)/*得到埠號*/
{
colon++;
length=host_end-colon;
memcpy(port_buf,colon,length);
port_buf[length]=0;
*port=atoi(port_buf);
host_end=colon-1;
}
/*得到主機信息*/
length=host_end-begin;
memcpy(host,begin,length);
host[length]=0;
}
intmain(intargc,char**argv)
{
WSADATAwsa_data;
SOCKEThttp_sock=0;/*socket句柄*/
structsockaddr_inserv_addr;/*伺服器地址*/
structhostent*host_ent;
intresult=0,send_len;
chardata_buf[HTTP_BUF_SIZE];
charhost[HTTP_HOST_LEN]="127.0.0.1";
unsignedshortport=HTTP_DEF_PORT;
unsignedlongaddr;
charfile_name[HTTP_HOST_LEN]="index.html";
charfile_nameforsave[HTTP_HOST_LEN]="index1.html";
FILE*file_web;
if(argc!=2)
{
printf("[Web]input:%shttp://www.test.com[:8080]/index.html",argv[0]);
return-1;
}
http_parse_request_url(argv[1],host,&port,file_name);
WSAStartup(MAKEWORD(2,0),&wsa_data);/*初始化WinSock資源*/
addr=inet_addr(host);
if(addr==INADDR_NONE)
{
host_ent=gethostbyname(host);
if(!host_ent)
{
printf("[Web]invalidhost ");
return-1;
}
memcpy(&addr,host_ent->h_addr_list[0],host_ent->h_length);
}
/*伺服器地址*/
serv_addr.sin_family=AF_INET;
serv_addr.sin_port=htons(port);
serv_addr.sin_addr.s_addr=addr;
http_sock=socket(AF_INET,SOCK_STREAM,0);/*創建socket*/
result=connect(http_sock,(structsockaddr*)&serv_addr,sizeof(serv_addr));
if(result==SOCKET_ERROR)/*連接失敗*/
{
closesocket(http_sock);
printf("[Web]failtoconnect,error=%d ",WSAGetLastError());
return-1;
}
/*發送HTTP請求*/
send_len=sprintf(data_buf,http_req_hdr_tmpl,argv[1],host,port);
result=send(http_sock,data_buf,send_len,0);
if(result==SOCKET_ERROR)/*發送失敗*/
{
printf("[Web]failtosend,error=%d ",WSAGetLastError());
return-1;
}
file_web=fopen(file_nameforsave,"a+");
do/*接收響應並保存到文件中*/
{
result=recv(http_sock,data_buf,HTTP_BUF_SIZE,0);
if(result>0)
{
fwrite(data_buf,1,result,file_web);
/*在屏幕上輸出*/
data_buf[result]=0;
printf("%s",data_buf);
}
}while(result>0);
fclose(file_web);
closesocket(http_sock);
WSACleanup();
return0;
}
❿ 如何使用c語言解析httppost請求
這個和具體的網頁有關系的,你可以用HttpWatch之類的抓包工具分析一個網頁的請求和返回。 然後就可以自己模仿相關的請求訪問該網頁了。