summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fixed some issues with the useracc_list() functionDavid Sommerseth2009-09-251-32/+28
| |
* | Unified eDBadminUser*() functions into one eDBadminUserAccount() functionDavid Sommerseth2009-09-243-303/+236
|/ | | | | | Rewritten the database API and the SQLite3 database driver. This code has yet not been tested.
* Removed debug infoDavid Sommerseth2009-09-221-3/+0
|
* Updates to .gitignoreDavid Sommerseth2009-09-221-2/+3
|
* Added build rules and configure --doxygen argument to build Doxygen docs via ↵David Sommerseth2009-09-223-8/+62
| | | | make
* Improved Doxygen generation, added index pageDavid Sommerseth2009-09-222-8/+137
|
* Removed duplicated Doxygen documentationDavid Sommerseth2009-09-221-9/+0
|
* Fixed and cleaned up Doxygen commentsDavid Sommerseth2009-09-224-81/+114
|
* Updated eurephia_init to also use eurephiaXML_ParseResultMsg()David Sommerseth2009-09-221-5/+11
|
* Unified eDBadminGetCertificateInfo(), eDBadminAddCertificate() and ↵David Sommerseth2009-09-225-132/+210
| | | | | | eDBadminDeleteCertificate() into eDBadminCertificate() Updated eurephiadm utility to make use of this new unified API
* Rewritten eurephiadm users command to use eurephiaXML_ParseResultMsg()David Sommerseth2009-09-211-9/+21
|
* Rewritten most of the eurephiadm commands to use eurephiaXML_ParseResultMsg()David Sommerseth2009-09-216-90/+110
| | | | Commands not covered yet are users and certs commands
* Rewrote eurephiaXML_ResultMsg() to also support adding an xmlNode* with more ↵David Sommerseth2009-09-218-58/+127
| | | | | | | | info The eurephia result XML document is also changed, and all parsing of the result must be rewritten. To simplify this parsing, a new function is introduced, eurephiaXML_ParseResultMsg().
* Modified eurephiadm and eurephia_init programs to use the new ↵David Sommerseth2009-09-212-12/+37
| | | | eDBadminAccessLevel() function
* Unified eDBadminGetAdminAccess() and eDBadminEditAdminAccess() into ↵David Sommerseth2009-09-214-113/+116
| | | | eDBadminAccessLevel()
* Added eDBmappingGetValue() to retrieve field values from a eDBfieldMap structDavid Sommerseth2009-09-212-0/+27
|
* Improved some doxygen commentsDavid Sommerseth2009-09-201-1/+3
|
* Corrected wrong argument in eurephiadm users --add mode.David Sommerseth2009-09-191-1/+1
|
* Removed usage of a global result pointerDavid Sommerseth2009-09-171-54/+50
| | | | | | | | The callback function do now get a pointer to the query results directly instead of using a global result pointer. This makes queries done in parallel a lot safer. Made the SQLITE_DEBUG main() function more generic and removed memwatch references which is no longer in use, as valgrind is much better and easier to use.
* BUGFIX: Sometimes get_console_input() would "skip" a prompt if data was ↵David Sommerseth2009-09-151-5/+5
| | | | | | | | | | | | | | still in the stream This happens when more data is entered than what fits into the buffer. Then the remaining input, including the new-line will be accepted automatically on the next get_console_input(). It's important to remember that the length argument of get_console_input() do not restrict how much data the user can type in. It only tells how big the receiving buffer is, thus leaving the remaining data in the file stream. The fix for eurephia_init was to make sure a bigger part of the buffer is used when calling get_console_input(), to be sure that new-line will be accepted into this buffer.
* Fixed missing doxygen comments and improved a description in saltdecode.cDavid Sommerseth2009-09-151-3/+11
|
* Utilities did not get built when eurephiadm is enabledDavid Sommerseth2009-09-151-1/+1
|
* Rewritten eurephia_init to use the new unified eDBadminConfiguration() functionDavid Sommerseth2009-09-151-12/+53
|
* Fix some valgrind warnings. Two timeval structs where not initialised ↵David Sommerseth2009-09-151-1/+3
| | | | before being used
* BUGFIX: saltlen was set to 0 when a buffer for a new salt was generatedDavid Sommerseth2009-09-151-12/+12
| | | | | | This error caused eurephia_pwd_crypt() to fail, especially when salt length was requested to be longer. The solution was to retrieve the salt length before allocating memory for it.
* Make Doxygen also document utils/David Sommerseth2009-09-151-1/+1
|
* Fixed some new Doxygen warnings which came after enabling static functions ↵David Sommerseth2009-09-143-7/+12
| | | | and vars
* Removed not valid argument for eurephiadm adminaccess commandDavid Sommerseth2009-09-141-1/+0
|
* Adopted eurephiadm config command to use the new unified db function, ↵David Sommerseth2009-09-141-8/+36
| | | | eDBadminConfiguration()
* Unified database driver functions eDBadminConfigSet() and ↵David Sommerseth2009-09-143-29/+151
| | | | eDBadminConfigDelete() into eDBadminConfiguration()
* Added eRemove_value() function, to remove a key/value pair from an ↵David Sommerseth2009-09-142-3/+48
| | | | eurephiaVALUES chain
* Doxygen - include static functions and variables as wellDavid Sommerseth2009-09-141-1/+1
|
* Added a simple xmlNode iterator for future usageDavid Sommerseth2009-09-141-0/+8
|
* Corrected some doxygen issues after rearranging the sqlite3 db driver codeDavid Sommerseth2009-09-134-4/+5
|
* Moved eDBGetLastlog() function into sqlite/administration/lastlog.cDavid Sommerseth2009-09-133-109/+165
|
* Moved eDBadminGetAdminAccess() into sqlite/administration/useraccount.cDavid Sommerseth2009-09-132-59/+60
|
* Moved certificate functions into sqlite/administration/certificates.cDavid Sommerseth2009-09-133-200/+257
|
* Moved user account functions into administration/useraccount.cDavid Sommerseth2009-09-133-496/+555
|
* Moved eDBadminBlacklist() function into administration/blacklist.cDavid Sommerseth2009-09-132-68/+54
|
* Corrected some wrong arguments and help screens for eurephiadm blacklist and ↵David Sommerseth2009-09-132-3/+3
| | | | attempts commands
* Moved eDBadminAttemptsLog() function into administration/attempts.cDavid Sommerseth2009-09-132-66/+52
|
* Moved eDBadminConfigSet() and eDBadminConfigDelete() into its own fileDavid Sommerseth2009-09-133-68/+111
|
* Added doxygen comments on the last missing filesDavid Sommerseth2009-09-114-33/+153
|
* Added more of the file path to some file names with name conflicts in DoxygenDavid Sommerseth2009-09-113-3/+3
|
* Added another source file directory to scan for doxygenDavid Sommerseth2009-09-111-1/+1
|
* Removed no longer needed driver function (eDBadminGetCertificateList())David Sommerseth2009-09-113-27/+0
|
* More doxygen comments in the sqlite3 driverDavid Sommerseth2009-09-113-190/+167
|
* Some simple comments to the SHA512 implementationDavid Sommerseth2009-09-112-8/+50
|
* Workaround to avoid confusing Doxygen on some extra declarationsDavid Sommerseth2009-09-112-3/+4
|
* Completed doxygen comments for edb-sqlite.cDavid Sommerseth2009-09-112-48/+125
|