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