1 /* Copyright (c) 1997 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.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 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.
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.
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. */
21 #include <rpcsvc/nis.h>
22 #include <rpcsvc/nislib.h>
23 #include "nis_intern.h"
26 nis_servstate (const nis_server
*serv
, const nis_tag
*tags
,
27 const int numtags
, nis_tag
**result
)
32 tagres
.tags
.tags_len
= 0;
33 tagres
.tags
.tags_val
= NULL
;
35 taglist
.tags
.tags_len
= numtags
;
36 taglist
.tags
.tags_val
= (nis_tag
*)tags
;
40 if (__do_niscall (NULL
, NIS_SERVSTATE
, (xdrproc_t
) xdr_nis_taglist
,
41 (caddr_t
) &taglist
, (xdrproc_t
) xdr_nis_taglist
,
42 (caddr_t
) &tagres
, 0) != RPC_SUCCESS
)
47 if (__do_niscall2 (serv
, 1, NIS_SERVSTATE
, (xdrproc_t
) xdr_nis_taglist
,
48 (caddr_t
) &taglist
, (xdrproc_t
) xdr_nis_taglist
,
49 (caddr_t
) &tagres
, 0) != RPC_SUCCESS
)
52 if (tagres
.tags
.tags_len
> 0)
56 result
= malloc (sizeof (nis_tag
*) * tagres
.tags
.tags_len
);
59 for (i
= 0; i
< tagres
.tags
.tags_len
; ++i
)
61 result
[i
] = malloc (sizeof (nis_tag
));
62 if (result
[i
] == NULL
)
64 result
[i
]->tag_val
= strdup (tagres
.tags
.tags_val
[i
].tag_val
);
65 result
[i
]->tag_type
= tagres
.tags
.tags_val
[i
].tag_type
;
73 nis_stats (const nis_server
*serv
, const nis_tag
*tags
,
74 const int numtags
, nis_tag
**result
)
79 tagres
.tags
.tags_len
= 0;
80 tagres
.tags
.tags_val
= NULL
;
82 taglist
.tags
.tags_len
= numtags
;
83 taglist
.tags
.tags_val
= (nis_tag
*)tags
;
87 if (__do_niscall (NULL
, NIS_STATUS
, (xdrproc_t
) xdr_nis_taglist
,
88 (caddr_t
) &taglist
, (xdrproc_t
) xdr_nis_taglist
,
89 (caddr_t
) &tagres
, 0) != RPC_SUCCESS
)
94 if (__do_niscall2 (serv
, 1, NIS_STATUS
, (xdrproc_t
) xdr_nis_taglist
,
95 (caddr_t
) &taglist
, (xdrproc_t
) xdr_nis_taglist
,
96 (caddr_t
) &tagres
, 0) != RPC_SUCCESS
)
99 if (tagres
.tags
.tags_len
> 0)
103 result
= malloc (sizeof (nis_tag
*) * tagres
.tags
.tags_len
);
106 for (i
= 0; i
< tagres
.tags
.tags_len
; ++i
)
108 result
[i
] = malloc (sizeof (nis_tag
));
109 if (result
[i
] == NULL
)
111 result
[i
]->tag_val
= strdup (tagres
.tags
.tags_val
[i
].tag_val
);
112 result
[i
]->tag_type
= tagres
.tags
.tags_val
[i
].tag_type
;
120 nis_freetags (nis_tag
*tags
, const int numtags
)
124 for (i
= 0; i
< numtags
; ++i
)
125 free (tags
->tag_val
);