qb_ipcc_send - Man Page

Send a message.

Synopsis

#include <qb/qbipcc.h>

ssize_t qb_ipcc_send(
    qb_ipcc_connection_t   *c,        /* connection instance */
    const void             *msg_ptr,  /* pointer to a message to send */
    size_t                  msg_len   /* the size of the message */
);

Params

c       connection instance

msg_ptr pointer to a message to send

msg_len the size of the message

Description

Return Value

(size sent, -errno == error)

Note

the msg_ptr must include a qb_ipc_request_header at the top of the message. The server will read the size field to determine how much to recv.

See Also

qb_ipcc_sendv_recv(3), qb_ipcc_recv(3), qb_ipcc_event_recv(3), qb_ipcc_connect_async(3), qb_ipcc_fc_enable_max_set(3), qb_ipcc_is_connected(3), qb_ipcc_connect_continue(3), qb_ipcc_auth_get(3), qb_ipcc_sendv(3), qb_ipcc_context_set(3), qb_ipcc_context_get(3), qb_ipcc_verify_dgram_max_msg_size(3), qb_ipcc_get_buffer_size(3), qb_ipcc_connect(3), qb_ipcc_disconnect(3), qb_ipcc_fd_get(3)

Referenced By

qb_ipcc_connect(3), qb_ipcc_context_get(3), qb_ipcc_context_set(3), qb_ipcc_disconnect(3), qb_ipcc_event_recv(3), qb_ipcc_fc_enable_max_set(3), qb_ipcc_fd_get(3), qb_ipcc_get_buffer_size(3), qbipcc.h(3), qb_ipcc_is_connected(3), qb_ipcc_recv(3), qb_ipcc_sendv(3), qb_ipcc_sendv_recv(3), qb_ipcc_verify_dgram_max_msg_size(3).

2023-07-21 libqb Programmer's Manual