blob: d34e6b7aa0fdbe7d11a5f70d2fc51f178c60913d [file] [log] [blame]
E. Scott Daniels117030c2020-04-10 17:17:02 -04001
2
3.. This work is licensed under a Creative Commons Attribution 4.0 International License.
4.. SPDX-License-Identifier: CC-BY-4.0
5.. CAUTION: this document is generated from source in doc/src/rtd.
6.. To make changes edit the source and recompile the document.
7.. Do NOT make changes directly to .rst or .md files.
8
9
10============================================================================================
11Man Page: rmr_str2xact
12============================================================================================
13
14RMR Library Functions
15============================================================================================
16
17
18NAME
19--------------------------------------------------------------------------------------------
20
21rmr_str2xact
22
23SYNOPSIS
24--------------------------------------------------------------------------------------------
25
26
27::
28
29 #include <rmr/rmr.h>
30 int rmr_str2xact( rmr_mbuf_t* mbuf, unsigned char* src, int len )
31
32
33
34DESCRIPTION
35--------------------------------------------------------------------------------------------
36
37The rmr_str2xact function will copy the string pointed to by
38src to the transaction ID (xaction) field in the given
39message. The field is a fixed length, gated by the constant
40RMR_MAX_XID and if string length is larger than this value,
41then **nothing** will be copied. (Note, this differs slightly
42from the behaviour of the lrmr_bytes2xact() function.)
43
44
45RETURN VALUE
46--------------------------------------------------------------------------------------------
47
48On success, the value RMR_OK is returned. If the string
49cannot be copied to the message, the return value will be
50one of the errors listed below.
51
52ERRORS
53--------------------------------------------------------------------------------------------
54
55If the return value is not RMR_OK, then it will be set to
56one of the values below.
57
58
59RMR_ERR_BADARG
60
61 The message, or an internal portion of the message, was
62 corrupted or the pointer was invalid.
63
64
65RMR_ERR_OVERFLOW
66
67 The length passed in was larger than the maximum length of
68 the field; only a portion of the source bytes were copied.
69
70
71EXAMPLE
72--------------------------------------------------------------------------------------------
73
74
75SEE ALSO
76--------------------------------------------------------------------------------------------
77
78rmr_alloc_msg(3), rmr_bytes2meid(3), rmr_bytes2xact(3),
79rmr_call(3), rmr_free_msg(3), rmr_get_meid(3),
80rmr_get_rcvfd(3), rmr_get_xact(3), rmr_payload_size(3),
81rmr_send_msg(3), rmr_rcv_msg(3), rmr_rcv_specific(3),
82rmr_rts_msg(3), rmr_ready(3), rmr_fib(3), rmr_has_str(3),
83rmr_tokenise(3), rmr_mk_ring(3), rmr_ring_free(3),
84rmr_str2meid(3), rmr_wh_open(3), rmr_wh_send_msg(3)