]> git.ipfire.org Git - thirdparty/glibc.git/blame - nis/nis_intern.h
Implement new mode for NIS passwd.adjunct.byname table.
[thirdparty/glibc.git] / nis / nis_intern.h
CommitLineData
2d571cd1 1/* Copyright (c) 1997,1998,1999,2000,2001,2006 Free Software Foundation, Inc.
e61abf83 2 This file is part of the GNU C Library.
d8cf93f4 3 Contributed by Thorsten Kukuk <kukuk@suse.de>, 1997.
e61abf83
UD
4
5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
e61abf83
UD
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
41bdb6e2 13 Lesser General Public License for more details.
e61abf83 14
41bdb6e2
AJ
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
e61abf83
UD
19
20#ifndef __NIS_INTERN_H
21
22#define __NIS_INTERN_H
23#include <features.h>
24
495818ce
UD
25/* Configurable parameters for pinging NIS servers: */
26
27/* Number of retries. */
28#ifndef __NIS_PING_RETRY
29# define __NIS_PING_RETRY 2
30#endif
31/* Initial timeout in seconds. */
32#ifndef __NIS_PING_TIMEOUT_START
33# define __NIS_PING_TIMEOUT_START 3
34#endif
35/* Timeout increment for retries in seconds. */
36#ifndef __NIS_PING_TIMEOUT_INCREMENT
37# define __NIS_PING_TIMEOUT_INCREMENT 3
38#endif
39
40
e61abf83
UD
41__BEGIN_DECLS
42
650425ce
UD
43struct nis_cb
44 {
45 nis_server *serv;
46 SVCXPRT *xprt;
47 int sock;
48 int nomore;
49 nis_error result;
50 int (*callback) (const_nis_name, const nis_object *, const void *);
51 const void *userdata;
52 };
53typedef struct nis_cb nis_cb;
54
d8cf93f4
UD
55extern unsigned long int inetstr2int (const char *str);
56extern long int __nis_findfastest (dir_binding *bind);
57extern nis_error __do_niscall2 (const nis_server *serv, u_int serv_len,
58 u_long prog, xdrproc_t xargs, caddr_t req,
59 xdrproc_t xres, caddr_t resp,
60 unsigned int flags, nis_cb *cb);
61extern nis_error __do_niscall (const_nis_name name, u_long prog,
62 xdrproc_t xargs, caddr_t req,
63 xdrproc_t xres, caddr_t resp,
64 unsigned int flags, nis_cb *cb);
23bab906
AJ
65extern nis_error __do_niscall3 (dir_binding *dbp, u_long prog,
66 xdrproc_t xargs, caddr_t req,
67 xdrproc_t xres, caddr_t resp,
68 unsigned int flags, nis_cb *cb);
2d571cd1 69libnsl_hidden_proto (__do_niscall3)
2d7da676 70
ed073f0e
AJ
71extern u_short __pmap_getnisport (struct sockaddr_in *address, u_long program,
72 u_long version, u_int protocol);
73
650425ce 74/* NIS+ callback */
d8cf93f4
UD
75extern nis_error __nis_do_callback (struct dir_binding *bptr,
76 netobj *cookie, struct nis_cb *cb);
650425ce 77extern struct nis_cb *__nis_create_callback
d8cf93f4
UD
78 (int (*callback)(const_nis_name, const nis_object *, const void *),
79 const void *userdata, unsigned int flags);
80extern nis_error __nis_destroy_callback (struct nis_cb *cb);
650425ce 81
e61abf83
UD
82__END_DECLS
83
84#endif