diff options
author | Jeremy Allison <jra@samba.org> | 1998-04-14 00:41:59 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-04-14 00:41:59 +0000 |
commit | 2a53d6f7077de596265a3e73e79827392054142c (patch) | |
tree | 9e3553f5c3210b814b14501fb2f6e6cd4a2c129b /source3/include | |
parent | 49ce0cab3c3ec31e08be9afb7872b8bb03371810 (diff) | |
download | samba-2a53d6f7077de596265a3e73e79827392054142c.tar.gz samba-2a53d6f7077de596265a3e73e79827392054142c.tar.bz2 samba-2a53d6f7077de596265a3e73e79827392054142c.zip |
Modified interfaces to getting smb password entries from
get_smbpwd_entry (now an internal function to smbpass.c)
to a more UNIX-like :
getsmbpwnam() - get entry by name.
getsmbpwuid() - get entry by uid.
Changed the type returned by the smbpasswd enumeration
functions to be a void * so that people don't come to
depend on it being a FILE *.
These abstractions should make it much easier to
replace the smbpasswd file with a better backend
in future.
Other files changed are to match the above changes.
Jeremy.
(This used to be commit 1161cfb7f2b0d5a6d3e2b524a14a6f325ce70efb)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 3e1f9f5fa3..07df90e1bd 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1690,10 +1690,13 @@ char *smb_errstr(char *inbuf); int pw_file_lock(int fd, int type, int secs); int pw_file_unlock(int fd); -FILE *startsmbpwent(BOOL update); -void endsmbpwent(FILE *fp); -struct smb_passwd *getsmbpwent(FILE *fp); -struct smb_passwd *get_smbpwd_entry(char *name, int smb_userid); +void *startsmbpwent(BOOL update); +void endsmbpwent(void *vp); +struct smb_passwd *getsmbpwent(void *vp); +unsigned long getsmbpwpos(void *vp); +BOOL setsmbpwpos(void *vp, unsigned long tok); +struct smb_passwd *getsmbpwnam(char *name); +struct smb_passwd *getsmbpwuid(unsigned int uid); BOOL add_smbpwd_entry(struct smb_passwd *newpwd); BOOL mod_smbpwd_entry(struct smb_passwd* pwd); |