server: include number of CPUs in probe reply

We'll need this for affinity mask setting. Also add room
for flags, we'll want to pass back a flag mask of supported
features on the remote end.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
diff --git a/gclient.c b/gclient.c
index e4ff1c4..8675f61 100644
--- a/gclient.c
+++ b/gclient.c
@@ -538,6 +538,9 @@
 	if (!client->name)
 		client->name = strdup((char *) probe->hostname);
 
+	gc->client_cpus = le32_to_cpu(probe->cpus);
+	gc->client_flags = le64_to_cpu(probe->flags);
+
 	gdk_threads_enter();
 
 	gtk_label_set_text(GTK_LABEL(ge->probe.hostname), (char *) probe->hostname);