diff options
author | Luke Leighton <lkcl@samba.org> | 1999-03-05 22:03:04 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-03-05 22:03:04 +0000 |
commit | caa34b37e4cf37523a3094425724dbd2f3f973b9 (patch) | |
tree | 8a1b5e28fd973b3bb3879bad7e450920d6542065 /source3/include | |
parent | 00d86ccb1cceda0381383420bdbfd452456c7545 (diff) | |
download | samba-caa34b37e4cf37523a3094425724dbd2f3f973b9.tar.gz samba-caa34b37e4cf37523a3094425724dbd2f3f973b9.tar.bz2 samba-caa34b37e4cf37523a3094425724dbd2f3f973b9.zip |
Benjamin Kuit's mods.
(This used to be commit eb63fbdb68f1189593e68272e05d7ebf76652c4c)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index f31d178842..063bcc2c45 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1351,6 +1351,11 @@ int lp_defaultcase(int ); int lp_minprintspace(int ); int lp_printing(int ); char lp_magicchar(int ); +char *lp_mysql_host(void); +char *lp_mysql_user(void); +char *lp_mysql_passfile(void); +char *lp_mysql_db(void); +char *lp_mysql_table(void); BOOL lp_add_home(char *pszHomename, int iDefaultService, char *pszHomedir); int lp_add_service(char *pszService, int iDefaultService); BOOL lp_add_printer(char *pszPrintername, int iDefaultService); @@ -1396,6 +1401,32 @@ struct smb_passwd *ldap_getpw(void); BOOL ldap_allocaterid(uint32 *rid); struct smb_passdb_ops *ldap_initialise_password_db(void); +/*The following definitions come from passdb/mysqlpass.c */ + +void *mysql_startpwent( BOOL update ); +void mysql_endpwent( void *ptr ); +SMB_BIG_UINT mysql_getpwpos(void *vp); +BOOL mysql_setpwpos(void *vp, SMB_BIG_UINT pos); +struct smb_passwd *mysql_getsmbpwent(void *vp); +struct smb_passwd *mysql_getsmbpwuid(uid_t uid); +struct smb_passwd *mysql_getsmbpwnam(const char *unix_name); +BOOL mysql_add_smbpwd_entry(struct smb_passwd *smb); +BOOL mysql_mod_smbpwd_entry(struct smb_passwd *smb, BOOL override); +struct smb_passdb_ops *mysql_initialise_password_db(void); + +/*The following definitions come from passdb/mysqlsampass.c */ + +struct sam_passwd *mysql_getsampwent(void *vp); +struct sam_passwd *mysql_getsampwrid(uint32 rid); +struct sam_passwd *mysql_getsampwuid(uid_t uid); +struct sam_passwd *mysql_getsampwntnam(const char *nt_name); +struct sam_disp_info *mysql_getsamdispntnam(const char *nt_name); +struct sam_disp_info *mysql_getsamdisprid(uint32 rid); +struct sam_disp_info *mysql_getsamdispent(void *vp); +BOOL mysql_add_sampwd_entry(struct sam_passwd *sam); +BOOL mysql_mod_sampwd_entry(struct sam_passwd *sam, BOOL override); +struct sam_passdb_ops *mysql_initialise_sam_password_db(void); + /*The following definitions come from passdb/nispass.c */ struct passdb_ops *nisplus_initialise_password_db(void); |