1 .\" Copyright 2008, Linux Foundation, written by Michael Kerrisk
2 .\" <mtk.manpages@gmail.com>
4 .\" %%%LICENSE_START(VERBATIM)
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date. The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein. The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
26 .TH GETRPCENT_R 3 2021-03-22 "GNU" "Linux Programmer's Manual"
28 getrpcent_r, getrpcbyname_r, getrpcbynumber_r \- get
34 .BI "int getrpcent_r(struct rpcent *" result_buf ", char *" buf ,
35 .BI " size_t " buflen ", struct rpcent **" result );
36 .BI "int getrpcbyname_r(const char *" name ,
37 .BI " struct rpcent *" result_buf ", char *" buf ,
38 .BI " size_t " buflen ", struct rpcent **" result );
39 .BI "int getrpcbynumber_r(int " number ,
40 .BI " struct rpcent *" result_buf ", char *" buf ,
41 .BI " size_t " buflen ", struct rpcent **" result );
45 Feature Test Macro Requirements for glibc (see
46 .BR feature_test_macros (7)):
50 .BR getrpcbyname_r (),
51 .BR getrpcbynumber_r ():
55 Glibc 2.19 and earlier:
56 _BSD_SOURCE || _SVID_SOURCE
61 .BR getrpcbyname_r (),
63 .BR getrpcbynumber_r ()
64 functions are the reentrant equivalents of, respectively,
68 .BR getrpcbynumber (3).
69 They differ in the way that the
71 structure is returned,
72 and in the function calling signature and return value.
73 This manual page describes just the differences from
74 the nonreentrant functions.
76 Instead of returning a pointer to a statically allocated
78 structure as the function result,
79 these functions copy the structure into the location pointed to by
84 array is used to store the string fields pointed to by the returned
87 (The nonreentrant functions allocate these strings in static storage.)
88 The size of this array is specified in
92 is too small, the call fails with the error
94 and the caller must try again with a larger buffer.
95 (A buffer of length 1024 bytes should be sufficient for most applications.)
96 .\" I can find no information on the required/recommended buffer size;
97 .\" the nonreentrant functions use a 1024 byte buffer -- mtk.
99 If the function call successfully obtains an RPC record, then
107 On success, these functions return 0.
108 On error, they return one of the positive error numbers listed in ERRORS.
110 On error, record not found
111 .RB ( getrpcbyname_r (),
112 .BR getrpcbynumber_r ()),
114 .RB ( getrpcent_r ())
120 .RB ( getrpcent_r ())
121 No more records in database.
126 Try again with a larger buffer
130 For an explanation of the terms used in this section, see
138 Interface Attribute Value
141 .BR getrpcbyname_r (),
142 .BR getrpcbynumber_r ()
143 T} Thread safety MT-Safe locale
149 These functions are GNU extensions.
150 Functions with similar names exist on some other systems,
151 though typically with different calling signatures.