aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tpncp.c
AgeCommit message (Collapse)AuthorFilesLines
2008-10-31Fix some "format not a string literal and no format arguments" warnings.Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=26648
2008-07-11Fix a couple gint/guint mismatchesJeff Morriss1-3/+3
svn path=/trunk/; revision=25715
2008-05-22Move the file utility functions from wiretap to libwsutil so thatJeff Morriss1-5/+5
libwireshark (and the plugins using those functions) do not depend on wiretap on Windows. While doing that, rename the eth_* functions to ws_*. svn path=/trunk/; revision=25354
2008-04-21Add "tpncp." before all filter names so we don't crash with others.Stig Bjørlykke1-1/+1
This fixes solution 1 from bug 2402. svn path=/trunk/; revision=25137
2008-03-13Save about 1MB of RAM that was wasted for the entire Wireshark session.Stephen Fisher1-3/+2
This is done by using dynamically allocated memory for tpncp field names instead of relying on a static array of 256 bytes. This makes a noticeable difference because there are so many entries in tpncp/tpncp.dat. svn path=/trunk/; revision=24614
2008-03-01Rewrote to use g_strlcpy and g_strlcat.Stig Bjørlykke1-4/+3
svn path=/trunk/; revision=24525
2008-02-07Corrected some types.Stig Bjørlykke1-10/+10
svn path=/trunk/; revision=24280
2008-02-02Rewrote some prohibited APIs in epan/dissectors/ (sprintf, strcpy, strcat).Stig Bjørlykke1-2/+4
If we get some truncated strings we probably overwrote some buffers... svn path=/trunk/; revision=24249
2007-12-14Warning fixes: function declaration isn’t a prototypeJörg Mayer1-1/+1
svn path=/trunk/; revision=23862
2007-11-28Various changes with focus to startup speedupTomas Kukosa1-6/+11
The startup timeout on Win32 is reduced to 80% without assembler and to 50% with assembler usage (which is optional) proto.c - do not look up in filed tree and inserts in two steps but do it at once - next few small speedups - some often called elementary functions can be optionally implemented in assembler - dispart some functions to see more exact result from profiling packet-tpnc.c - do not reallocate memory for each filed svn path=/trunk/; revision=23643
2007-11-27Don't attach to any TCP/UDP ports if we weren't able to load the ↵Jeff Morriss1-20/+28
database--and thus the hf_ entries (which are required for dissection). svn path=/trunk/; revision=23620
2007-11-12Remove forgotten debug code.Anders Broman1-1/+0
svn path=/trunk/; revision=23430
2007-11-11From Valery Sigalov:Anders Broman1-0/+763
New dissector for TPNCP protocol. http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1853 svn path=/trunk/; revision=23428