blob: 644cb139e1e41ec7def05d7cce87e8fd58a00218 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#include "client.h"
#include "cmd.h"
#include "net.h"
#include <unistd.h>
int client_create(struct client *client, const struct settings *settings)
{
client->fd = connect_to_host(settings->host, settings->port);
if (client->fd < 0)
return client->fd;
return 0;
}
void client_destroy(const struct client *client)
{
close(client->fd);
}
int client_main(const struct client *client, int argc, char *argv[])
{
int result, ret = 0;
struct cmd cmd = {argc, argv};
ret = cmd_send_and_wait_for_result(client->fd, &cmd, &result);
if (ret < 0)
return ret;
return result;
}
|