icmp

Boost C++ Libraries/Boost.Asio

Boost.Asio - ip::icmp

ip::icmp ICMP에서 필요한 플래그를 캡슐화한다. class icmp 유 형 이 름 설 명 endpointer ICMP 엔드포인트 유형. resolver ICMP 리졸버 유형. socket ICMP 소켓 유형. 멤버 함수 이 름 설 명 family 프로토콜 패밀리에 대한 식별자를 얻어온다. protocol 프로토콜에 대한 식별자를 얻어온다. type 프로토콜 유형에 대한 식별자를 얻어온다. v4 [static] IPv4 ICMP 프로토콜을 나타내도록 생성한다. v6 [static] IPv6 ICMP 프로토콜을 나타내도록 생성한다. Friends 이 름 설 명 operator!= 두 프로토콜이 다른지 비교한다. operator== 두 프로토콜이 같은지 비교한다. ip::icmp 클래스는 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
'icmp' 태그의 글 목록