Lines Matching full:host
7 - utility routines to parse a standard host and service string
16 int BIO_parse_hostserv(const char *hostserv, char **host, char **service,
23 back via B<host> and B<service>. Those will need to be freed after
30 host + ':' + service
31 host + ':' + '*'
32 host + ':'
35 host
38 The host part can be a name or an IP address. If it's a IPv6
47 host + ':' + service => *host = "host", *service = "service"
48 host + ':' + '*' => *host = "host", *service = NULL
49 host + ':' => *host = "host", *service = NULL
50 ':' + service => *host = NULL, *service = "service"
51 '*' + ':' + service => *host = NULL, *service = "service"
57 host => *host = "host", *service untouched
60 service => *host untouched, *service = "service"