diff options
author | nicm <nicm> | 2015-11-24 21:23:44 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-11-24 21:23:44 +0000 |
commit | bdbbd9711c05507161bc70ccdde91bdb719d943b (patch) | |
tree | aa8d087d36a8ebb227d4d6f20a13969df780004f /cmd-show-messages.c | |
parent | 9cccb8c1159b0a4747b5152e2df08e42207b574d (diff) | |
download | rtmux-bdbbd9711c05507161bc70ccdde91bdb719d943b.tar.gz rtmux-bdbbd9711c05507161bc70ccdde91bdb719d943b.tar.bz2 rtmux-bdbbd9711c05507161bc70ccdde91bdb719d943b.zip |
Show libevent version in showmsgs -I.
Diffstat (limited to 'cmd-show-messages.c')
-rw-r--r-- | cmd-show-messages.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd-show-messages.c b/cmd-show-messages.c index 3d2edf9a..8cf71f41 100644 --- a/cmd-show-messages.c +++ b/cmd-show-messages.c @@ -62,6 +62,8 @@ cmd_show_messages_server(struct cmd_q *cmdq) cmdq_print(cmdq, "started %s", tim); cmdq_print(cmdq, "socket path %s", socket_path); cmdq_print(cmdq, "protocol version %d", PROTOCOL_VERSION); + cmdq_print(cmdq, "libevent %s (%s)", event_get_version(), + event_get_method()); return (1); } |