Lines Matching defs:client
87 CLIENT *client;
108 * when actually linking the new client into the list, but
125 * For each line, parse it into a new CLIENT struct.
151 if ((client = NewClient(addr)) == NULL) /* alloc new client */
164 client->files[i] = BootFiles[i];
170 * it in the CLIENT's list of boot files.
180 client->files[i++] =
198 FreeClient(client);
204 * Link this client into the linked list of clients.
208 client->next = Clients;
209 Clients = client;