aboutsummaryrefslogtreecommitdiffstats
path: root/epan/radius_dict.l
AgeCommit message (Collapse)AuthorFilesLines
2007-10-16Change more fopen() to eth_fopen() to finish fixing bug 1827:Jeff Morriss1-45/+47
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1827 Update README.developer to tell developers not to use fopen() and friends directly. svn path=/trunk/; revision=23206
2007-08-04Add a script as a front-end for Flex, to work around various problems,Guy Harris1-0/+1
such as the fact that Flex strips all but the last component of the "-o" argument, and that it doesn't generate a header file to declare routines the generated lexical analyzer defines. Use that script when building lexical analyzers, and, for each lexical analyzer, include the generated header file in the generated analyzer. svn path=/trunk/; revision=22446
2007-07-30Add comments to various %option items to explain what they're doing. Guy Harris1-3/+21
Move the %options to the beginning if they weren't already there, and put them in the same order in all files. Add "prefix=" options to .l files that don't already have them, so we don't have to pass a "-P" option. Add "never-interactive" and "noyywrap" options to our lexical analyzers, to remove extra isatty() checks and to eliminate the need for yywrap() from the Flex library. Get rid of %option nostdinit - that's the default. Add .l.c: rules to Makefile.am files, replacing the rules for specific .l files. Have those rules all check that $(LEX) is set. Update the address for the FSF. svn path=/trunk/; revision=22424
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