summaryrefslogtreecommitdiffstats
path: root/src/utils/pactl.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-10-28 23:27:50 +0100
committerLennart Poettering <lennart@poettering.net>2009-10-28 23:27:50 +0100
commit8678f565322ccc1bfbaa0f21024f7255ed58b933 (patch)
treef49f8191555cfb899c429f9988eef19ea71decb1 /src/utils/pactl.c
parent7c55d6e91d21971e187bf9602dce38cb49666cc4 (diff)
pactl: include information about client context in pactl stat output
Diffstat (limited to 'src/utils/pactl.c')
-rw-r--r--src/utils/pactl.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/utils/pactl.c b/src/utils/pactl.c
index 51de1204..7ef02ec9 100644
--- a/src/utils/pactl.c
+++ b/src/utils/pactl.c
@@ -156,10 +156,23 @@ static void get_server_info_callback(pa_context *c, const pa_server_info *i, voi
return;
}
+ printf(_("Server String: %s\n"
+ "Library Protocol Version: %u\n"
+ "Server Protocol Version: %u\n"
+ "Is Local: %s\n"
+ "Client Index: %u\n"
+ "Tile Size: %zu\n"),
+ pa_context_get_server(c),
+ pa_context_get_protocol_version(c),
+ pa_context_get_server_protocol_version(c),
+ pa_yes_no(pa_context_is_local(c)),
+ pa_context_get_index(c),
+ pa_context_get_tile_size(c, NULL));
+
pa_sample_spec_snprint(ss, sizeof(ss), &i->sample_spec);
pa_channel_map_snprint(cm, sizeof(cm), &i->channel_map);
- printf(_("User name: %s\n"
+ printf(_("User Name: %s\n"
"Host Name: %s\n"
"Server Name: %s\n"
"Server Version: %s\n"