And these.
authorAnders Carlsson <andersca@codefactory.se>
Tue, 28 Jan 2003 14:47:11 +0000 (14:47 +0000)
committerAnders Carlsson <andersca@codefactory.se>
Tue, 28 Jan 2003 14:47:11 +0000 (14:47 +0000)
dbus/dbus-server.h
dbus/dbus-transport-debug.c

index 8471457..68d9500 100644 (file)
@@ -55,6 +55,11 @@ void dbus_server_set_watch_functions         (DBusServer                *server,
                                               DBusRemoveWatchFunction    remove_function,
                                               void                      *data,
                                               DBusFreeFunction           free_data_function);
+void dbus_server_set_timeout_functions       (DBusServer                *server,
+                                             DBusAddTimeoutFunction     add_function,
+                                             DBusRemoveTimeoutFunction  remove_function,
+                                             void                      *data,
+                                             DBusFreeFunction           free_data_function);
 void dbus_server_handle_watch                (DBusServer                *server,
                                               DBusWatch                 *watch,
                                               unsigned int               condition);
index 3277094..7e92564 100644 (file)
@@ -56,8 +56,6 @@ debug_finalize (DBusTransport *transport)
 static void
 do_reading (DBusTransport *transport)
 {
-  printf ("in do reading!\n");
-  
   if (transport->disconnected)
     return;
 
@@ -208,7 +206,6 @@ debug_messages_pending (DBusTransport *transport,
                        int            messages_pending)
 {
   check_write_timeout (transport);
-  printf ("messages pending!: %d\n", messages_pending);
 }
 
 static void
@@ -216,8 +213,6 @@ debug_do_iteration (DBusTransport *transport,
                    unsigned int   flags,
                    int            timeout_milliseconds)
 {
-  printf ("do iteration: %d %d!!\n", transport->is_server,
-         flags);
 }
 
 static void