1QB_IPCC_SEND(3) libqb Programmer's Manual QB_IPCC_SEND(3)
2
3
4
6 qb_ipcc_send - Send a message.
7
8
10 #include <qb/qbipcc.h>
11
12 ssize_t qb_ipcc_send(
13 qb_ipcc_connection_t *c, /* connection instance */
14 const void *msg_ptr, /* pointer to a message to send */
15 size_t msg_len /* the size of the message */
16 );
17
19 c connection instance
20
21 msg_ptr pointer to a message to send
22
23 msg_len the size of the message
24
27 (size sent, -errno == error)
28
30 the msg_ptr must include a qb_ipc_request_header at the top of the mes‐
31 sage. The server will read the size field to determine how much to
32 recv.
33
35 qb_ipcc_sendv_recv(3), qb_ipcc_recv(3), qb_ipcc_event_recv(3),
36 qb_ipcc_connect_async(3), qb_ipcc_fc_enable_max_set(3),
37 qb_ipcc_is_connected(3), qb_ipcc_connect_continue(3),
38 qb_ipcc_auth_get(3), qb_ipcc_sendv(3), qb_ipcc_context_set(3),
39 qb_ipcc_context_get(3), qb_ipcc_verify_dgram_max_msg_size(3),
40 qb_ipcc_get_buffer_size(3), qb_ipcc_connect(3), qb_ipcc_disconnect(3),
41 qb_ipcc_fd_get(3)
42
44 Copyright (C) 2010-2020 Red Hat, Inc.
45
46
47
48LIBQB 2023-07-21 QB_IPCC_SEND(3)