Branch
Hash :
3f95edac
Author :
Thomas de Grivel
Date :
2025-08-31T23:41:53
rewrite RPC to use structured data mode by IKC3 client and support netcat mode out of the box.
/* kc3
* Copyright from 2022 to 2025 kmx.io <contact@kmx.io>
*
* Permission is hereby granted to use this software granted the above
* copyright notice and this permission paragraph are included in all
* copies and substantial portions of this software.
*
* THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
* PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
* AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
* THIS SOFTWARE.
*/
/**
* @file rpc.h
* @brief Remote Procedure Call functionality.
*
* RPC module for structured client-server communication.
*/
#ifndef LIBKC3_RPC_H
#define LIBKC3_RPC_H
#include "types.h"
s_tag * rpc_request (const s_str *input, s_tag *dest);
#endif /* LIBKC3_RPC_H */