Update.
[glibc.git] / nis / nis_intern.h
blobe714621f1b74536554e3f5137753ba1958346d52
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. */
20 #ifndef __NIS_INTERN_H
22 #define __NIS_INTERN_H
23 #include <features.h>
25 __BEGIN_DECLS
27 struct dir_binding
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 bool_t master_only; /* Is only binded to the master */
36 bool_t use_auth; /* Do we use AUTH ? */
37 bool_t use_udp; /* Do we use UDP ? */
38 time_t create; /* Binding creation time */
39 struct sockaddr_in addr; /* Server's IP address */
40 int socket; /* Server's local socket */
41 unsigned short port; /* Local port */
43 typedef struct dir_binding dir_binding;
45 struct nis_cb
47 nis_server *serv;
48 SVCXPRT *xprt;
49 int sock;
50 int nomore;
51 nis_error result;
52 int (*callback) (const_nis_name, const nis_object *, const void *);
53 const void *userdata;
55 typedef struct nis_cb nis_cb;
57 extern unsigned long inetstr2int __P ((const char *str));
58 extern long __nis_findfastest __P ((dir_binding *bind));
59 extern nis_error __do_niscall2 __P ((const nis_server *serv, u_int serv_len,
60 u_long prog, xdrproc_t xargs, caddr_t req,
61 xdrproc_t xres, caddr_t resp,
62 u_long flags, nis_cb *cb));
63 extern nis_error __do_niscall __P ((const_nis_name name, u_long prog,
64 xdrproc_t xargs, caddr_t req,
65 xdrproc_t xres, caddr_t resp,
66 u_long flags, nis_cb *cb));
67 extern AUTH *authdes_pk_create __P ((const char *, const netobj *, u_int,
68 struct sockaddr *, des_block *));
70 /* NIS+ callback */
71 extern nis_error __nis_do_callback __P ((struct dir_binding *bptr,
72 netobj *cookie, struct nis_cb *cb));
73 extern struct nis_cb *__nis_create_callback
74 __P ((int (*callback)(const_nis_name, const nis_object *, const void *),
75 const void *userdata, u_long flags));
76 extern nis_error __nis_destroy_callback __P ((struct nis_cb *cb));
78 __END_DECLS
80 #endif