C++에서 HTTP 스트리밍을 구현하는 방법은 무엇입니까? Boost.Asio 및 asiohttps 클라이언트 라이브러리를 사용하여 SSL 스트림 소켓을 만듭니다. 서버에 연결하고 HTTP 요청을 보냅니다. HTTP 응답 헤더를 수신하고 인쇄합니다. HTTP 응답 본문을 수신하여 인쇄합니다.
C++에서 HTTP 스트리밍을 구현하는 방법
소개
스트리밍은 HTTP 프로토콜을 통해 미디어 데이터를 실시간으로 전송하는 방법입니다. 이를 통해 클라이언트는 전체 파일 다운로드가 완료될 때까지 기다리지 않고 서버로부터 연속적인 데이터 스트림을 수신할 수 있습니다. 이 문서에서는 Boost.Asio 및 asiohttps 클라이언트 라이브러리를 사용하여 C++에서 HTTP 스트리밍을 구현하는 방법을 설명합니다.
Prepare
Code
다음은 HTTP 스트리밍을 구현하는 코드입니다.
#include <boost/asio.hpp> #include <boost/asio/ssl.hpp> using namespace boost::asio; int main() { // 设置服务器地址和端口 std::string server_address = "example.com"; unsigned short server_port = 443; // 创建 IO 服务 io_service io_service; // 创建 SSL 上下文 ssl::context ctx{ssl::context::tlsv12_client}; // 创建 SSL 流套接字 ssl::stream<ip::tcp::socket> stream(io_service, ctx); // 连接到服务器 stream.lowest_layer().connect(ip::tcp::endpoint(ip::address::from_string(server_address), server_port)); // 发送 HTTP 请求 stream << "GET /stream.mp4 HTTP/1.1\r\n" << "Host: " << server_address << "\r\n" << "Connection: keep-alive\r\n" << "\r\n"; // 接收 HTTP 响应头 boost::system::error_code ec; std::string response_headers; for (;;) { response_headers += stream.read_some(buffer(response_headers), ec); if (ec || response_headers.find("\r\n\r\n") != std::string::npos) { break; } } if (ec) { throw std::runtime_error("Error receiving HTTP headers: " + ec.message()); } // 打印响应头 std::cout << response_headers << std::endl; // 接收 HTTP 响应正文 char buffer[1024]; size_t bytes_received = 0; while (bytes_received < std::numeric_limits<size_t>::max()) { bytes_received += stream.read_some(buffer(buffer, bytes_received), ec); if (ec || stream.eof()) { break; } } if (ec) { throw std::runtime_error("Error receiving HTTP content: " + ec.message()); } // 打印响应正文 std::cout << buffer << std::endl; return 0; }
실습 사례
이 프로그램은 서버로부터 스트리밍 미디어 파일을 수신하고 재생하는 데 사용할 수 있습니다. 다음은 example.com에서 다운로드한 스트리밍 파일을 재생하는 예입니다.
g++ -std=c++11 -I/usr/local/include -L/usr/local/lib -lasio -lasiossl stream.cpp ./a.out > stream.mp4 mplayer stream.mp4
참고
위 내용은 C++를 사용하여 HTTP 스트리밍을 구현하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!