* sysdeps/m68k/dl-machine.h (_dl_start_user): Pass correct
[glibc.git] / nis / nis_intern.h
blob1d6f017c2cba1b4324344d559a95d2a0a8bcf4ba
1 /* Copyright (c) 1997, 1998, 1999 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 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. */
20 #ifndef __NIS_INTERN_H
22 #define __NIS_INTERN_H
23 #include <features.h>
25 __BEGIN_DECLS
27 struct nis_cb
29 nis_server *serv;
30 SVCXPRT *xprt;
31 int sock;
32 int nomore;
33 nis_error result;
34 int (*callback) (const_nis_name, const nis_object *, const void *);
35 const void *userdata;
37 typedef struct nis_cb nis_cb;
39 extern unsigned long int inetstr2int (const char *str);
40 extern long int __nis_findfastest (dir_binding *bind);
41 extern nis_error __do_niscall2 (const nis_server *serv, u_int serv_len,
42 u_long prog, xdrproc_t xargs, caddr_t req,
43 xdrproc_t xres, caddr_t resp,
44 unsigned int flags, nis_cb *cb);
45 extern nis_error __do_niscall (const_nis_name name, u_long prog,
46 xdrproc_t xargs, caddr_t req,
47 xdrproc_t xres, caddr_t resp,
48 unsigned int flags, nis_cb *cb);
50 /* NIS+ callback */
51 extern nis_error __nis_do_callback (struct dir_binding *bptr,
52 netobj *cookie, struct nis_cb *cb);
53 extern struct nis_cb *__nis_create_callback
54 (int (*callback)(const_nis_name, const nis_object *, const void *),
55 const void *userdata, unsigned int flags);
56 extern nis_error __nis_destroy_callback (struct nis_cb *cb);
58 __END_DECLS
60 #endif