Add missing send timeout man page
[ric-plt/lib/rmr.git] / doc / src / man / rmr_rts_msg.3.xfm
1 .if false
2 ==================================================================================
3         Copyright (c) 2019 Nokia 
4         Copyright (c) 2018-2019 AT&T Intellectual Property.
5
6    Licensed under the Apache License, Version 2.0 (the "License");
7    you may not use this file except in compliance with the License.
8    You may obtain a copy of the License at
9
10        http://www.apache.org/licenses/LICENSE-2.0
11
12    Unless required by applicable law or agreed to in writing, software
13    distributed under the License is distributed on an "AS IS" BASIS,
14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15    See the License for the specific language governing permissions and
16    limitations under the License.
17 ==================================================================================
18 .fi
19 .if false
20         Mnemonic        rmr_rts_msg_man.xfm
21         Abstract        The manual page for the rmr_rts_msg function.
22         Author          E. Scott Daniels
23         Date            28 January 2019
24 .fi
25
26 .** if formatting with tfm, the roff.im will cause roff output to be generated
27 .** if formatting with pfm, then pretty postscript will be generated
28 .gv e LIB lib
29 .if pfm
30         .im &{lib}/generic_ps.im
31 .ei
32         .gv e OUTPUT_RST use_rst
33         .if .ev &use_rst 1 = 
34                 .im &{lib}/rst.im
35         .ei
36                 .im &{lib}/roff.im
37         .fi
38 .fi
39
40 &line_len(6i)
41
42 &h1(RMR Library Functions)
43 &h2(NAME)
44         rmr_rts_msg
45
46 &h2(SYNOPSIS )
47 &indent
48 &ex_start
49 #include <rmr/rmr.h>
50
51 rmr_mbuf_t*  rmr_rts_msg( void* vctx, rmr_mbuf_t* msg );
52 &ex_end
53 &uindent
54
55 &h2(DESCRIPTION)
56 The &cw(rmr_rts_msg) function sends a message returning it to the endpoint
57 which sent the message rather than selecting an endpoint based on the 
58 message type and routing table. 
59 Other than this small difference, the behaviour is exactly the same as
60 &cw(rmr_send_msg.)
61
62 .** pull in common retry text
63 .im &{lib}/man/retry.im 
64
65 &h2(RETURN VALUE)
66 On success, a new message buffer, with an empty payload, is returned for the application
67 to use for the next send.
68 The state in this buffer will reflect the overall send operation state and should be
69 &cw(RMR_OK.)
70
71 &space
72 If the state in the returned buffer is anything other than &cw(UT_OK,) the user application 
73 may need to attempt a retransmission of the message, or take other action depending on the
74 setting of &cw(errno) as described below. 
75
76 &space
77 In the event of extreme failure, a NULL pointer is returned. In this case the value of 
78 &cw(errno) might be of some use, for documentation, but there will be little that the 
79 user application can do other than to move on.
80
81 &h2(ERRORS)
82 The following values may be passed back in the &ital(state) field of the returned message
83 buffer. 
84
85 &space
86 &beg_dlist(.75i : ^&bold_font )
87 &di(RMR_ERR_BADARG) The message buffer pointer did not refer to a valid message.
88 &di(RMR_ERR_NOHDR)  The header in the message buffer was not valid or corrupted.
89 &di(RMR_ERR_NOENDPT)  The message type in the message buffer did not map to a known endpoint.
90 &di(RMR_ERR_SENDFAILED)  The send failed; &cw(errno) has the possible reason.
91 &end_dlist
92
93 &space
94 The following values may be assigned to &cw(errno) on failure.
95 &beg_dlist(.75i : ^&bold_font )
96 &di(INVAL) Parameter(s) passed to the function were not valid, or the underlying message processing environment was unable to interpret the message.
97
98 &half_space
99 &di(ENOKEY) The header information in the message buffer was invalid.
100
101 &half_space
102 &di(ENXIO) No known endpoint for the message could be found.
103
104 &half_space
105 &di(EMSGSIZE) The underlying transport refused to accept the message because of a size value issue (message was not attempted to be sent).
106
107 &half_space
108 &di(EFAULT) The message referenced by the message buffer is corrupt (NULL pointer or bad internal length).
109
110 &half_space
111 &di(EBADF) Internal RMR error; information provided to the message transport environment was not valid.
112
113 &half_space
114 &di(ENOTSUP) Sending was not supported by the underlying message transport.
115
116 &half_space
117 &di(EFSM) The device is not in a state that can accept the message.
118
119 &half_space
120 &di(EAGAIN) The device is not able to accept a message for sending. The user application should attempt to resend.
121
122 &half_space
123 &di(EINTR) The operation was interrupted by delivery of a signal before the message was sent.
124
125 &half_space
126 &di(ETIMEDOUT) The underlying message environment timed out during the send process.
127
128 &half_space
129 &di(ETERM) The underlying message environment is in a shutdown state.
130 &end_dlist
131
132 &h2(EXAMPLE)
133
134 &h2(SEE ALSO )
135 .ju off
136 rmr_alloc_msg(3),
137 rmr_call(3),
138 rmr_free_msg(3),
139 rmr_init(3),
140 rmr_payload_size(3),
141 rmr_send_msg(3),
142 rmr_rcv_msg(3),
143 rmr_rcv_specific(3),
144 rmr_ready(3),
145 rmr_fib(3),
146 rmr_has_str(3),
147 rmr_set_stimeout(3),
148 rmr_tokenise(3),
149 rmr_mk_ring(3),
150 rmr_ring_free(3)
151 .ju on
152
153
154 .qu
155