home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.2 (Developer) / NS_dev_3.2.iso / NextDeveloper / Headers / bsd / rpcsvc / yppasswd.h < prev    next >
C/C++ Source or Header  |  1990-01-29  |  374b  |  19 lines

  1. /*    @(#)yppasswd.h    1.2 88/05/08 4.0NFSSRC SMI    */
  2.  
  3. /* 
  4.  * Copyright (c) 1988 by Sun Microsystems, Inc.
  5.  * @(#) from SUN 1.4
  6.  */
  7.  
  8. #define YPPASSWDPROG 100009
  9. #define YPPASSWDPROC_UPDATE 1
  10. #define YPPASSWDVERS_ORIG 1
  11. #define YPPASSWDVERS 1
  12.  
  13. struct yppasswd {
  14.     char *oldpass;        /* old (unencrypted) password */
  15.     struct passwd newpw;    /* new pw structure */
  16. };
  17.  
  18. int xdr_yppasswd();
  19.