aboutsummaryrefslogtreecommitdiffstats
path: root/packet-tacacs.h
AgeCommit message (Collapse)AuthorFilesLines
2003-12-21Compiling with -pedantic:Jörg Mayer1-2/+2
warning: comma at end of enumerator list svn path=/trunk/; revision=9383
2003-10-19From Emanuele Caratti:Guy Harris1-1/+6
add support for multiple encryption keys, one per conversation, in a single capture; add some fields in the accounting dissection. svn path=/trunk/; revision=8734
2003-09-29From Emanuele Caratti:Guy Harris1-1/+3
just use "g_free()" to free the buffer in "md5_xor()", as it doesn't throw exceptions; temporarily #ifdef out "tacplus_acct_flags" pending the arrival of code to dissect the TACACS+ accounting stuff. svn path=/trunk/; revision=8566
2003-09-20From Emanuele Caratti: full TACACS+ dissection.Guy Harris1-0/+424
svn path=/trunk/; revision=8506
2000-04-08Move calls to "dissector_add()" out of the register routines for TCP andGuy Harris1-27/+0
UDP and into the handoff registration routines for the protocols in question. Make the dissectors for those protocols static if they're not called outside the dissector's source file. Get rid of header files if all they did was declare dissectors that are now static; remove declarations of now-static dissectors from header files that do more than just declare the dissector. svn path=/trunk/; revision=1823
2000-02-15Create a header file for every packet-*.c file. Prune the packet.h file.Gilbert Ramirez1-0/+27
This change allows you to add a new packet-*.c file and not cause a recompilation of everything that #include's packet.h Add the plugin_api.[ch] files ot the plugins/Makefile.am packaging list. Add #define YY_NO_UNPUT 1 to the lex source so that the yyunput symbol is not defined, squelching a compiler complaint when compiling the generated C file. svn path=/trunk/; revision=1637