1QB_IPCC_SENDV(3) libqb Programmer's Manual QB_IPCC_SENDV(3)
2
3
4
6 qb_ipcc_sendv - Send a message (iovec).
7
8
10 #include <qb/qbipcc.h>
11
12 ssize_t qb_ipcc_sendv(
13 qb_ipcc_connection_t *c, /* connection instance */
14 const struct iovec *iov, /* pointer to an iovec struct to send */
15 size_t iov_len /* the number of iovecs used */
16 );
17
19 c connection instance
20
21 iov pointer to an iovec struct to send
22
23 iov_len the number of iovecs used
24
27 (size sent, -errno == error)
28
30 the iov[0] must be a qb_ipc_request_header. The server will read the
31 size field to determine how much to recv.
32
34 qb_ipcc_send(3), qb_ipcc_sendv_recv(3), qb_ipcc_recv(3),
35 qb_ipcc_event_recv(3), qb_ipcc_connect_async(3),
36 qb_ipcc_fc_enable_max_set(3), qb_ipcc_is_connected(3),
37 qb_ipcc_connect_continue(3), qb_ipcc_auth_get(3),
38 qb_ipcc_context_set(3), qb_ipcc_context_get(3),
39 qb_ipcc_verify_dgram_max_msg_size(3), qb_ipcc_get_buffer_size(3),
40 qb_ipcc_connect(3), qb_ipcc_disconnect(3), qb_ipcc_fd_get(3)
41
43 Copyright (C) 2010-2020 Red Hat, Inc.
44
45
46
47LIBQB 2022-03-23 QB_IPCC_SENDV(3)