#include "client.h" #include "log.h" #include "msg.h" #include "net.h" #include 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; }