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? | |||
2015-06-20 | tac_login is a static array so it's never NULL | Paweł Krawczyk | |
2013-03-29 | removed double xcalloc() function; do not leak memory for these small ↵ | Walter de Jong | |
buffers; added safe xstrcpy() | |||
2012-09-16 | Rearrange header file include for libtac | Jeroen Nijhof | |
2012-09-08 | Bumped version to 1.3.8 and renamed rem_addr to r_addr | Jeroen Nijhof | |
2012-06-12 | Handle attributes which contains no value | 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 | |