zoukankan
html css js c++ java
使用BOOST实现简单的HTTP网页下载
bool httpGet(/*out*/string& result, const string& host, uint16_t port, const string& url,boost::asio::io_service &_io) { try { string domain = host; boost::asio::ip::tcp::resolver resolver(_io); boost::asio::ip::tcp::resolver_query query(domain, IntToStr(port)); boost::asio::ip::tcp::resolver::iterator endpoint_iterator = resolver.resolve(query); boost::asio::ip::tcp::resolver::iterator end; //Try each endpoint until we successfully establish a connection. boost::asio::ip::tcp::socket socket(_io); boost::system::error_code error = boost::asio::error::host_not_found; while (error && endpoint_iterator != end) { socket.close(); socket.connect(*endpoint_iterator++, error); } if (error) throw boost::system::system_error(error); //// Form the request. We specify the "Connection: close" header so that the //// server will close the socket after transmitting the response. This will //// allow us to treat all data up until the EOF as the content. boost::asio::streambuf request; std::ostream request_stream(&request); request_stream << "GET " << url << " HTTP/1.0\r\n"; request_stream << "Host: " << socket.remote_endpoint().address() << "\r\n"; request_stream << "Accept: */*\r\n"; request_stream << "Connection: close\r\n\r\n"; // Send the request. boost::asio::write(socket, request); // Read the response status line. boost::asio::streambuf response(4096); boost::asio::read_until(socket, response, "\r\n"); // Check that response is OK. std::istream response_stream(&response); std::string http_version; response_stream >> http_version; unsigned int status_code; response_stream >> status_code; std::string status_message; std::getline(response_stream, status_message); if (!response_stream || http_version.substr(0, 5) != "HTTP/") { std::cerr << "[Get Address ]: Invalid response\n"; return false; } if (status_code != 200) { std::cerr << "[Get Address ]: Response returned with status code " << status_code << "\n"; return false; } // Read the response headers, which are terminated by a blank line. boost::asio::read_until(socket, response, "\r\n\r\n"); // Process the response headers. std::string header; while (std::getline(response_stream, header) && header != "\r"){ } // Read until EOF, writing data to output as we go. while (boost::asio::read(socket, response, boost::asio::transfer_at_least(1), error)) { ; } string temp; while(!response_stream.eof()){ std::getline(response_stream, temp); result.append(temp); } if (error != boost::asio::error::eof) throw boost::system::system_error(error); return true; }catch(std::excetion& e){std::cerr << e.what();}
return false; }
查看全文
相关阅读:
轻松搭建Redis缓存高可用集群
Redis集群主从配置
启动Redis Cluster
MyISAM 和 InnoDB 索引的区别
数据库面试
如何定位php程序访问慢
Socket技术详解
NGINX快速入门
nginx 并发数问题思考:worker_connections,worker_processes与 max clients
php-fpm运行原理
原文地址:https://www.cnblogs.com/k1988/p/2165584.html
最新文章
第三章 运行时数据区概述及线程
第二章 类加载子系统
第一章-JVM与Java体系结构
优秀词句
4.7 ElasticSearch
4.5 Nginx教程_web服务器
4.9 RabbitMQ-开源消息代理软件
3.5 Spring
3.4 MyBatis
4.5 Nginx反向代理服务器
热门文章
jenkins和gitlib的ssh连接和webhook
Jenkins+Docker+SpringCloud微服务持续集成(未完成)
Jenkins项目构建细节(3)-Jenkins的参数化构建
Jenkins项目构建细节(2)-Git hook自动触发构建(重要)
Jenkins项目构建细节(1)-常用的构建触发器(2020.09.16)
Jenkins项目构建类型--Pipeline流水线项目构建(20200916) 重要
Jenkins构建Maven项目(未完成)
持续集成环境Jenkins+git+maven+tomcat安装(20200915)
Gitlab代码托管服务器安装(20200915)
docker常用命令和解释
Copyright © 2011-2022 走看看