X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=ui%2Fcommon%2Fdiscover-client.c;h=422c1820cc57d45bcb5ce718c681a804d878b773;hp=1901f6c5207e282cc8b754e79dcf67f4f4723d7f;hb=35cc5798268f4fce3291748406211bb149a57571;hpb=5b71bc5697e403b586ec313148e652406b5426b6;ds=sidebyside diff --git a/ui/common/discover-client.c b/ui/common/discover-client.c index 1901f6c..422c182 100644 --- a/ui/common/discover-client.c +++ b/ui/common/discover-client.c @@ -1,4 +1,5 @@ +#include #include #include #include @@ -9,6 +10,7 @@ #include #include +#include #include "ui/common/discover-client.h" #include "pb-protocol/pb-protocol.h" @@ -41,7 +43,7 @@ struct discover_client* discover_client_init(struct discover_client_ops *ops) client->fd = socket(AF_UNIX, SOCK_STREAM, 0); if (!client->fd < 0) { - perror("socket"); + pb_log("%s: socket: %s\n", __func__, strerror(errno)); goto out_err; } @@ -51,7 +53,7 @@ struct discover_client* discover_client_init(struct discover_client_ops *ops) strcpy(addr.sun_path, PB_SOCKET_PATH); if (connect(client->fd, (struct sockaddr *)&addr, sizeof(addr))) { - perror("connect"); + pb_log("%s: connect: %s\n", __func__, strerror(errno)); goto out_err; } @@ -81,13 +83,13 @@ int discover_client_process(struct discover_client *client) message = pb_protocol_read_message(client, client->fd); if (!message) - return 0; + return -1; switch (message->action) { case PB_PROTOCOL_ACTION_ADD: dev = pb_protocol_deserialise_device(client, message); if (!dev) { - printf("no device?\n"); + pb_log("%s: no device?\n", __func__); return 0; } client->ops.add_device(dev); @@ -96,13 +98,13 @@ int discover_client_process(struct discover_client *client) case PB_PROTOCOL_ACTION_REMOVE: dev_id = pb_protocol_deserialise_string(client, message); if (!dev_id) { - printf("no device id?\n"); + pb_log("%s: no device id?\n", __func__); return 0; } client->ops.remove_device(dev_id); break; default: - printf("unknown action %d\n", message->action); + pb_log("%s: unknown action %d\n", __func__, message->action); }