]> git.ipfire.org Git - thirdparty/glibc.git/blame - nis/nis_ping.c
Update.
[thirdparty/glibc.git] / nis / nis_ping.c
CommitLineData
ac9f45cf 1/* Copyright (c) 1997, 1998 Free Software Foundation, Inc.
51702635
UD
2 This file is part of the GNU C Library.
3 Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1997.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
14
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
19
20#include <rpcsvc/nis.h>
91eee4dd
UD
21
22#include "nis_xdr.h"
51702635
UD
23#include "nis_intern.h"
24
25void
26nis_ping (const_nis_name dirname, u_long utime, const nis_object *dirobj)
27{
28 nis_result *res = NULL;
29 nis_object *obj;
30 ping_args args;
31 u_int i;
32
33 if (dirname == NULL && dirobj == NULL)
34 abort ();
35
36 if (dirobj == NULL)
37 {
3996f34b 38 res = nis_lookup (dirname, MASTER_ONLY);
91eee4dd 39 if (NIS_RES_STATUS (res) != NIS_SUCCESS)
51702635
UD
40 return;
41 obj = res->objects.objects_val;
42 }
43 else
714a562f 44 obj = (nis_object *) dirobj;
51702635
UD
45
46 /* Check if obj is really a diryectory object */
dfd2257a 47 if (__type_of (obj) != NIS_DIRECTORY_OBJ)
3996f34b
UD
48 {
49 if (res != NULL)
50 nis_freeresult (res);
51 return;
52 }
51702635
UD
53
54 if (dirname == NULL)
55 args.dir = obj->DI_data.do_name;
56 else
714a562f 57 args.dir = (char *) dirname;
51702635
UD
58 args.stamp = utime;
59
91eee4dd
UD
60 /* Send the ping only to replicas */
61 for (i = 1; i < obj->DI_data.do_servers.do_servers_len; ++i)
43b0e40f 62 __do_niscall2 (&obj->DI_data.do_servers.do_servers_val[i], 1,
91eee4dd 63 NIS_PING, (xdrproc_t) _xdr_ping_args,
43b0e40f 64 (caddr_t) &args, (xdrproc_t) xdr_void,
e852e889 65 (caddr_t) NULL, 0, NULL);
51702635
UD
66 if (res)
67 nis_freeresult (res);
68}