aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/netscaler.c
AgeCommit message (Collapse)AuthorFilesLines
2010-11-04From Alexis La Goutte:Jaap Keuter1-5/+1
Replace all *_min()/*_max() by MIN() and MAX(). svn path=/trunk/; revision=34770
2010-06-06Don't use fwrite directly when writing a dump file; call it throughGuy Harris1-44/+23
wtap_dump_file_write(). Replace various wrappers around fwrite() with wtap_dump_file_write(), or at least make the wrappers call wtap_dump_file_write(). svn path=/trunk/; revision=33116
2010-04-15Make it build without zlib on OSX.Stig Bjørlykke1-7/+18
svn path=/trunk/; revision=32472
2010-02-26Move the definitions of all the private data structures out ofGuy Harris1-78/+105
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
2009-12-04From: Ravi Kondamuru:Bill Meier1-64/+64
"... a patch to make the netscaler wiretap code independent of the host system endian-ness. I have taken care of (1) reading and writing nstrace files (netscaler.c) and (2) reading in dissector code (packet-nstrace.c) also." See: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3540#c26 svn path=/trunk/; revision=31171
2009-11-18Switch HighHdr and LowHdr to build correct absolute time.Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=31005
2009-11-18Another try to treat the two 32bit time values (low, high) in v23 formatStig Bjørlykke1-1/+1
as a 64bit value. svn path=/trunk/; revision=31002
2009-11-18If no error is returned by a Wiretap routine, err_info is presumed notGuy Harris1-2/+2
to have been set. Do not set it to something g_mallocated in that case, as that will cause a memory leak - the error string will not be freed by the caller, as it's presumed not to have been set. svn path=/trunk/; revision=31001
2009-11-17From Ravi Kondamuru via bug 3540:Stig Bjørlykke1-1/+2
Treat the two 32bit time values (low, high) in v23 format as a 64bit value. svn path=/trunk/; revision=30994
2009-06-02Optimized check if file is a nstrace file.Stig Bjørlykke1-10/+4
svn path=/trunk/; revision=28614
2009-06-02Corrected nspm_signature_version() again.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=28588
2009-06-02Avoid infinite loop in nspm_signature_version().Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=28585
2009-06-01Try Jakub's casting with GPOINTER_TO_INT().Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=28579
2009-06-01Adding casts, take 3.Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=28578
2009-06-01Adding casts, take 2.Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=28576
2009-06-01Added/Changed some more casts to build.Stig Bjørlykke1-4/+4
svn path=/trunk/; revision=28575
2009-06-01Added some casts to remove some warnings.Stig Bjørlykke1-4/+4
svn path=/trunk/; revision=28573
2009-06-01From Ravi Kondamuru via bug 3457: Stig Bjørlykke1-0/+1289
Add support to read citrix netscaler capture file format. From me: - Renamed packet-ns.c to packet-nstrace.c - Rewrote to not use "goto" in netscaler.c - Moved dissecting of coreid svn path=/trunk/; revision=28564