Lines Matching full:service
66 \&\- utility routines to parse a standard host and service string
75 \& int BIO_parse_hostserv(const char *hostserv, char **host, char **service,
81 create strings with the hostname and service name and give those
82 back via \fBhost\fR and \fBservice\fR. Those will need to be freed after
84 be interpreted primarily as a hostname or a service name in ambiguous
90 \& host + \*(Aq:\*(Aq + service
93 \& \*(Aq:\*(Aq + service
94 \& \*(Aq*\*(Aq + \*(Aq:\*(Aq + service
96 \& service
102 The service part can be a service name or its port number. A service name
109 \& host + \*(Aq:\*(Aq + service => *host = "host", *service = "service"
110 \& host + \*(Aq:\*(Aq + \*(Aq*\*(Aq => *host = "host", *service = NULL
111 \& host + \*(Aq:\*(Aq => *host = "host", *service = NULL
112 \& \*(Aq:\*(Aq + service => *host = NULL, *service = "service"
113 \& \*(Aq*\*(Aq + \*(Aq:\*(Aq + service => *host = NULL, *service = "service"
119 \& host => *host = "host", *service untouched
122 \& service => *host untouched, *service = "service"