wip - adding more packet types
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
hyung-hwan 2024-04-20 14:23:06 +09:00
parent 340f1d8a44
commit c03801cb32
2 changed files with 13 additions and 10 deletions

View File

@ -291,7 +291,6 @@ static const hcl_bch_t* get_base_name (const hcl_bch_t* path)
return (last == HCL_NULL)? path: (last + 1);
}
static HCL_INLINE int open_read_stream (hcl_t* hcl, hcl_io_cciarg_t* arg)
{
worker_hcl_xtn_t* xtn = (worker_hcl_xtn_t*)hcl_getxtn(hcl);

View File

@ -30,24 +30,28 @@
enum hcl_xpkt_type_t
{
HCL_XPKT_CODEIN,
HCL_XPKT_EXECUTE,
HCL_XPKT_CODEIN, /* [C]->[S] */
HCL_XPKT_EXECUTE, /* [C]->[S] command to execute the code input */
HCL_XPKT_CODEOUT, /* return value is passed over this? */
HCL_XPKT_STDIN,
HCL_XPKT_STDOUT,
HCL_XPKT_ERROR, /* [S]->[C] error indicator */
HCL_XPKT_RETVAL, /* [S]->[C] return value */
HCL_XPKT_LIST_WORKERS,
HCL_XPKT_KILL_WORKER,
HCL_XPKT_STDIN, /* [C]->[S] */
HCL_XPKT_STDOUT, /* [S]->[C] output to stdout */
HCL_XPKT_STDERR, /* [S]->[C] output to stderr or output data related to error */
HCL_XPKT_DISCONNECT
HCL_XPKT_LIST_WORKERS, /* [C]->[S] */
HCL_XPKT_KILL_WORKER, /* [C]->[S] */
HCL_XPKT_DISCONNECT /* [C]->[S], [S]->[C] */
};
typedef enum hcl_xpkt_type_t hcl_xpkt_type_t;
struct hcl_xpkt_hdr_t
{
hcl_uint8_t type;
hcl_uint8_t id;
hcl_uint8_t type; /* lower 4 bits represent the actual type.
the upper 4 bits are part of the length extending the length to 12 bits */
hcl_uint8_t len;
};
typedef struct hcl_xpkt_hdr_t hcl_xpkt_hdr_t;