Home | History | Annotate | Download | only in ip

Lines Matching refs:protocol

39   /// The protocol type associated with the endpoint query.
42 /// Construct with specified service name for any protocol.
68 hints_.ai_socktype = endpoint.protocol().type();
69 hints_.ai_protocol = endpoint.protocol().protocol();
76 /// Construct with specified service name for a given protocol.
79 * service binding with a specific protocol version.
81 * @param protocol A protocol object, normally representing either the IPv4 or
82 * IPv6 version of an internet protocol.
96 basic_resolver_query(const protocol_type& protocol,
104 hints_.ai_family = protocol.family();
105 hints_.ai_socktype = protocol.type();
106 hints_.ai_protocol = protocol.protocol();
113 /// Construct with specified host name and service name for any protocol.
153 hints_.ai_socktype = endpoint.protocol().type();
154 hints_.ai_protocol = endpoint.protocol().protocol();
161 /// Construct with specified host name and service name for a given protocol.
166 * @param protocol A protocol object, normally representing either the IPv4 or
167 * IPv6 version of an internet protocol.
195 basic_resolver_query(const protocol_type& protocol,
203 hints_.ai_family = protocol.family();
204 hints_.ai_socktype = protocol.type();
205 hints_.ai_protocol = protocol.protocol();