yet another round of internal name changes
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-11-04 23:23:20 +09:00
parent 238365e198
commit bcfe69feda
6 changed files with 95 additions and 95 deletions

View File

@ -572,7 +572,7 @@ static int print_handler (hcl_t* hcl, hcl_io_cmd_t cmd, void* arg)
case HCL_IO_WRITE:
{
worker_hcl_xtn_t* xtn = (worker_hcl_xtn_t*)hcl_getxtn(hcl);
hcl_io_outarg_t* outarg = (hcl_io_outarg_t*)arg;
hcl_io_udoarg_t* outarg = (hcl_io_udoarg_t*)arg;
if (hcl_server_proto_feed_reply(xtn->proto, outarg->ptr, outarg->len, 0) <= -1)
{
@ -591,7 +591,7 @@ static int print_handler (hcl_t* hcl, hcl_io_cmd_t cmd, void* arg)
case HCL_IO_WRITE_BYTES:
{
worker_hcl_xtn_t* xtn = (worker_hcl_xtn_t*)hcl_getxtn(hcl);
hcl_io_outarg_t* outarg = (hcl_io_outarg_t*)arg;
hcl_io_udoarg_t* outarg = (hcl_io_udoarg_t*)arg;
if (hcl_server_proto_feed_reply_bytes(xtn->proto, outarg->ptr, outarg->len, 0) <= -1)
{