summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2006-06-13 09:33:55 +0000
committerPierre Ossman <ossman@cendio.se>2006-06-13 09:33:55 +0000
commit928847933891f1d47b87b66299d5d2b241107c48 (patch)
treef1dfdc18dce52bb26bcff7a5cc7abc4ce42781a0 /src
parent7582f7493b4103dcc1442c511d856cb616409078 (diff)
Tweak the printing of client connections a bit so that it's more apparent
what and who it is that's connecting. git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1014 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src')
-rw-r--r--src/polypcore/client.c3
-rw-r--r--src/polypcore/protocol-esound.c5
-rw-r--r--src/polypcore/protocol-native.c5
3 files changed, 10 insertions, 3 deletions
diff --git a/src/polypcore/client.c b/src/polypcore/client.c
index b5ed2fd0..4ece07a8 100644
--- a/src/polypcore/client.c
+++ b/src/polypcore/client.c
@@ -86,6 +86,9 @@ void pa_client_kill(pa_client *c) {
void pa_client_set_name(pa_client *c, const char *name) {
assert(c);
+
+ pa_log_info(__FILE__": client %u changed name from \"%s\" to \"%s\"", c->index, c->name, name);
+
pa_xfree(c->name);
c->name = pa_xstrdup(name);
diff --git a/src/polypcore/protocol-esound.c b/src/polypcore/protocol-esound.c
index 02e140b9..c9bc504d 100644
--- a/src/polypcore/protocol-esound.c
+++ b/src/polypcore/protocol-esound.c
@@ -1139,7 +1139,7 @@ static void auth_timeout(pa_mainloop_api*m, pa_time_event *e, const struct timev
static void on_connection(pa_socket_server*s, pa_iochannel *io, void *userdata) {
struct connection *c;
pa_protocol_esound *p = userdata;
- char cname[256];
+ char cname[256], pname[128];
assert(s && io && p);
if (pa_idxset_size(p->connections)+1 > MAX_CONNECTIONS) {
@@ -1153,7 +1153,8 @@ static void on_connection(pa_socket_server*s, pa_iochannel *io, void *userdata)
c->io = io;
pa_iochannel_set_callback(c->io, io_callback, c);
- pa_iochannel_socket_peer_to_string(io, cname, sizeof(cname));
+ pa_iochannel_socket_peer_to_string(io, pname, sizeof(pname));
+ snprintf(cname, sizeof(cname), "EsounD client (%s)", pname);
assert(p->core);
c->client = pa_client_new(p->core, __FILE__, cname);
assert(c->client);
diff --git a/src/polypcore/protocol-native.c b/src/polypcore/protocol-native.c
index f663dc35..221601a6 100644
--- a/src/polypcore/protocol-native.c
+++ b/src/polypcore/protocol-native.c
@@ -2213,6 +2213,7 @@ static void auth_timeout(pa_mainloop_api*m, pa_time_event *e, const struct timev
static void on_connection(PA_GCC_UNUSED pa_socket_server*s, pa_iochannel *io, void *userdata) {
pa_protocol_native *p = userdata;
struct connection *c;
+ char cname[256], pname[128];
assert(io && p);
if (pa_idxset_size(p->connections)+1 > MAX_CONNECTIONS) {
@@ -2235,8 +2236,10 @@ static void on_connection(PA_GCC_UNUSED pa_socket_server*s, pa_iochannel *io, vo
c->version = 8;
c->protocol = p;
+ pa_iochannel_socket_peer_to_string(io, pname, sizeof(pname));
+ snprintf(cname, sizeof(cname), "Native client (%s)", pname);
assert(p->core);
- c->client = pa_client_new(p->core, __FILE__, "Client");
+ c->client = pa_client_new(p->core, __FILE__, cname);
assert(c->client);
c->client->kill = client_kill_cb;
c->client->userdata = c;