Allow delayed references to attributes. Helps with #711
[freeradius.git] / src / main / parser.c
2014-06-25 Alan T. DeKokAllow delayed references to attributes. Helps with...
2014-05-30 Arran Cudbard-BellRename PW_TYPE_IP* so they're all consistent
2014-05-13 Arran Cudbard-BellFix case insensitive matching in compiled regular expre...
2014-04-21 Alan T. DeKokLeave input variable alone for debugging
2014-04-20 Arran Cudbard-BellMerge pull request #589 from nchaigne/v3.0.x
2014-04-19 Arran Cudbard-BellReorganise fields in value_pair_tmpl_t
2014-04-18 Alan T. DeKokMove checks for &Attribute-Name into radius_parse_attr()
2014-03-31 Alan T. DeKokChecks for casts to differing sized attributes
2014-03-31 Alan T. DeKokRewrite unnecessary casts
2014-03-31 Alan T. DeKokCertain data types are forbidden in casts
2014-03-28 Alan T. DeKokExpose radius_tmpl_cast() for others to use
2014-03-21 Alan T. DeKokCache CONF_ITEM in the condition
2014-03-21 Arran Cudbard-BellAdd default list to radius_str2tmpl
2014-03-12 Alan T. DeKokRe-arrange normalization code in parser
2014-03-12 Alan T. DeKokNormalize literals in conditions
2014-03-11 Alan T. DeKokClarify error message
2014-03-11 Arran Cudbard-BellSwitch some talloc_free's to TALLOC_FREE's
2014-02-15 Alan T. DeKokStatically evaluate literal string comparisons
2014-01-17 Alan T. DeKokRemove unnecessary assignment
2013-11-14 Alan T. DeKokMore descriptive error messages for casts
2013-09-05 Alan T. DeKokRe-enable virtual attributes for comparison. Fixes...
2013-09-03 Alan T. DeKokmap may return NULL
2013-09-03 Alan T. DeKokDo a second pass over the conditions. Fixes #421
2013-09-03 Alan T. DeKokAllow for one/two-pass compilation of conditions.
2013-09-03 Alan T. DeKokAdded "walk" function to conditions
2013-08-26 Alan T. DeKokFix placement of parse error in condition
2013-07-30 Arran Cudbard-BellUse the same const order everywhere
2013-07-15 Arran Cudbard-BellMerge pull request #376 from mcnewton/master
2013-07-15 Matthew Newtonremove spurious VPs being printed out
2013-07-14 Arran Cudbard-Bell/[ \t]+$//
2013-06-23 Alan T. DeKokUse new generic pointer type
2013-06-23 Arran Cudbard-BellMerge pull request #322 from armitasp/master
2013-06-23 Alan T. DeKoktalloc_steal pointers, instead of just memcpy'ing them.
2013-06-21 Arran Cudbard-BellFixup documentation, and rename VALUE_PAIR_DATA to...
2013-05-14 Alan T. DeKokEvaluate some conditions at parse time.
2013-05-14 Alan T. DeKokAdded 'true' and 'false' as top-level concepts.
2013-05-14 Alan T. DeKokParse literals into VALUE_PAIR_DATA at compile time.
2013-05-13 Alan T. DeKokStart of type checks on RHS of conditions
2013-05-12 Alan T. DeKokDisallow RHS bare words for string attributes
2013-05-12 Alan T. DeKokRedundant casts get squashed
2013-05-12 Alan T. DeKokBe more aggressive about freeing intermediate strings.
2013-05-12 Alan T. DeKokMore tests for conditions and =* and =*
2013-05-12 Alan T. DeKokChecks for existence / non-existince on strings are...
2013-05-11 Alan T. DeKokAllow casting for LHS of conditions.
2013-05-09 Alan T. DeKokre-arrange code to make it clearer what's going on
2013-05-08 Alan T. DeKoktalloc_steal next pointer, too
2013-04-24 Alan T. DeKokMove common code into macros
2013-04-24 Alan T. DeKokRemove COND_DEBUG now that it works
2013-04-24 Alan T. DeKokMore normalizaton for conditions
2013-04-23 Alan T. DeKokDo more sanity checks at parse time on conditions
2013-04-23 Alan T. DeKokDon't allow list references in conditions
2013-04-23 Alan T. DeKokBetter errors for LHS is regex
2013-04-23 Arran Cudbard-BellUse C99 bool type for truth values
2013-04-23 Alan T. DeKokMore / better errors and tests
2013-04-23 Alan T. DeKokUpdated conditional parser to use new tmpl / map functions
2013-04-19 Arran Cudbard-BellReverse the order of const and type specifier e.g....
2013-04-19 Alan T. DeKokAllow for printing the condition to a string.
2013-04-19 Alan T. DeKokRemember which string was " ' ` /, etc.
2013-04-19 Alan T. DeKokExpose fr_cond_t, but don't use it (yet)
2013-04-19 Arran Cudbard-BellFix the last of the GCC warnings
2013-04-18 Arran Cudbard-BellUse universal diagnostic macros
2013-04-18 Arran Cudbard-BellFix typo
2013-04-17 Arran Cudbard-BellAdd W_UNEEDEDDEC_OFF to turn off warnings for unused...
2013-04-16 Alan T. DeKokdoxygen
2013-04-16 Alan T. DeKokdoxygen
2013-04-16 Alan T. DeKokUpdate new conditional parser to create data structures
2013-04-12 Alan T. DeKokMove conditional parser to new file.