blob: 93b5286b926eaf14aca3e5508a243c90b1651c22 [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_str2meid
12============================================================================================
13
14RMR Library Functions
15============================================================================================
16
17
18NAME
19--------------------------------------------------------------------------------------------
20
21rmr_str2meid
22
23SYNOPSIS
24--------------------------------------------------------------------------------------------
25
26
27::
28
29 #include <rmr/rmr.h>
30 int rmr_str2meid( rmr_mbuf_t* mbuf, unsigned char* src, int len )
31
32
33
34DESCRIPTION
35--------------------------------------------------------------------------------------------
36
37The rmr_str2meid function will copy the string pointed to by
38src to the managed entity ID (meid) field in the given
39message. The field is a fixed length, gated by the constant
40RMR_MAX_MEID and if string length is larger than this value,
41then **nothing** will be copied. (Note, this differs slightly
42from the behaviour of the lrmr_bytes2meid() function.)
43
44RETURN VALUE
45--------------------------------------------------------------------------------------------
46
47On success, the value RMR_OK is returned. If the string
48cannot be copied to the message, the return value will be one
49of the errors listed below.
50
51ERRORS
52--------------------------------------------------------------------------------------------
53
54If the return value is not RMR_OK, then it will be set to one
55of the values below.
56
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_call(3), rmr_free_msg(3),
79rmr_get_meid(3), rmr_get_rcvfd(3), rmr_payload_size(3),
80rmr_send_msg(3), rmr_rcv_msg(3), rmr_rcv_specific(3),
81rmr_rts_msg(3), rmr_ready(3), rmr_fib(3), rmr_has_str(3),
82rmr_tokenise(3), rmr_mk_ring(3), rmr_ring_free(3),
83rmr_bytes2meid(3), rmr_wh_open(3), rmr_wh_send_msg(3)