summaryrefslogtreecommitdiffstats
path: root/discover/discover-server.c
diff options
context:
space:
mode:
Diffstat (limited to 'discover/discover-server.c')
-rw-r--r--discover/discover-server.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/discover/discover-server.c b/discover/discover-server.c
index 80919fd..e4f3b67 100644
--- a/discover/discover-server.c
+++ b/discover/discover-server.c
@@ -216,6 +216,7 @@ static int discover_server_process_message(void *arg)
struct boot_command *boot_command;
struct client *client = arg;
struct config *config;
+ char *url;
int rc;
message = pb_protocol_read_message(client, client->fd);
@@ -262,6 +263,12 @@ static int discover_server_process_message(void *arg)
config);
break;
+ case PB_PROTOCOL_ACTION_ADD_URL:
+ url = pb_protocol_deserialise_string((void *) client, message);
+
+ device_handler_process_url(client->server->device_handler, url);
+ break;
+
default:
pb_log("%s: invalid action %d\n", __func__, message->action);
return 0;
OpenPOWER on IntegriCloud