Add empty file to prevent the version from libm-ieee754 be compiled
[glibc/history.git] / nis / nis_intern.h
blobfdc392ad7fd0573fc66240574108f64fecad9165
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 extern unsigned long inetstr2int __P ((const char *str));
46 extern long __nis_findfastest __P ((dir_binding *bind));
47 extern nis_error __do_niscall2 __P ((const nis_server *serv, u_int serv_len,
48 u_long prog, xdrproc_t xargs, caddr_t req,
49 xdrproc_t xres, caddr_t resp,
50 u_long flags));
51 extern nis_error __do_niscall __P ((const_nis_name name, u_long prog,
52 xdrproc_t xargs, caddr_t req,
53 xdrproc_t xres, caddr_t resp,
54 u_long flags));
55 #if defined (HAVE_SECURE_RPC)
56 extern AUTH *authdes_pk_create __P ((const char *, const netobj *, u_int,
57 struct sockaddr *, des_block *));
58 #endif
60 /* NIS+ cache */
61 extern directory_obj *__cache_search __P ((const_nis_name name));
62 extern nis_error __cache_add __P ((fd_result *));
64 __END_DECLS
66 #endif