aboutsummaryrefslogtreecommitdiffstats
path: root/epan/radius_dict.l
AgeCommit message (Collapse)AuthorFilesLines
2007-03-22fix warning: add WS_ prefix to OUT, it conflicts with a platform SDK header fileUlf Lamping1-20/+20
svn path=/trunk/; revision=21133
2007-03-22fix some more warningsUlf Lamping1-2/+2
svn path=/trunk/; revision=21105
2007-01-02Use G_DIR_SEPARATOR_S as the path separator.Guy Harris1-3/+4
svn path=/trunk/; revision=20260
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-03-23Bug 796Luis Ontanon1-4/+6
the dictionary parser could not handle more than one attribute with parameters per file svn path=/trunk/; revision=17702
2005-12-20Make sure we don't try to close an already-closed file.Gerald Combs1-2/+4
svn path=/trunk/; revision=16863
2005-12-14Close the dictionary files after reading from them.Luis Ontanon1-0/+4
svn path=/trunk/; revision=16795
2005-09-26Add a new "ipxnet" type for the RADIUS dictionary, for IPX networkGuy Harris1-14/+15
numbers. (Currently, we don't have any dictionary entries with that type, although we have an attribute with special code to handle it that uses that type.) Specially handle Framed-IP-Address, Login-IP-Host, and Framed-IPX-Network, so that the special values are displayed specially. Clean up indentation. Don't specify a number base for IPv4 or IPv6 addresses; the number base is ignored. svn path=/trunk/; revision=16008
2005-09-24- There can be '/' in attribute names as wellLuis Ontanon1-29/+76
- 140Kb of leaks less. svn path=/trunk/; revision=15986
2005-09-19- allow multiple attributes inside one VSA (fixes bug 438)Luis Ontanon1-1/+2
- preference to choose whether to add the AVP's payload length items - preference to add an alternate UDP port svn path=/trunk/; revision=15870
2005-08-20radius_dict.l(216) : warning C4090: 'function' : different 'const' qualifiersUlf Lamping1-2/+2
radius_dict.l(216) : warning C4022: 'g_hash_table_insert' : pointer mismatch for actual parameter 2 radius_dict.l(268) : warning C4090: 'function' : different 'const' qualifiers radius_dict.l(268) : warning C4022: 'g_free' : pointer mismatch for actual parameter 1 svn path=/trunk/; revision=15485
2005-08-05More char -> const char warning fixesJörg Mayer1-1/+1
svn path=/trunk/; revision=15218
2005-08-02Fix more "no previous declaration" warningsJörg Mayer1-6/+6
svn path=/trunk/; revision=15171
2005-07-27As Guy mentioned: last patch replaced one occurrence too many,Jörg Mayer1-1/+1
thus the dictionary keyword encrypt was changed from encrypt to encrypted too. Undo this. svn path=/trunk/; revision=15121
2005-07-27The variable encrypt collides with the declaration in <unistd.h> onJörg Mayer1-6/+6
some platforms. Rename encrypt to encrypted. svn path=/trunk/; revision=15120
2005-07-16Throw in some casts to squelch warnings, at least with some compilersGuy Harris1-2/+2
(the values are const because nobody's supposed to modify them once they've been allocated, but they *can* be freed - by us - when we're done with them). svn path=/trunk/; revision=14936
2005-07-15forgot to add the (c) noticeLuis Ontanon1-0/+26
svn path=/trunk/; revision=14928
2005-07-15Radius Dictionary SupportLuis Ontanon1-0/+321
Part 2: the code svn path=/trunk/; revision=14925