Displaying 2 results from an estimated 2 matches for "pdb_set_logon_divs".
2002 Nov 04
2
MySQL authentication & kickoff time?
Hiya.
I'm in the middle of (re)developing a authentication system for an
internet cafe here in Sydney.
By complete accident I discovered the PDB MySQL plugin for samba
yesterday in CVS - amazing. Haven't tried this yet (waiting for samba
to compile on a really slow machine, heh) but it looks great.
Is anybody using this? Would you recommend it for use in a heavy use
type
2003 Sep 23
0
[PATCH] tdb multiple format
...a error has occured, try the next format */
+ if (len == -1) {
+ format_version--;
+ DEBUG(20, ("init_sam_from_buffer: cannot use the tdb format version %d for the record\n",format_version));
+ }
+ }
+
+
if (len == -1) {
ret = False;
goto done;
@@ -1427,6 +1465,9 @@
pdb_set_logon_divs(sampass, logon_divs, PDB_SET);
pdb_set_hours(sampass, hours, PDB_SET);
+ pdb_set_lockout_time(sampass, lockout_time, PDB_SET);
+ pdb_set_bad_pwd_count(sampass, bad_pwd_count, PDB_SET);
+
done:
SAFE_FREE(username);
@@ -1460,11 +1501,12 @@
uint32 logon_time,
logoff_time,
kickoff_time...