2022-10-29 23:13:41 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022 Jim Ramsay
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
|
|
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
|
|
* AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
|
|
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
|
|
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
|
|
|
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
struct ctl_client;
|
|
|
|
|
|
|
|
void ctl_client_debug_log(bool enable);
|
|
|
|
|
|
|
|
struct ctl_client* ctl_client_new(const char* socket_path, void* userdata);
|
|
|
|
void ctl_client_destroy(struct ctl_client*);
|
|
|
|
void* ctl_client_userdata(struct ctl_client*);
|
|
|
|
|
2022-11-05 13:53:17 +00:00
|
|
|
#define PRINT_JSON 0x00000001
|
2022-11-16 00:57:16 +00:00
|
|
|
#define RECONNECT 0x00000002
|
2022-10-29 23:13:41 +00:00
|
|
|
|
2022-11-15 09:57:26 +00:00
|
|
|
int ctl_client_connect(struct ctl_client* self, int timeout);
|
2022-10-29 23:13:41 +00:00
|
|
|
int ctl_client_run_command(struct ctl_client* self,
|
2022-11-05 13:53:17 +00:00
|
|
|
int argc, char* argv[], unsigned flags);
|