]> git.ipfire.org Git - thirdparty/glibc.git/blob - nis/nis_intern.h
Update.
[thirdparty/glibc.git] / nis / nis_intern.h
1 /* Copyright (c) 1997, 1998 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.
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 #ifndef __NIS_INTERN_H
21
22 #define __NIS_INTERN_H
23 #include <features.h>
24
25 __BEGIN_DECLS
26
27 struct dir_binding
28 {
29 CLIENT *clnt; /* RPC CLIENT handle */
30 nis_server *server_val; /* List of servers */
31 u_int server_len; /* # of servers */
32 u_int server_used; /* Which server we are bind in the moment ? */
33 u_int current_ep; /* Which endpoint of the server are in use? */
34 u_int trys; /* How many server have we tried ? */
35 u_int class; /* From which class is server_val ? */
36 bool_t master_only; /* Is only binded to the master */
37 bool_t use_auth; /* Do we use AUTH ? */
38 bool_t use_udp; /* Do we use UDP ? */
39 struct sockaddr_in addr; /* Server's IP address */
40 int socket; /* Server's local socket */
41 };
42 typedef struct dir_binding dir_binding;
43
44 struct cache2_info
45 {
46 long server_used;
47 long current_ep;
48 long class;
49 };
50 typedef struct cache2_info cache2_info;
51
52 struct nis_cb
53 {
54 nis_server *serv;
55 SVCXPRT *xprt;
56 int sock;
57 int nomore;
58 nis_error result;
59 int (*callback) (const_nis_name, const nis_object *, const void *);
60 const void *userdata;
61 };
62 typedef struct nis_cb nis_cb;
63
64 extern unsigned long inetstr2int __P ((const char *str));
65 extern long __nis_findfastest __P ((dir_binding *bind));
66 extern nis_error __do_niscall2 __P ((const nis_server *serv, u_int serv_len,
67 u_long prog, xdrproc_t xargs, caddr_t req,
68 xdrproc_t xres, caddr_t resp,
69 u_long flags, nis_cb *cb,
70 cache2_info *cinfo));
71 extern nis_error __do_niscall __P ((const_nis_name name, u_long prog,
72 xdrproc_t xargs, caddr_t req,
73 xdrproc_t xres, caddr_t resp,
74 u_long flags, nis_cb *cb));
75
76 /* NIS+ callback */
77 extern nis_error __nis_do_callback __P ((struct dir_binding *bptr,
78 netobj *cookie, struct nis_cb *cb));
79 extern struct nis_cb *__nis_create_callback
80 __P ((int (*callback)(const_nis_name, const nis_object *, const void *),
81 const void *userdata, u_long flags));
82 extern nis_error __nis_destroy_callback __P ((struct nis_cb *cb));
83
84 #ifdef _LIBC
85 /* NIS+ Cache functions */
86 extern directory_obj *__nis_cache_search __P ((const_nis_name name,
87 u_long flags,
88 cache2_info *cinfo));
89 #endif
90
91 __END_DECLS
92
93 #endif