aboutsummaryrefslogtreecommitdiffstats
path: root/make-reg-dotc.py
Commit message (Collapse)AuthorAgeFilesLines
* Not all Python scripts generate dissectors; "make-reg-dotc.py" generatesGuy Harris2001-06-191-3/+3
| | | | | | "register.c", and, as such, shouldn't stuff ", HFILL" into its output. svn path=/trunk/; revision=3573
* From Joerg Mayer: explicitly fill in all members of aGuy Harris2001-06-181-3/+3
| | | | | | | "header_field_info" structure, including the ones that are later set by the routines to register fields. svn path=/trunk/; revision=3561
* Add a python script which has the same functionality as the shellGilbert Ramirez2001-01-111-0/+115
script 'make-reg-dotc'. It is used only in the Win32 build because the make-reg-dotc shell script is *so* sloooooooooow on Win32, due to the multiple processes (grep, grep, sed) launched multiple times for each source file. By putting all the text-mangling logic into a single Python script, only one process is launched, and the source files are read only once. It's *a lot* faster... seconds instead of minutes. svn path=/trunk/; revision=2873