]> sourceware.org Git - glibc.git/blame - nis/nis_ping.c
Update.
[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
a1129917
UD
26nis_ping (const_nis_name dirname, unsigned int utime,
27 const nis_object *dirobj)
51702635
UD
28{
29 nis_result *res = NULL;
30 nis_object *obj;
31 ping_args args;
a1129917 32 unsigned int i;
51702635
UD
33
34 if (dirname == NULL && dirobj == NULL)
35 abort ();
36
37 if (dirobj == NULL)
38 {
3996f34b 39 res = nis_lookup (dirname, MASTER_ONLY);
91eee4dd 40 if (NIS_RES_STATUS (res) != NIS_SUCCESS)
51702635
UD
41 return;
42 obj = res->objects.objects_val;
43 }
44 else
714a562f 45 obj = (nis_object *) dirobj;
51702635
UD
46
47 /* Check if obj is really a diryectory object */
dfd2257a 48 if (__type_of (obj) != NIS_DIRECTORY_OBJ)
3996f34b
UD
49 {
50 if (res != NULL)
51 nis_freeresult (res);
52 return;
53 }
51702635
UD
54
55 if (dirname == NULL)
56 args.dir = obj->DI_data.do_name;
57 else
714a562f 58 args.dir = (char *) dirname;
51702635
UD
59 args.stamp = utime;
60
91eee4dd
UD
61 /* Send the ping only to replicas */
62 for (i = 1; i < obj->DI_data.do_servers.do_servers_len; ++i)
43b0e40f 63 __do_niscall2 (&obj->DI_data.do_servers.do_servers_val[i], 1,
91eee4dd 64 NIS_PING, (xdrproc_t) _xdr_ping_args,
43b0e40f 65 (caddr_t) &args, (xdrproc_t) xdr_void,
e852e889 66 (caddr_t) NULL, 0, NULL);
51702635
UD
67 if (res)
68 nis_freeresult (res);
69}
This page took 0.059037 seconds and 5 git commands to generate.