Lines Matching refs:service
7 - utility routines to parse a standard host and service string
16 int BIO_parse_hostserv(const char *hostserv, char **host, char **service,
22 create strings with the hostname and service name and give those
23 back via B<host> and B<service>. Those will need to be freed after
25 be interpreted primarily as a hostname or a service name in ambiguous
30 host + ':' + service
33 ':' + service
34 '*' + ':' + service
36 service
41 The service part can be a service name or its port number. A service name
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"