summaryrefslogtreecommitdiffstats
path: root/glib/test-dbus-glib.c
blob: ad147e5019e978582c54f0a6efda689a3c3188fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include "dbus-glib.h"
#include <stdio.h>

int
main (int argc, char **argv)
{
  DBusConnection *connection;
  DBusResultCode result;
  DBusMessage *message, *reply;
  
  GMainLoop *loop;
  
  loop = g_main_loop_new (NULL, FALSE);

  connection = dbus_connection_open (argv[1], &result);
  if (connection == NULL)
    {
      fprintf (stderr, "Failed to open connection to %s: %s\n", argv[1],
	       dbus_result_to_string (result));
      return 1;
    }

  dbus_connection_hookup_with_g_main (connection);

  message = dbus_message_new ("org.freedesktop.DBus", "org.freedesktop.DBus.Hello");
  dbus_message_append_fields (message,
			      DBUS_TYPE_STRING, "glib-test",
			      0);

  reply = dbus_connection_send_message_with_reply_and_block (connection, message, -1, &result);
  g_print ("reply name: %s\n", dbus_message_get_name (reply));
  
  g_main_loop_run (loop);
  
  return 0;
}