blob: be46ad18b010ecc91ef18b51749b9aecd943fbc3 (
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
32
|
#include "client.h"
#include "log.h"
#include "msg.h"
#include "net.h"
#include <unistd.h>
int client_create(struct client *client, const struct settings *settings)
{
client->fd = net_connect(settings->host, settings->port);
if (client->fd < 0)
return client->fd;
return 0;
}
void client_destroy(const struct client *client)
{
check_errno(close(client->fd), "close");
}
int client_main(const struct client *client, int argc, char *argv[])
{
int result, ret = 0;
struct msg msg = {argc, argv};
ret = msg_send_and_wait(client->fd, &msg, &result);
if (ret < 0)
return ret;
return result;
}
|