-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ENH: Enhanced AD/LDAP support for huge Microsoft Active Directory ENH: Base DN and Users DN are now two different parameters (Users DN optional)
- Loading branch information
Showing
17 changed files
with
1,794 additions
and
1,112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,8 +22,8 @@ | |
* PHP 5.3.0 or higher is supported. | ||
* | ||
* @author Andre Liechti, SysCo systemes de communication sa, <[email protected]> | ||
* @version 5.1.1.2 | ||
* @date 2018-03-20 | ||
* @version 5.2.0.2 | ||
* @date 2018-07-16 | ||
* @since 2013-07-10 | ||
* @copyright (c) 2013-2018 SysCo systemes de communication sa | ||
* @copyright GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,8 @@ REM | |
REM Windows batch file for Windows 2K/XP/2003/7/2008/8/2012/10 | ||
REM | ||
REM @author Andre Liechti, SysCo systemes de communication sa, <[email protected]> | ||
REM @version 5.1.1.2 | ||
REM @date 2018-03-20 | ||
REM @version 5.2.0.2 | ||
REM @date 2018-07-16 | ||
REM @since 2010-07-10 | ||
REM @copyright (c) 2010-2018 SysCo systemes de communication sa | ||
REM @copyright GNU Lesser General Public License | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,8 +15,8 @@ The multiOTP C++ launcher is simply used to launch PHP | |
and run multiotp.windows.php with the provided arguments. | ||
|
||
@author Andre Liechti, SysCo systemes de communication sa, <[email protected]> | ||
@version 5.1.1.2 | ||
@date 2018-03-20 | ||
@version 5.2.0.2 | ||
@date 2018-07-16 | ||
@since 2016-12-08 | ||
@copyright (c) 2010-2018 SysCo systemes de communication sa | ||
@copyright GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,8 +14,8 @@ | |
* and run multiotp.windows.php with the provided arguments. | ||
* | ||
* @author Andre Liechti, SysCo systemes de communication sa, <[email protected]> | ||
* @version 5.1.1.2 | ||
* @date 2018-03-20 | ||
* @version 5.2.0.2 | ||
* @date 2018-07-16 | ||
* @since 2016-12-08 | ||
* @copyright (c) 2010-2018 SysCo systemes de communication sa | ||
* @copyright GNU Lesser General Public License | ||
|
@@ -68,8 +68,8 @@ | |
#include <iostream> | ||
|
||
#define SOFTWARE "LAUNCHPHPMULTIOTP" | ||
#define VER_NUMBER "5.1.1.2" | ||
#define VER_DATE "2018-03-20" | ||
#define VER_NUMBER "5.2.0.2" | ||
#define VER_DATE "2018-07-16" | ||
|
||
int _tmain(int argc, _TCHAR* argv[]) | ||
{ | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,8 +35,8 @@ | |
* PHP 5.3.0 or higher is supported. | ||
* | ||
* @author Andre Liechti, SysCo systemes de communication sa, <[email protected]> | ||
* @version 5.1.1.2 | ||
* @date 2018-03-20 | ||
* @version 5.2.0.2 | ||
* @date 2018-07-16 | ||
* @since 2010-06-08 | ||
* @copyright (c) 2010-2018 SysCo systemes de communication sa | ||
* @copyright GNU Lesser General Public License | ||
|
@@ -1880,6 +1880,10 @@ function clean_quotes( | |
$multiotp->SetLdapTimeLimit(intval($actual_array[1])); | ||
$write_config_data = true; | ||
break; | ||
case 'ldap-users-dn': | ||
$multiotp->SetLdapUsersDn($actual_array[1]); | ||
$write_config_data = true; | ||
break; | ||
case 'log': | ||
$multiotp->SetLogOption(intval($actual_array[1])); | ||
$write_config_data = true; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,8 +15,8 @@ | |
* PHP 5.3.0 or higher is supported. | ||
* | ||
* @author Andre Liechti, SysCo systemes de communication sa, <[email protected]> | ||
* @version 5.1.1.2 | ||
* @date 2018-03-20 | ||
* @version 5.2.0.2 | ||
* @date 2018-07-16 | ||
* @since 2010-06-08 | ||
* @copyright (c) 2010-2018 SysCo systemes de communication sa | ||
* @copyright GNU Lesser General Public License | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,8 +27,8 @@ | |
* PHP 5.3.0 or higher is supported. | ||
* | ||
* @author Andre Liechti, SysCo systemes de communication sa, <[email protected]> | ||
* @version 5.1.1.2 | ||
* @date 2018-03-20 | ||
* @version 5.2.0.2 | ||
* @date 2018-07-16 | ||
* @since 2013-08-06 | ||
* @copyright (c) 2013-2018 SysCo systemes de communication sa | ||
* @copyright GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,8 @@ REM | |
REM Windows batch file for Windows 2K/XP/2003/7/2008/8/2012/10 | ||
REM | ||
REM @author Andre Liechti, SysCo systemes de communication sa, <[email protected]> | ||
REM @version 5.1.1.2 | ||
REM @date 2018-03-20 | ||
REM @version 5.2.0.2 | ||
REM @date 2018-07-16 | ||
REM @since 2014-04-22 | ||
REM @copyright (c) 2014-2018 SysCo systemes de communication sa | ||
REM @copyright GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,8 @@ REM | |
REM Windows batch file for Windows 2K/XP/2003/7/2008/8/2012/10 | ||
REM | ||
REM @author Andre Liechti, SysCo systemes de communication sa, <[email protected]> | ||
REM @version 5.1.1.2 | ||
REM @date 2018-03-20 | ||
REM @version 5.2.0.2 | ||
REM @date 2018-07-16 | ||
REM @since 2013-08-20 | ||
REM @copyright (c) 2013-2018 SysCo systemes de communication sa | ||
REM @copyright GNU Lesser General Public License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,8 @@ REM | |
REM Windows batch file for Windows 2K/XP/2003/7/2008/8/2012/10 | ||
REM | ||
REM @author Andre Liechti, SysCo systemes de communication sa, <[email protected]> | ||
REM @version 5.1.1.2 | ||
REM @date 2018-03-20 | ||
REM @version 5.2.0.2 | ||
REM @date 2018-07-16 | ||
REM @since 2013-08-20 | ||
REM @copyright (c) 2013-2018 SysCo systemes de communication sa | ||
REM @copyright GNU Lesser General Public License | ||
|
Oops, something went wrong.