diff options
Diffstat (limited to 'nis/rpcsvc')
-rw-r--r-- | nis/rpcsvc/nis.h | 101 | ||||
-rw-r--r-- | nis/rpcsvc/nis.x | 34 | ||||
-rw-r--r-- | nis/rpcsvc/nis_callback.h | 10 | ||||
-rw-r--r-- | nis/rpcsvc/nis_object.x | 25 | ||||
-rw-r--r-- | nis/rpcsvc/nislib.h | 52 | ||||
-rw-r--r-- | nis/rpcsvc/yp.h | 46 | ||||
-rw-r--r-- | nis/rpcsvc/yp_prot.h | 56 | ||||
-rw-r--r-- | nis/rpcsvc/ypupd.h | 12 |
8 files changed, 170 insertions, 166 deletions
diff --git a/nis/rpcsvc/nis.h b/nis/rpcsvc/nis.h index 3148a8d..151b439 100644 --- a/nis/rpcsvc/nis.h +++ b/nis/rpcsvc/nis.h @@ -72,6 +72,7 @@ __BEGIN_DECLS #define NIS_PK_DH 1 #define NIS_PK_RSA 2 #define NIS_PK_KERB 3 +#define NIS_PK_DHEXT 4 struct nis_attr { char *zattr_ndx; @@ -118,7 +119,7 @@ enum nstype { typedef enum nstype nstype; struct oar_mask { - u_long oa_rights; + u_int oa_rights; zotypes oa_otype; }; typedef struct oar_mask oar_mask; @@ -136,7 +137,7 @@ struct nis_server { u_int ep_len; endpoint *ep_val; } ep; - u_long key_type; + u_int key_type; netobj pkey; }; typedef struct nis_server nis_server; @@ -148,7 +149,7 @@ struct directory_obj { u_int do_servers_len; nis_server *do_servers_val; } do_servers; - u_long do_ttl; + uint32_t do_ttl; struct { u_int do_armask_len; oar_mask *do_armask_val; @@ -163,7 +164,7 @@ typedef struct directory_obj directory_obj; #define EN_ASN1 64 struct entry_col { - u_long ec_flags; + u_int ec_flags; struct { u_int ec_value_len; char *ec_value_val; @@ -181,7 +182,7 @@ struct entry_obj { typedef struct entry_obj entry_obj; struct group_obj { - u_long gr_flags; + u_int gr_flags; struct { u_int gr_members_len; nis_name *gr_members_val; @@ -209,8 +210,8 @@ typedef struct link_obj link_obj; struct table_col { char *tc_name; - u_long tc_flags; - u_long tc_rights; + u_int tc_flags; + u_int tc_rights; }; typedef struct table_col table_col; @@ -243,8 +244,8 @@ struct objdata { typedef struct objdata objdata; struct nis_oid { - u_long ctime; - u_long mtime; + uint32_t ctime; + uint32_t mtime; }; typedef struct nis_oid nis_oid; @@ -254,8 +255,8 @@ struct nis_object { nis_name zo_owner; nis_name zo_group; nis_name zo_domain; - u_long zo_access; - u_long zo_ttl; + u_int zo_access; + uint32_t zo_ttl; objdata zo_data; }; typedef struct nis_object nis_object; @@ -321,10 +322,10 @@ struct nis_result { nis_object *objects_val; } objects; netobj cookie; - u_long zticks; - u_long dticks; - u_long aticks; - u_long cticks; + uint32_t zticks; + uint32_t dticks; + uint32_t aticks; + uint32_t cticks; }; typedef struct nis_result nis_result; @@ -343,7 +344,7 @@ struct ib_request { u_int ibr_srch_len; nis_attr *ibr_srch_val; } ibr_srch; - u_long ibr_flags; + u_int ibr_flags; struct { u_int ibr_obj_len; nis_object *ibr_obj_val; @@ -352,14 +353,14 @@ struct ib_request { u_int ibr_cbhost_len; nis_server *ibr_cbhost_val; } ibr_cbhost; - u_long ibr_bufsize; + u_int ibr_bufsize; netobj ibr_cookie; }; typedef struct ib_request ib_request; struct ping_args { nis_name dir; - u_long stamp; + uint32_t stamp; }; typedef struct ping_args ping_args; @@ -377,7 +378,7 @@ enum log_entry_t { typedef enum log_entry_t log_entry_t; struct log_entry { - u_long le_time; + uint32_t le_time; log_entry_t le_type; nis_name le_princp; nis_name le_name; @@ -401,13 +402,13 @@ typedef struct log_result log_result; struct cp_result { nis_error cp_status; - u_long cp_zticks; - u_long cp_dticks; + uint32_t cp_zticks; + uint32_t cp_dticks; }; typedef struct cp_result cp_result; struct nis_tag { - u_long tag_type; + u_int tag_type; char *tag_val; }; typedef struct nis_tag nis_tag; @@ -422,7 +423,7 @@ typedef struct nis_taglist nis_taglist; struct dump_args { nis_name da_dir; - u_long da_time; + uint32_t da_time; struct { u_int da_cbhost_len; nis_server *da_cbhost_val; @@ -532,78 +533,78 @@ typedef enum name_pos name_pos; #ifndef __nis_3_h #define __nis_3_h -#define NIS_PROG ((u_long)100300) -#define NIS_VERSION ((u_long)3) +#define NIS_PROG 100300 +#define NIS_VERSION 3 -#define NIS_LOOKUP ((u_long)1) +#define NIS_LOOKUP 1 extern nis_result * nis_lookup_3 __P ((ns_request *, CLIENT *)); extern nis_result * nis_lookup_3_svc __P ((ns_request *, struct svc_req *)); -#define NIS_ADD ((u_long)2) +#define NIS_ADD 2 extern nis_result * nis_add_3 __P ((ns_request *, CLIENT *)); extern nis_result * nis_add_3_svc __P ((ns_request *, struct svc_req *)); -#define NIS_MODIFY ((u_long)3) +#define NIS_MODIFY 3 extern nis_result * nis_modify_3 __P ((ns_request *, CLIENT *)); extern nis_result * nis_modify_3_svc __P ((ns_request *, struct svc_req *)); -#define NIS_REMOVE ((u_long)4) +#define NIS_REMOVE 4 extern nis_result * nis_remove_3 __P ((ns_request *, CLIENT *)); extern nis_result * nis_remove_3_svc __P ((ns_request *, struct svc_req *)); -#define NIS_IBLIST ((u_long)5) +#define NIS_IBLIST 5 extern nis_result * nis_iblist_3 __P ((ib_request *, CLIENT *)); extern nis_result * nis_iblist_3_svc __P ((ib_request *, struct svc_req *)); -#define NIS_IBADD ((u_long)6) +#define NIS_IBADD 6 extern nis_result * nis_ibadd_3 __P ((ib_request *, CLIENT *)); extern nis_result * nis_ibadd_3_svc __P ((ib_request *, struct svc_req *)); -#define NIS_IBMODIFY ((u_long)7) +#define NIS_IBMODIFY 7 extern nis_result * nis_ibmodify_3 __P ((ib_request *, CLIENT *)); extern nis_result * nis_ibmodify_3_svc __P ((ib_request *, struct svc_req *)); -#define NIS_IBREMOVE ((u_long)8) +#define NIS_IBREMOVE 8 extern nis_result * nis_ibremove_3 __P ((ib_request *, CLIENT *)); extern nis_result * nis_ibremove_3_svc __P ((ib_request *, struct svc_req *)); -#define NIS_IBFIRST ((u_long)9) +#define NIS_IBFIRST 9 extern nis_result * nis_ibfirst_3 __P ((ib_request *, CLIENT *)); extern nis_result * nis_ibfirst_3_svc __P ((ib_request *, struct svc_req *)); -#define NIS_IBNEXT ((u_long)10) +#define NIS_IBNEXT 10 extern nis_result * nis_ibnext_3 __P ((ib_request *, CLIENT *)); extern nis_result * nis_ibnext_3_svc __P ((ib_request *, struct svc_req *)); -#define NIS_FINDDIRECTORY ((u_long)12) +#define NIS_FINDDIRECTORY 12 extern fd_result * nis_finddirectory_3 __P ((fd_args *, CLIENT *)); extern fd_result * nis_finddirectory_3_svc __P ((fd_args *, struct svc_req *)); -#define NIS_STATUS ((u_long)14) +#define NIS_STATUS 14 extern nis_taglist * nis_status_3 __P ((nis_taglist *, CLIENT *)); extern nis_taglist * nis_status_3_svc __P ((nis_taglist *, struct svc_req *)); -#define NIS_DUMPLOG ((u_long)15) +#define NIS_DUMPLOG 15 extern log_result * nis_dumplog_3 __P ((dump_args *, CLIENT *)); extern log_result * nis_dumplog_3_svc __P ((dump_args *, struct svc_req *)); -#define NIS_DUMP ((u_long)16) +#define NIS_DUMP 16 extern log_result * nis_dump_3 __P ((dump_args *, CLIENT *)); extern log_result * nis_dump_3_svc __P ((dump_args *, struct svc_req *)); -#define NIS_CALLBACK ((u_long)17) +#define NIS_CALLBACK 17 extern bool_t * nis_callback_3 __P ((netobj *, CLIENT *)); extern bool_t * nis_callback_3_svc __P ((netobj *, struct svc_req *)); -#define NIS_CPTIME ((u_long)18) -extern u_long * nis_cptime_3 __P ((nis_name *, CLIENT *)); -extern u_long * nis_cptime_3_svc __P ((nis_name *, struct svc_req *)); -#define NIS_CHECKPOINT ((u_long)19) +#define NIS_CPTIME 18 +extern uint32_t * nis_cptime_3 __P ((nis_name *, CLIENT *)); +extern uint32_t * nis_cptime_3_svc __P ((nis_name *, struct svc_req *)); +#define NIS_CHECKPOINT 19 extern cp_result * nis_checkpoint_3 __P ((nis_name *, CLIENT *)); extern cp_result * nis_checkpoint_3_svc __P ((nis_name *, struct svc_req *)); -#define NIS_PING ((u_long)20) +#define NIS_PING 20 extern void * nis_ping_3 __P ((ping_args *, CLIENT *)); extern void * nis_ping_3_svc __P ((ping_args *, struct svc_req *)); -#define NIS_SERVSTATE ((u_long)21) +#define NIS_SERVSTATE 21 extern nis_taglist * nis_servstate_3 __P ((nis_taglist *, CLIENT *)); extern nis_taglist * nis_servstate_3_svc __P ((nis_taglist *, struct svc_req *)); -#define NIS_MKDIR ((u_long)22) +#define NIS_MKDIR 22 extern nis_error * nis_mkdir_3 __P ((nis_name *, CLIENT *)); extern nis_error * nis_mkdir_3_svc __P ((nis_name *, struct svc_req *)); -#define NIS_RMDIR ((u_long)23) +#define NIS_RMDIR 23 extern nis_error * nis_rmdir_3 __P ((nis_name *, CLIENT *)); extern nis_error * nis_rmdir_3_svc __P ((nis_name *, struct svc_req *)); -#define NIS_UPDKEYS ((u_long)24) +#define NIS_UPDKEYS 24 extern nis_error * nis_updkeys_3 __P ((nis_name *, CLIENT *)); extern nis_error * nis_updkeys_3_svc __P ((nis_name *, struct svc_req *)); __END_DECLS -#endif /* !_NIS_H_RPCGEN */ +#endif /* ! _RPCSVC_NIS_H */ diff --git a/nis/rpcsvc/nis.x b/nis/rpcsvc/nis.x index 2d19f37..93aa09f 100644 --- a/nis/rpcsvc/nis.x +++ b/nis/rpcsvc/nis.x @@ -123,10 +123,10 @@ struct nis_result { nis_error status; /* Status of the response */ nis_object objects<>; /* objects found */ netobj cookie; /* Cookie Data */ - u_long zticks; /* server ticks */ - u_long dticks; /* DBM ticks. */ - u_long aticks; /* Cache (accel) ticks */ - u_long cticks; /* Client ticks */ + uint32_t zticks; /* server ticks */ + uint32_t dticks; /* DBM ticks. */ + uint32_t aticks; /* Cache (accel) ticks */ + uint32_t cticks; /* Client ticks */ }; /* @@ -153,10 +153,10 @@ struct ns_request { struct ib_request { nis_name ibr_name; /* The name of the Table */ nis_attr ibr_srch<>; /* The search critereia */ - u_long ibr_flags; /* Optional flags */ + u_int ibr_flags; /* Optional flags */ nis_object ibr_obj<1>; /* optional object (add/modify) */ nis_server ibr_cbhost<1>; /* Optional callback info */ - u_long ibr_bufsize; /* Optional first/next bufsize */ + u_int ibr_bufsize; /* Optional first/next bufsize */ netobj ibr_cookie; /* The first/next cookie */ }; @@ -167,7 +167,7 @@ struct ib_request { */ struct ping_args { nis_name dir; /* Directory that had the change */ - u_long stamp; /* timestamp of the transaction */ + uint32_t stamp; /* timestamp of the transaction */ }; /* @@ -198,7 +198,7 @@ enum log_entry_t { * 'name'. */ struct log_entry { - u_long le_time; /* Time in seconds */ + uint32_t le_time; /* Time in seconds */ log_entry_t le_type; /* Type of log entry */ nis_name le_princp; /* Principal making the change */ nis_name le_name; /* Name of table/dir involved */ @@ -214,19 +214,19 @@ struct log_result { struct cp_result { nis_error cp_status; /* Status of the checkpoint */ - u_long cp_zticks; /* Service 'ticks' */ - u_long cp_dticks; /* Database 'ticks' */ + uint32_t cp_zticks; /* Service 'ticks' */ + uint32_t cp_dticks; /* Database 'ticks' */ }; /* * This structure defines a generic NIS tag list. The taglist contains - * zero or tags, each of which is a type and a value. (u_long). + * zero or tags, each of which is a type and a value. (u_int). * These are used to report statistics (see tag definitions below) * and to set or reset state variables. */ struct nis_tag { - u_long tag_type; /* Statistic tag (may vary) */ - string tag_val<1024>; /* Statistic value may also vary */ + u_int tag_type; /* Statistic tag (may vary) */ + string tag_val<>; /* Statistic value may also vary */ }; struct nis_taglist { @@ -235,7 +235,7 @@ struct nis_taglist { struct dump_args { nis_name da_dir; /* Directory to dump */ - u_long da_time; /* From this timestamp */ + uint32_t da_time; /* From this timestamp */ nis_server da_cbhost<1>; /* Callback to use. */ }; @@ -258,7 +258,7 @@ struct nis_bound_endpoint { endpoint ep; int generation; int rank; - u_long flags; + u_int flags; int hostnum; int epnum; nis_name uaddr; @@ -342,7 +342,7 @@ program NIS_PROG { bool NIS_CALLBACK(netobj) = 17; /* Return last update time for named dir */ - u_long NIS_CPTIME(nis_name) = 18; + uint32_t NIS_CPTIME(nis_name) = 18; /* Checkpoint directory or table named */ cp_result NIS_CHECKPOINT(nis_name) = 19; @@ -392,7 +392,7 @@ program NIS_PROG { %/* Structure for storing dynamically allocated static data */ %struct nis_sdata { % void *buf; /* Memory allocation pointer */ -% u_long size; /* Buffer size */ +% u_int size; /* Buffer size */ %}; % %/* Generic client creating flags */ diff --git a/nis/rpcsvc/nis_callback.h b/nis/rpcsvc/nis_callback.h index 526a633..106bd03 100644 --- a/nis/rpcsvc/nis_callback.h +++ b/nis/rpcsvc/nis_callback.h @@ -45,18 +45,18 @@ struct cback_data { }; typedef struct cback_data cback_data; -#define CB_PROG ((u_long)100302) -#define CB_VERS ((u_long)1) +#define CB_PROG 100302 +#define CB_VERS 1 -#define CBPROC_RECEIVE ((u_long)1) +#define CBPROC_RECEIVE 1 extern bool_t * cbproc_receive_1 __P ((cback_data *, CLIENT *)); extern bool_t * cbproc_receive_1_svc __P ((cback_data *, struct svc_req *)); -#define CBPROC_FINISH ((u_long)2) +#define CBPROC_FINISH 2 extern void * cbproc_finish_1 __P ((void *, CLIENT *)); extern void * cbproc_finish_1_svc __P ((void *, struct svc_req *)); -#define CBPROC_ERROR ((u_long)3) +#define CBPROC_ERROR 3 extern void * cbproc_error_1 __P ((nis_error *, CLIENT *)); extern void * cbproc_error_1_svc __P ((nis_error *, struct svc_req *)); extern int cb_prog_1_freeresult __P ((SVCXPRT *, xdrproc_t, caddr_t)); diff --git a/nis/rpcsvc/nis_object.x b/nis/rpcsvc/nis_object.x index 496a16a..ecd9f48 100644 --- a/nis/rpcsvc/nis_object.x +++ b/nis/rpcsvc/nis_object.x @@ -5,7 +5,7 @@ * All Rights Reserved. */ -%#pragma ident "@(#)nis_object.x 1.9 96/07/09 SMI" +%#pragma ident "@(#)nis_object.x 1.12 97/11/19 SMI" #if RPC_HDR % @@ -46,6 +46,7 @@ const NIS_PK_NONE = 0; /* no public key (unix/sys auth) */ const NIS_PK_DH = 1; /* Public key is Diffie-Hellman type */ const NIS_PK_RSA = 2; /* Public key if RSA type */ const NIS_PK_KERB = 3; /* Use kerberos style authentication */ +const NIS_PK_DHEXT = 4; /* Extended Diffie-Hellman for RPC-GSS */ /* * The fundamental name type of NIS. The name may consist of two parts, @@ -123,7 +124,7 @@ enum nstype { * administrator's approval. */ struct oar_mask { - u_long oa_rights; /* Access rights mask */ + u_int oa_rights; /* Access rights mask */ zotypes oa_otype; /* Object type */ }; @@ -141,7 +142,7 @@ struct endpoint { struct nis_server { nis_name name; /* Principal name of the server */ endpoint ep<>; /* Universal addr(s) for server */ - u_long key_type; /* Public key type */ + u_int key_type; /* Public key type */ netobj pkey; /* server's public key */ }; @@ -149,7 +150,7 @@ struct directory_obj { nis_name do_name; /* Name of the directory being served */ nstype do_type; /* one of NIS, DNS, IVY, YP, or X.500 */ nis_server do_servers<>; /* <0> == Primary name server */ - u_long do_ttl; /* Time To Live (for caches) */ + uint32_t do_ttl; /* Time To Live (for caches) */ oar_mask do_armask<>; /* Create/Destroy rights by object type */ }; @@ -169,7 +170,7 @@ const EN_MODIFIED = 8; /* Indicates entry is modified. */ const EN_ASN1 = 64; /* Means contents use ASN.1 encoding */ struct entry_col { - u_long ec_flags; /* Flags for this value */ + u_int ec_flags; /* Flags for this value */ opaque ec_value<>; /* It's textual value */ }; @@ -185,7 +186,7 @@ struct entry_obj { * name.directory and recursive groups are expressed as @groupname.directory */ struct group_obj { - u_long gr_flags; /* Flags controlling group */ + u_int gr_flags; /* Flags controlling group */ nis_name gr_members<>; /* List of names in group */ }; @@ -228,8 +229,8 @@ const TA_ASN1 = 64; /* Means contents use ASN.1 encoding */ struct table_col { string tc_name<64>; /* Column Name */ - u_long tc_flags; /* control flags */ - u_long tc_rights; /* Access rights mask */ + u_int tc_flags; /* control flags */ + u_int tc_rights; /* Access rights mask */ }; struct table_obj { @@ -280,8 +281,8 @@ union objdata switch (zotypes zo_type) { * new position and calculate the size. */ struct nis_oid { - u_long ctime; /* Time of objects creation */ - u_long mtime; /* Time of objects modification */ + uint32_t ctime; /* Time of objects creation */ + uint32_t mtime; /* Time of objects modification */ }; struct nis_object { @@ -290,8 +291,8 @@ struct nis_object { nis_name zo_owner; /* NIS name of object owner. */ nis_name zo_group; /* NIS name of access group. */ nis_name zo_domain; /* The administrator for the object */ - u_long zo_access; /* Access rights (owner, group, world) */ - u_long zo_ttl; /* Object's time to live in seconds. */ + u_int zo_access; /* Access rights (owner, group, world) */ + uint32_t zo_ttl; /* Object's time to live in seconds. */ objdata zo_data; /* Data structure for this type */ }; #if RPC_HDR diff --git a/nis/rpcsvc/nislib.h b/nis/rpcsvc/nislib.h index 60bf892..007123d 100644 --- a/nis/rpcsvc/nislib.h +++ b/nis/rpcsvc/nislib.h @@ -32,8 +32,8 @@ typedef const char *const_nis_name; * nis_lookup (name, flags) resolves a NIS+ name and returns a copy of * that object from a NIS+ server. * const nis_name name: name of the object to be resolved - * u_long flags: logically ORing zero or more flags (FOLLOW_LINKS, - * HARD_LOOKUP, [NO_CACHE], MASTER_ONLY, EXPAND_NAME) + * unsigned int flags: logically ORing zero or more flags (FOLLOW_LINKS, + * HARD_LOOKUP, [NO_CACHE], MASTER_ONLY, EXPAND_NAME) * * nis_add (name, obj) adds objects to the NIS+ namespace. * const nis_name name: fully qualified NIS+ name. @@ -52,7 +52,7 @@ typedef const char *const_nis_name; * nis_modify (name, obj) can change specific attributes of an object * that already exists in the namespace. */ -extern nis_result *nis_lookup __P ((const_nis_name name, u_long flags)); +extern nis_result *nis_lookup __P ((const_nis_name name, unsigned int flags)); extern nis_result *nis_add __P ((const_nis_name name, const nis_object *obj)); extern nis_result *nis_remove __P ((const_nis_name name, const nis_object *obj)); @@ -64,9 +64,9 @@ extern nis_result *nis_modify __P ((const_nis_name name, * nis_list (table_name, flags, callback(table_name, obj, userdata), userdata) * search a table in the NIS+ namespace. * const nis_name table_name: indexed name ([xx=yy],table.dir) - * u_long flags: logically ORing one or more flags (FOLLOW_LINKS, - * [FOLLOW_PATH], HARD_LOOKUP, [ALL_RESULTS], [NO_CACHE], - * MASTER_ONLY, EXPAND_NAME, RETURN_RESULT) + * unsigned int flags: logically ORing one or more flags (FOLLOW_LINKS, + * [FOLLOW_PATH], HARD_LOOKUP, [ALL_RESULTS], [NO_CACHE], + * MASTER_ONLY, EXPAND_NAME, RETURN_RESULT) * callback(): callback is an optional pointer to a function that will * process the ENTRY type objects that are returned from the * search. If this pointer is NULL, then all entries that match @@ -80,14 +80,14 @@ extern nis_result *nis_modify __P ((const_nis_name name, * NIS+ table_name. * const nis_name table_name * const nis_object *obj - * u_long flags: 0, ADD_OVERWRITE, RETURN_RESULT + * unsigned int flags: 0, ADD_OVERWRITE, RETURN_RESULT * * nis_modify_entry (name, obj, flags) modifies an object identified by name. * const nis_name name: object identifier * const nis_object *obj: should point to an entry with the EN_MODIFIED * flag set in each column that contains new * information. - * u_long flags: 0, MOD_SAMEOBJ, RETURN_RESULT + * unsigned int flags: 0, MOD_SAMEOBJ, RETURN_RESULT * * nis_remove_entry (table_name, obj, flags) removes a set of entries * identified by table_name from the table. @@ -98,7 +98,7 @@ extern nis_result *nis_modify __P ((const_nis_name name, * is not the same as the cached object pointed to * by object then the operation will fail with an * NIS_NOTSAMEOBJ error - * u_long flags: 0, REM_MULTIPLE + * unsigned int flags: 0, REM_MULTIPLE * * nis_first_entry (table_name) fetches entries from a table one at a time. * const nis_name table_name @@ -109,19 +109,20 @@ extern nis_result *nis_modify __P ((const_nis_name name, * const netobj *cookie: The value of cookie from the nis_result structure * form the previous call. */ -extern nis_result *nis_list __P ((const_nis_name name, u_long flags, +extern nis_result *nis_list __P ((const_nis_name name, unsigned int flags, int (*callback)(const_nis_name table_name, const nis_object *obj, const void *userdata), const void *userdata)); extern nis_result *nis_add_entry __P ((const_nis_name table_name, - const nis_object *obj, u_long flags)); + const nis_object *obj, + unsigned int flags)); extern nis_result *nis_modify_entry __P ((const_nis_name name, const nis_object *obj, - u_long flags)); + unsigned int flags)); extern nis_result *nis_remove_entry __P ((const_nis_name table_name, const nis_object *obj, - u_long flags)); + unsigned int flags)); extern nis_result *nis_first_entry __P ((const_nis_name table_name)); extern nis_result *nis_next_entry __P ((const_nis_name table_name, const netobj *cookie)); @@ -188,7 +189,8 @@ extern nis_error nis_addmember __P ((const_nis_name member, const_nis_name group)); extern nis_error nis_removemember __P ((const_nis_name member, const_nis_name group)); -extern nis_error nis_creategroup __P ((const_nis_name group, u_long flags)); +extern nis_error nis_creategroup __P ((const_nis_name group, + unsigned int flags)); extern nis_error nis_destroygroup __P ((const_nis_name group)); extern void nis_print_group_entry __P ((const_nis_name group)); extern nis_error nis_verifygroup __P ((const_nis_name group)); @@ -196,7 +198,7 @@ extern nis_error nis_verifygroup __P ((const_nis_name group)); /* ** nis_ping */ -extern void nis_ping __P ((const_nis_name dirname, u_long utime, +extern void nis_ping __P ((const_nis_name dirname, uint32_t utime, const nis_object *dirobj)); extern nis_result *nis_checkpoint __P ((const_nis_name dirname)); @@ -204,7 +206,7 @@ extern nis_result *nis_checkpoint __P ((const_nis_name dirname)); ** nis_print (XXX INTERNAL FUNCTIONS, SHOULD NOT BE USED !!) */ extern void nis_print_result __P ((const nis_result *result)); -extern void nis_print_rights __P ((u_long rights)); +extern void nis_print_rights __P ((unsigned int rights)); extern void nis_print_directory __P ((const directory_obj *dirobj)); extern void nis_print_group __P ((const group_obj *grpobj)); extern void nis_print_table __P ((const table_obj *tblobj)); @@ -237,11 +239,11 @@ extern void nis_free_object __P ((nis_object *obj)); /* (XXX INTERNAL FUNCTIONS, SHOULD NOT BE USED !!) */ extern nis_name __nis_default_owner __P ((char *)); extern nis_name __nis_default_group __P ((char *)); -extern u_long __nis_default_ttl __P ((char *)); -extern u_long __nis_default_access __P ((char *, u_long)); +extern uint32_t __nis_default_ttl __P ((char *)); +extern unsigned int __nis_default_access __P ((char *, unsigned int)); extern fd_result *__nis_finddirectory __P ((directory_obj *, const_nis_name)); extern void __free_fdresult __P ((fd_result *)); -extern u_long __nis_hash __P ((const void *keyarg, register size_t len)); +extern uint32_t __nis_hash __P ((const void *keyarg, register size_t len)); /* NIS+ cache locking */ extern int __nis_lock_cache __P ((void)); @@ -254,11 +256,11 @@ struct dir_binding { CLIENT *clnt; /* RPC CLIENT handle */ nis_server *server_val; /* List of servers */ - u_int server_len; /* # of servers */ - u_int server_used; /* Which server we are bind in the moment ? */ - u_int current_ep; /* Which endpoint of the server are in use? */ - u_int trys; /* How many server have we tried ? */ - u_int class; /* From which class is server_val ? */ + unsigned int server_len; /* # of servers */ + unsigned int server_used; /* Which server we are bind in the moment ? */ + unsigned int current_ep; /* Which endpoint of the server are in use? */ + unsigned int trys; /* How many server have we tried ? */ + unsigned int class; /* From which class is server_val ? */ bool_t master_only; /* Is only binded to the master */ bool_t use_auth; /* Do we use AUTH ? */ bool_t use_udp; /* Do we use UDP ? */ @@ -268,7 +270,7 @@ struct dir_binding typedef struct dir_binding dir_binding; extern nis_error __nisbind_create __P ((dir_binding *, const nis_server *, - u_int, u_long)); + unsigned int, unsigned int)); extern nis_error __nisbind_connect __P ((dir_binding *)); extern nis_error __nisbind_next __P ((dir_binding *)); extern void __nisbind_destroy __P ((dir_binding *)); diff --git a/nis/rpcsvc/yp.h b/nis/rpcsvc/yp.h index 556e574..d951c15 100644 --- a/nis/rpcsvc/yp.h +++ b/nis/rpcsvc/yp.h @@ -237,70 +237,70 @@ typedef struct ypbind_setdom ypbind_setdom; __BEGIN_DECLS -#define YPPROG ((u_long)100004) -#define YPVERS ((u_long)2) +#define YPPROG 100004 +#define YPVERS 2 -#define YPPROC_NULL ((u_long)0) +#define YPPROC_NULL 0 extern void *ypproc_null_2 __P ((void *, CLIENT *)); extern void *ypproc_null_2_svc __P ((void *, struct svc_req *)); -#define YPPROC_DOMAIN ((u_long)1) +#define YPPROC_DOMAIN 1 extern bool_t *ypproc_domain_2 __P ((domainname *, CLIENT *)); extern bool_t *ypproc_domain_2_svc __P ((domainname *, struct svc_req *)); -#define YPPROC_DOMAIN_NONACK ((u_long)2) +#define YPPROC_DOMAIN_NONACK 2 extern bool_t *ypproc_domain_nonack_2 __P ((domainname *, CLIENT *)); extern bool_t *ypproc_domain_nonack_2_svc __P ((domainname *, struct svc_req *)); -#define YPPROC_MATCH ((u_long)3) +#define YPPROC_MATCH 3 extern ypresp_val *ypproc_match_2 __P ((ypreq_key *, CLIENT *)); extern ypresp_val *ypproc_match_2_svc __P ((ypreq_key *, struct svc_req *)); -#define YPPROC_FIRST ((u_long)4) +#define YPPROC_FIRST 4 extern ypresp_key_val *ypproc_first_2 __P ((ypreq_key *, CLIENT *)); extern ypresp_key_val *ypproc_first_2_svc __P ((ypreq_key *, struct svc_req *)); -#define YPPROC_NEXT ((u_long)5) +#define YPPROC_NEXT 5 extern ypresp_key_val *ypproc_next_2 __P ((ypreq_key *, CLIENT *)); extern ypresp_key_val *ypproc_next_2_svc __P ((ypreq_key *, struct svc_req *)); -#define YPPROC_XFR ((u_long)6) +#define YPPROC_XFR 6 extern ypresp_xfr *ypproc_xfr_2 __P ((ypreq_xfr *, CLIENT *)); extern ypresp_xfr *ypproc_xfr_2_svc __P ((ypreq_xfr *, struct svc_req *)); -#define YPPROC_CLEAR ((u_long)7) +#define YPPROC_CLEAR 7 extern void *ypproc_clear_2 __P ((void *, CLIENT *)); extern void *ypproc_clear_2_svc __P ((void *, struct svc_req *)); -#define YPPROC_ALL ((u_long)8) +#define YPPROC_ALL 8 extern ypresp_all *ypproc_all_2 __P ((ypreq_nokey *, CLIENT *)); extern ypresp_all *ypproc_all_2_svc __P ((ypreq_nokey *, struct svc_req *)); -#define YPPROC_MASTER ((u_long)9) +#define YPPROC_MASTER 9 extern ypresp_master *ypproc_master_2 __P ((ypreq_nokey *, CLIENT *)); extern ypresp_master *ypproc_master_2_svc __P ((ypreq_nokey *, struct svc_req *)); -#define YPPROC_ORDER ((u_long)10) +#define YPPROC_ORDER 10 extern ypresp_order *ypproc_order_2 __P ((ypreq_nokey *, CLIENT *)); extern ypresp_order *ypproc_order_2_svc __P ((ypreq_nokey *, struct svc_req *)); -#define YPPROC_MAPLIST ((u_long)11) +#define YPPROC_MAPLIST 11 extern ypresp_maplist *ypproc_maplist_2 __P ((domainname *, CLIENT *)); extern ypresp_maplist *ypproc_maplist_2_svc __P ((domainname *, struct svc_req *)); extern int ypprog_2_freeresult __P ((SVCXPRT *, xdrproc_t, caddr_t)); -#define YPPUSH_XFRRESPPROG ((u_long)0x40000000) -#define YPPUSH_XFRRESPVERS ((u_long)1) +#define YPPUSH_XFRRESPPROG (0x40000000) +#define YPPUSH_XFRRESPVERS 1 -#define YPPUSHPROC_NULL ((u_long)0) +#define YPPUSHPROC_NULL 0 extern void *yppushproc_null_1 __P ((void *, CLIENT *)); extern void *yppushproc_null_1_svc __P ((void *, struct svc_req *)); -#define YPPUSHPROC_XFRRESP ((u_long)1) +#define YPPUSHPROC_XFRRESP 1 extern void *yppushproc_xfrresp_1 __P ((yppushresp_xfr *, CLIENT *)); extern void *yppushproc_xfrresp_1_svc __P ((yppushresp_xfr *, struct svc_req *)); extern int yppush_xfrrespprog_1_freeresult __P ((SVCXPRT *, xdrproc_t, caddr_t)); -#define YPBINDPROG ((u_long)100007) -#define YPBINDVERS ((u_long)2) +#define YPBINDPROG 100007 +#define YPBINDVERS 2 -#define YPBINDPROC_NULL ((u_long)0) +#define YPBINDPROC_NULL 0 extern void *ypbindproc_null_2 __P ((void *, CLIENT *)); extern void *ypbindproc_null_2_svc __P ((void *, struct svc_req *)); -#define YPBINDPROC_DOMAIN ((u_long)1) +#define YPBINDPROC_DOMAIN 1 extern ypbind_resp *ypbindproc_domain_2 __P ((domainname *, CLIENT *)); extern ypbind_resp *ypbindproc_domain_2_svc __P ((domainname *, struct svc_req *)); -#define YPBINDPROC_SETDOM ((u_long)2) +#define YPBINDPROC_SETDOM 2 extern void *ypbindproc_setdom_2 __P ((ypbind_setdom *, CLIENT *)); extern void *ypbindproc_setdom_2_svc __P ((ypbind_setdom *, struct svc_req *)); extern int ypbindprog_2_freeresult __P ((SVCXPRT *, xdrproc_t, caddr_t)); diff --git a/nis/rpcsvc/yp_prot.h b/nis/rpcsvc/yp_prot.h index 82f93b4..158a9c1 100644 --- a/nis/rpcsvc/yp_prot.h +++ b/nis/rpcsvc/yp_prot.h @@ -60,13 +60,13 @@ __BEGIN_DECLS /* Program and version symbols, magic numbers */ -#define YPPROG ((u_long)100004) -#define YPVERS ((u_long)2) -#define YPVERS_ORIG ((u_long)1) +#define YPPROG 100004 +#define YPVERS 2 +#define YPVERS_ORIG 1 #define YPMAXRECORD 1024 -#define YPMAXDOMAIN 64 /* XXX orig. yp_prot.h defines ((u_long)256) */ +#define YPMAXDOMAIN 64 /* XXX orig. yp_prot.h defines 256 */ #define YPMAXMAP 64 -#define YPMAXPEER 64 /* XXX orig. yp_prot.h defines ((u_long)256) */ +#define YPMAXPEER 64 /* XXX orig. yp_prot.h defines 256 */ /* byte size of a large NIS packet */ #define YPMSGSZ 1600 @@ -198,19 +198,19 @@ struct ypresp_maplist { * of the protocol. */ -#define YPPROC_NULL ((u_long)0) -#define YPPROC_DOMAIN ((u_long)1) -#define YPPROC_DOMAIN_NONACK ((u_long)2) -#define YPPROC_MATCH ((u_long)3) -#define YPPROC_FIRST ((u_long)4) -#define YPPROC_NEXT ((u_long)5) -#define YPPROC_XFR ((u_long)6) -#define YPPROC_CLEAR ((u_long)7) -#define YPPROC_ALL ((u_long)8) -#define YPPROC_MASTER ((u_long)9) -#define YPPROC_ORDER ((u_long)10) -#define YPPROC_MAPLIST ((u_long)11) -#define YPPROC_NEWXFR ((u_long)12) +#define YPPROC_NULL 0 +#define YPPROC_DOMAIN 1 +#define YPPROC_DOMAIN_NONACK 2 +#define YPPROC_MATCH 3 +#define YPPROC_FIRST 4 +#define YPPROC_NEXT 5 +#define YPPROC_XFR 6 +#define YPPROC_CLEAR 7 +#define YPPROC_ALL 8 +#define YPPROC_MASTER 9 +#define YPPROC_ORDER 10 +#define YPPROC_MAPLIST 11 +#define YPPROC_NEWXFR 12 /* * Protocol between clients and NIS binder servers @@ -229,15 +229,15 @@ struct ypresp_maplist { /* Program and version symbols, magic numbers */ -#define YPBINDPROG ((u_long)100007) -#define YPBINDVERS ((u_long)2) -#define YPBINDVERS_ORIG ((u_long)1) +#define YPBINDPROG 100007 +#define YPBINDVERS 2 +#define YPBINDVERS_ORIG 1 /* Procedure symbols */ -#define YPBINDPROC_NULL ((u_long)0) -#define YPBINDPROC_DOMAIN ((u_long)1) -#define YPBINDPROC_SETDOM ((u_long)2) +#define YPBINDPROC_NULL 0 +#define YPBINDPROC_DOMAIN 1 +#define YPBINDPROC_SETDOM 2 /* * Response structure and overall result status codes. Success and failure * represent two separate response message types. @@ -282,13 +282,13 @@ struct ypbind_setdom { * is supplied to ypxfr as a command-line parameter when it * is activated by ypserv. */ -#define YPPUSHVERS ((u_long)1) -#define YPPUSHVERS_ORIG ((u_long)1) +#define YPPUSHVERS 1 +#define YPPUSHVERS_ORIG 1 /* Procedure symbols */ -#define YPPUSHPROC_NULL ((u_long)0) -#define YPPUSHPROC_XFRRESP ((u_long)1) +#define YPPUSHPROC_NULL 0 +#define YPPUSHPROC_XFRRESP 1 /* Status values for yppushresp_xfr.status */ diff --git a/nis/rpcsvc/ypupd.h b/nis/rpcsvc/ypupd.h index d7ce0d7..5b17b62 100644 --- a/nis/rpcsvc/ypupd.h +++ b/nis/rpcsvc/ypupd.h @@ -69,19 +69,19 @@ typedef struct ypdelete_args ypdelete_args; extern bool_t xdr_ypdelete_args __P ((XDR *, ypdelete_args*)); -#define YPU_PROG ((u_long)100028) -#define YPU_VERS ((u_long)1) +#define YPU_PROG 100028 +#define YPU_VERS 1 -#define YPU_CHANGE ((u_long)1) +#define YPU_CHANGE 1 extern u_int * ypu_change_1 __P ((ypupdate_args *, CLIENT *)); extern u_int * ypu_change_1_svc __P((ypupdate_args *, struct svc_req *)); -#define YPU_INSERT ((u_long)2) +#define YPU_INSERT 2 extern u_int * ypu_insert_1 __P ((ypupdate_args *, CLIENT *)); extern u_int * ypu_insert_1_svc __P ((ypupdate_args *, struct svc_req *)); -#define YPU_DELETE ((u_long)3) +#define YPU_DELETE 3 extern u_int * ypu_delete_1 __P ((ypdelete_args *, CLIENT *)); extern u_int * ypu_delete_1_svc __P ((ypdelete_args *, struct svc_req *)); -#define YPU_STORE ((u_long)4) +#define YPU_STORE 4 extern u_int * ypu_store_1 __P ((ypupdate_args *, CLIENT *)); extern u_int * ypu_store_1_svc __P ((ypupdate_args *, struct svc_req *)); |