TCP UDP and ICMP

Boost C++ Libraries/Boost.Asio

Boost.Asio 개요 - 네트워킹 - TCP, UDP 및 ICMP

TCP, UDP 및 ICMP (TCP, UDP and ICMP) Boost.Asio는 인터넷 프로토콜인 TCP, UDP 및 ICMP등 기성 프로토콜에 대한 지원을 제공한다. TCP 클라이언트 호스트 이름 확인은 리졸버(resolver)를 사용해 수행된다. 여기서 호스트와 서비스 이름이 조회되고 하나 이상의 엔드포인트(endpoint)로 변환된다: ip::tcp::resolver resolver(my_io_context); ip::tcp::resolver::query query("www.boost.org", "http"); ip::tcp::resolver::iterator iter = resolver.resolve(query); ip::tcp::resolver::iterator end; // End mar..

까마귀75
'TCP UDP and ICMP' 태그의 글 목록