Lines Matching defs:hostname
55 char *hostname;
85 pa_rtsp_client* pa_rtsp_client_new(pa_mainloop_api *mainloop, const char *hostname, uint16_t port, const char *useragent, bool autoreconnect) {
89 pa_assert(hostname);
94 c->hostname = pa_xstrdup(hostname);
125 pa_xfree(c->hostname);
341 pa_log_warn("Connection to server %s:%d failed: %s - will try later", c->hostname, c->port, pa_cstrerror(errno));
348 pa_log("Connection to server %s:%d failed: %s", c->hostname, c->port, pa_cstrerror(errno));
385 pa_log_debug("Attempting to connect to server '%s:%d'", c->hostname, c->port);
386 if (!(c->sc = pa_socket_client_new_string(c->mainloop, true, c->hostname, c->port))) {
387 pa_log("failed to connect to server '%s:%d'", c->hostname, c->port);