Lines Matching full:service
142 \&\- utility routines to parse a standard host and service string
151 \& int BIO_parse_hostserv(const char *hostserv, char **host, char **service,
157 create strings with the hostname and service name and give those
158 back via \fBhost\fR and \fBservice\fR. Those will need to be freed after
160 be interpreted primarily as a hostname or a service name in ambiguous
166 \& host + \*(Aq:\*(Aq + service
169 \& \*(Aq:\*(Aq + service
170 \& \*(Aq*\*(Aq + \*(Aq:\*(Aq + service
172 \& service
178 The service part can be a service name or its port number. A service name
185 \& host + \*(Aq:\*(Aq + service => *host = "host", *service = "service"
186 \& host + \*(Aq:\*(Aq + \*(Aq*\*(Aq => *host = "host", *service = NULL
187 \& host + \*(Aq:\*(Aq => *host = "host", *service = NULL
188 \& \*(Aq:\*(Aq + service => *host = NULL, *service = "service"
189 \& \*(Aq*\*(Aq + \*(Aq:\*(Aq + service => *host = NULL, *service = "service"
195 \& host => *host = "host", *service untouched
198 \& service => *host untouched, *service = "service"