Deleted Added
full compact
nis_db.h (32555) nis_db.h (32556)
1/*
2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part. Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user.
8 *

--- 11 unchanged lines hidden (view full) ---

20 *
21 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
22 * or profits or other special, indirect and consequential damages, even if
23 * Sun has been advised of the possibility of such damages.
24 *
25 * Sun Microsystems, Inc.
26 * 2550 Garcia Avenue
27 * Mountain View, California 94043
1/*
2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part. Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user.
8 *

--- 11 unchanged lines hidden (view full) ---

20 *
21 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
22 * or profits or other special, indirect and consequential damages, even if
23 * Sun has been advised of the possibility of such damages.
24 *
25 * Sun Microsystems, Inc.
26 * 2550 Garcia Avenue
27 * Mountain View, California 94043
28 *
29 * $Id$
28 */
29
30/*
31 * Copyright (c) 1991, by Sun Microsystems Inc.
32 */
33
34/*
35 * This header file defines the interface to the NIS database. All

--- 37 unchanged lines hidden (view full) ---

73
74enum db_action {
75 DB_LOOKUP = 0,
76 DB_REMOVE = 1,
77 DB_ADD = 2,
78 DB_FIRST = 3,
79 DB_NEXT = 4,
80 DB_ALL = 5,
30 */
31
32/*
33 * Copyright (c) 1991, by Sun Microsystems Inc.
34 */
35
36/*
37 * This header file defines the interface to the NIS database. All

--- 37 unchanged lines hidden (view full) ---

75
76enum db_action {
77 DB_LOOKUP = 0,
78 DB_REMOVE = 1,
79 DB_ADD = 2,
80 DB_FIRST = 3,
81 DB_NEXT = 4,
82 DB_ALL = 5,
81 DB_RESET_NEXT = 6,
83 DB_RESET_NEXT = 6
82};
83typedef enum db_action db_action;
84
85typedef entry_obj *entry_object_p;
86
87typedef struct {
88 u_int db_next_desc_len;
89 char *db_next_desc_val;

--- 71 unchanged lines hidden ---
84};
85typedef enum db_action db_action;
86
87typedef entry_obj *entry_object_p;
88
89typedef struct {
90 u_int db_next_desc_len;
91 char *db_next_desc_val;

--- 71 unchanged lines hidden ---