aboutsummaryrefslogtreecommitdiffstats
path: root/make-reg-dotc.py
AgeCommit message (Collapse)AuthorFilesLines
2001-06-19Not all Python scripts generate dissectors; "make-reg-dotc.py" generatesGuy Harris1-3/+3
"register.c", and, as such, shouldn't stuff ", HFILL" into its output. svn path=/trunk/; revision=3573
2001-06-18From Joerg Mayer: explicitly fill in all members of aGuy Harris1-3/+3
"header_field_info" structure, including the ones that are later set by the routines to register fields. svn path=/trunk/; revision=3561
2001-01-11Add a python script which has the same functionality as the shellGilbert Ramirez1-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