Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-10-05 | Merge pull request #65 from pprindeville/simplify-md5-operations | Paweł Krawczyk | |
Various cryptography improvements | |||
2016-10-04 | Make TACDEBUG and TACSYSLOG into varargs macros | Philip Prindeville | |
Also, correct the -DTACDEBUG_AT_RUNTIME scenario so that TACDEBUG() binds correct when used in an if-body with an else following it, e.g.: if (test) TACDEBUG(LOG_DEBUG, "test is true"); else return; would previously have ended up as expanding to: if (test) if (tac_debug_enable) logmsg(LOG_DEBUG, "test is true"); else return; with the indent redone to reflect the nesting correctly. This now expands (correctly) to: if (test) do { if (tac_debug_enable) logmsg(LOG_DEBUG, "test is true"); } while (0); else return; | |||
2016-10-04 | No need to pass in payload length when the header already includes it | Philip Prindeville | |
Why make copies of the payload length to pass as parameters when it's already present in the header? | |||
2016-09-29 | Turn on stricter compiler warnings | Philip Prindeville | |
And fix subsequent warnings caused by: - shadowed variables (i.e. variables existing in nested scopes); - signed vs. unsigned comparisons - string pointers and buffers being unsigned which don't need to be; - unnecessary casts; - unused variables (or only used when debugging is enabled); | |||
2016-07-23 | initialize timelimit | Paweł Krawczyk | |
2016-07-23 | Fix warnings | Paweł Krawczyk | |
Fix various declaration inconsistencies that were throwing compiler warnings | |||
2016-07-22 | fix format string for long int | Paweł Krawczyk | |
2016-05-27 | fix variable names | Paweł Krawczyk | |
2016-05-27 | wrong var name | Paweł Krawczyk | |
2016-05-27 | typo | Paweł Krawczyk | |
2016-05-27 | replace the broken packet_read check with a hard-coded max packet length | Paweł Krawczyk | |
2016-05-05 | Merge branch 'master' of github.com:jeroennijhof/pam_tacplus | Paweł Krawczyk | |
2016-05-05 | format string long int | Paweł Krawczyk | |
2016-05-02 | check packet length declared in header | Paweł Krawczyk | |
2013-03-22 | fix C++/C99 style comments | Walter de Jong | |
2012-09-16 | Rearrange header file include for libtac | Jeroen Nijhof | |
2012-03-18 | Changed e-mail and improved accounting | Jeroen Nijhof | |
2011-08-19 | Finally got rid of all goto illness! | Jeroen | |
2011-08-19 | Major contribution by Darren Besler | Jeroen | |
2010-12-22 | Initial commit | Jeroen Nijhof | |