net.h 497 B

12345678910111213141516
  1. #ifndef _konf_net_h
  2. #define _konf_net_h
  3. typedef struct konf_client_s konf_client_t;
  4. #define KONFD_SOCKET_PATH "/tmp/konfd.socket"
  5. konf_client_t *konf_client_new(const char *path);
  6. void konf_client_free(konf_client_t *client);
  7. int konf_client_connect(konf_client_t *client);
  8. void konf_client_disconnect(konf_client_t *client);
  9. int konf_client_reconnect(konf_client_t *client);
  10. int konf_client_send(konf_client_t *client, char *command);
  11. int konf_client__get_sock(konf_client_t *client);
  12. #endif