您的位置:首页 > 理论基础 > 计算机网络

socket编程 通讯协议tcp,数据承载协议http

2011-04-11 19:37 411 查看
sprintf(post, "POST /PURegister HTTP/1.1/r/n");

sprintf(accept, "Accept:*/*/r/n");

sprintf(accept_language, "Accept-Language: zh-cn/r/n");

sprintf(seq, "Seq:%d/r/n", 1);

sprintf(content_type, "Content-Type: application/x-www-form-urlencoded/r/n");

sprintf(user_agent, "User-Agent:Mozilla/4.0/r/n");

sprintf(host, "Host: %s:%d/r/n", SERVIP, SERVPORT);

sprintf(cookie, "Cookie: sessionId=%s/r/n", "");

sprintf(httpdata, "PUID=%s&puIp=%s&puPort=%d&puName=%s&puPassword=%s&puType=%d&videoSum=%d&CMUIP=%s", httpreg.PUID, httpreg.puIp, httpreg.puPort, httpreg.puName, httpreg.puPassword, httpreg.puType, httpreg.videoSum, httpreg.CMUIP);

//sprintf(httpdata, "PUID=%s&CMUIP=%s&puIp=%s&puPort=%d&puName=%s&puPassword=%s&conType=%d&puType=%d&videoSum=%d", httpreg.PUID, httpreg.CMUIP,httpreg.puIp, httpreg.puPort, httpreg.puName, httpreg.puPassword, 1,httpreg.puType, httpreg.videoSum);

len = strlen(httpdata);

sprintf(content_length, "Content-Length: %d/r/n/r/n", len);

printf("hihi:::%s/n", httpdata);

strcpy(httpmsg, post);

strcat(httpmsg, accept);

strcat(httpmsg, accept_language);

strcat(httpmsg, seq);

strcat(httpmsg, content_type);

strcat(httpmsg, user_agent);

strcat(httpmsg, host);

strcat(httpmsg, cookie);

strcat(httpmsg, content_length);

//strcat(httpmsg, "/n"); //这一个多余的行很害人

strcat(httpmsg, httpdata);

printf("%s/n", httpmsg);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐