blob: 7c47ae681c30607abfa4f626e2dffb9b5c11c937 (
plain) (
tree)
|
|
/*
* Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com>
* This file is part of the "cimple" project.
* For details, see https://github.com/egor-tensin/cimple.
* Distributed under the MIT License.
*/
#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)
{
log_errno_if(close(client->fd), "close");
}
int client_main(const struct client *client, int argc, char *argv[])
{
struct msg request = {argc, argv};
struct msg response;
int ret = 0;
ret = msg_send_and_wait(client->fd, &request, &response);
if (ret < 0)
return ret;
if (msg_is_error(&response)) {
log_err("Server failed to process the request\n");
ret = -1;
goto free_response;
}
free_response:
msg_free(&response);
return ret;
}
|