yppasswd.x revision 114629
1207842Smm/*
2207842Smm * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3207842Smm * unrestricted use provided that this legend is included on all tape
4207842Smm * media and as a part of the software program in whole or part.  Users
5207842Smm * may copy or modify Sun RPC without charge, but are not authorized
6207842Smm * to license or distribute it to anyone else except as part of a product or
7207842Smm * program developed by the user.
8207842Smm *
9207842Smm * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
10207842Smm * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
11207842Smm * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
12207842Smm *
13207842Smm * Sun RPC is provided with no support and without any obligation on the
14207842Smm * part of Sun Microsystems, Inc. to assist in its use, correction,
15207842Smm * modification or enhancement.
16207842Smm *
17207842Smm * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
18207842Smm * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
19207842Smm * OR ANY PART THEREOF.
20207842Smm *
21207842Smm * In no event will Sun Microsystems, Inc. be liable for any lost revenue
22207842Smm * or profits or other special, indirect and consequential damages, even if
23207842Smm * Sun has been advised of the possibility of such damages.
24207842Smm *
25278433Srpaulo * Sun Microsystems, Inc.
26207842Smm * 2550 Garcia Avenue
27207842Smm * Mountain View, California  94043
28207842Smm */
29207842Smm
30207842Smm/*
31207842Smm * YP password update protocol
32207842Smm * Requires unix authentication
33207842Smm */
34207842Smm
35207842Smm#ifndef RPC_HDR
36213700Smm%#ifndef lint
37213700Smm%/*static char sccsid[] = "from: @(#)yppasswd.x 1.1 87/04/13 Copyr 1987 Sun Micro";*/
38213700Smm%/*static char sccsid[] = "from: @(#)yppasswd.x	2.1 88/08/01 4.0 RPCSRC";*/
39207842Smm%#endif /* not lint */
40207842Smm%#include <sys/cdefs.h>
41207842Smm%__FBSDID("$FreeBSD: head/include/rpcsvc/yppasswd.x 114629 2003-05-04 02:51:42Z obrien $");
42207842Smm#endif
43207842Smm
44207844Smmprogram YPPASSWDPROG {
45207842Smm	version YPPASSWDVERS {
46275042Sbapt		/*
47207842Smm		 * Update my passwd entry
48207842Smm		 */
49		int
50		YPPASSWDPROC_UPDATE(yppasswd) = 1;
51	} = 1;
52} = 100009;
53
54
55struct x_passwd {
56	string pw_name<>;	/* username */
57	string pw_passwd<>;	/* encrypted password */
58	int pw_uid;		/* user id */
59	int pw_gid;		/* group id */
60	string pw_gecos<>;	/* in real life name */
61	string pw_dir<>;	/* home directory */
62	string pw_shell<>;	/* default shell */
63};
64
65struct yppasswd {
66	string oldpass<>;	/* unencrypted old password */
67	x_passwd newpw;		/* new passwd entry */
68};
69
70
71#ifdef RPC_HDR
72%#include <sys/cdefs.h>
73%extern int _yppasswd( char * , struct x_passwd * );
74%#define yppasswd(x,y) _yppasswd(x,y)
75#endif
76