| Top |
BeagleClient *
beagle_client_new (const char *client_name);
Creates a new BeagleClient. If client_name
is NULL it will default to "socket".
BeagleClient *
beagle_client_new_from_socket_path (const char *socket_path);
Creates a new BeagleClient, connecting to the path with socket_path
. NULL
is not allowed.
BeagleResponse * beagle_client_send_request (BeagleClient *client,BeagleRequest *request,GError **err);
Synchronously send a BeagleRequest using the given BeagleClient.
gboolean beagle_client_send_request_async (BeagleClient *client,BeagleRequest *request,GError **err);
Asynchronously send a BeagleRequest using the given BeagleClient.