about summary refs log tree commit diff
path: root/nss/getrpcbynumber_r.c
diff options
context:
space:
mode:
authorArjun Shankar <arjun@redhat.com>2023-10-02 14:55:25 +0200
committerArjun Shankar <arjun@redhat.com>2023-10-24 12:31:00 +0200
commit9b63a8ac404733851798680da1dc9f53ee70b64c (patch)
tree37ff05b0c5aec7403020fe60a14ddcbbb47c5b4e /nss/getrpcbynumber_r.c
parenta25a060c358358d61d683dc8e9aa9df91e877a35 (diff)
downloadglibc-9b63a8ac404733851798680da1dc9f53ee70b64c.tar.gz
glibc-9b63a8ac404733851798680da1dc9f53ee70b64c.tar.xz
glibc-9b63a8ac404733851798680da1dc9f53ee70b64c.zip
Move 'rpc' routines from 'inet' into 'nss'
The getrpcby* and getrpcent* routines are entry points for nss
functionality.  This commit moves them from the 'inet' subdirectory to
'nss'.  The Versions entries for these routines along with a test,
located in the 'sunrpc' subdirectory, are also moved into 'nss'.
Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
Diffstat (limited to 'nss/getrpcbynumber_r.c')
-rw-r--r--nss/getrpcbynumber_r.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/nss/getrpcbynumber_r.c b/nss/getrpcbynumber_r.c
new file mode 100644
index 0000000000..eb2ce8ff79
--- /dev/null
+++ b/nss/getrpcbynumber_r.c
@@ -0,0 +1,30 @@
+/* Copyright (C) 1996-2023 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
+
+#include <rpc/netdb.h>
+
+
+#define LOOKUP_TYPE		struct rpcent
+#define FUNCTION_NAME		getrpcbynumber
+#define DATABASE_NAME		rpc
+#define ADD_PARAMS		int number
+#define ADD_VARIABLES		number
+
+/* There is no nscd support for the rpc file.  */
+#undef	USE_NSCD
+
+#include "../nss/getXXbyYY_r.c"