1 /* Copyright (c) 1997, 1998, 1999, 2004 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Thorsten Kukuk <kukuk@suse.de>, 1997.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
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 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
23 #include <rpcsvc/nis.h>
26 static const char cold_start_file
[] = "/var/nis/NIS_COLD_START";
29 readColdStartFile (void)
31 FILE *in
= fopen (cold_start_file
, "rc");
35 directory_obj
*obj
= calloc (1, sizeof (directory_obj
));
40 xdrstdio_create (&xdrs
, in
, XDR_DECODE
);
41 bool_t status
= _xdr_directory_obj (&xdrs
, obj
);
46 nis_free_directory (obj
);
55 libnsl_hidden_def (readColdStartFile
)
58 writeColdStartFile (const directory_obj
*obj
)
64 out
= fopen (cold_start_file
, "wb");
68 xdrstdio_create (&xdrs
, out
, XDR_ENCODE
);
69 status
= _xdr_directory_obj (&xdrs
, (directory_obj
*) obj
);
77 nis_read_obj (const char *name
)
84 in
= fopen (name
, "rb");
88 obj
= calloc (1, sizeof (nis_object
));
95 xdrstdio_create (&xdrs
, in
, XDR_DECODE
);
96 status
=_xdr_nis_object (&xdrs
, obj
);
104 nis_free_object (obj
);
110 nis_write_obj (const char *name
, const nis_object
*obj
)
116 out
= fopen (name
, "wb");
120 xdrstdio_create (&xdrs
, out
, XDR_ENCODE
);
121 status
= _xdr_nis_object (&xdrs
, (nis_object
*) obj
);