aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/ascendtext.c
AgeCommit message (Collapse)AuthorFilesLines
2010-10-20Fix bug which caused ascend_open() to return "I/O error" (instead of "not me").Bill Meier1-0/+1
(This happened if ascend_open was called with *err != 0). svn path=/trunk/; revision=34588
2010-02-26Move the definitions of all the private data structures out ofGuy Harris1-26/+27
wtap-int.h, and change the unions of pointers to those private data structures into just void *'s. Have the generic wtap close routine free up the private data, rather than the type-specific close routine, just as the wtap_dumper close routine does for its private data. Get rid of close routines that don't do anything any more. svn path=/trunk/; revision=32015
2010-02-25Have parse_ascend() return:Guy Harris1-3/+6
PARSED_RECORD if we got a packet; PARSED_NONRECORD if the parser succeeded but didn't see a packet; PARSE_FAILED if the parser failed. Treat anything other than PARSED_RECORD as a failure, for now; I'm not sure why we were treating "parser succeeded but didn't see a packet" as success, as that was causing us to recognize some non-Ascend-output text files as Ascend files and to return "records" with bogus caplen and len values. svn path=/trunk/; revision=32009
2009-06-15Rename all of the ascend files:Jörg Mayer1-0/+343
That way we hopefully won't need the runlex.sh hack any more. Also the ylwrap stuff is (hopefully) obsolete. ascend.[hc] -> ascendtext.[hc] ascend-scanner.l -> ascend_scanner.l ascend-grammar.y -> ascend.y svn path=/trunk/; revision=28744