Home | History | Annotate | Download | only in gdbsupport

Lines Matching refs:hint

42 parse_connection_spec_without_prefix (std::string spec, struct addrinfo *hint)
52 bool is_ipv6 = (hint->ai_family == AF_INET6
53 || (hint->ai_family != AF_INET
70 hint->ai_family = AF_INET6;
116 parse_connection_spec (const char *spec, struct addrinfo *hint)
145 hint->ai_family = prefix.family;
146 hint->ai_socktype = prefix.socktype;
147 hint->ai_protocol
148 = hint->ai_socktype == SOCK_DGRAM ? IPPROTO_UDP : IPPROTO_TCP;
152 return parse_connection_spec_without_prefix (spec, hint);