aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-manolito.c
AgeCommit message (Collapse)AuthorFilesLines
2010-04-06#include <string.h> not needed.wmeier1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32411 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-03Remove unneeded #include <stdio.h>wmeier1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32367 f5534014-38df-0310-8fa8-9805f1628bb7
2010-01-13From Didier Gautheron:etxrab1-1/+1
check_col.diff Remove redundant calls to check_col() if it guards only one columns function with one parameter after the column type. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4394 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31519 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-09Don't guard col_set_str (COL_INFO/COL_PROTOCOL) with col_checkkrj1-4/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29345 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkkrj1-2/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29340 f5534014-38df-0310-8fa8-9805f1628bb7
2006-05-21change a whole bunch of ethereal into wiresharksahlberg1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18196 f5534014-38df-0310-8fa8-9805f1628bb7
2005-09-11Replace tvb_memcpy() calls that extract IPv4 addresses into a guint32,guy1-2/+2
and that extract IPv6 addresses into a "struct e_in6_addr", with tvb_get_ipv4() and tvb_get_ipv6() calls - except for some that we remove, by using proto_tree_add_item(), rather than replacing. Have epan/tvbuff.h include epan/ipv6-utils.h, to define "struct e_in6_addr" (not necessary to declare the tvbuff routines, but including it there means "struct e_in6_addr" is guaranteed to be defined before those declarations, so we don't get compiler complaints if we define it *after* those declarations). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15758 f5534014-38df-0310-8fa8-9805f1628bb7
2005-08-17remove g_malloc from manolitosahlberg1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15383 f5534014-38df-0310-8fa8-9805f1628bb7
2005-07-30More char -> const char fixesjmayer1-2/+2
Declare some functions static git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15158 f5534014-38df-0310-8fa8-9805f1628bb7
2005-07-09Squelch various signed vs. unsigned warnings by:guy1-5/+5
making pointers to byte data be "guint8 *" rather than "char *", and making buffers holding byte data arrays of "guint8" rather than arrays of "char"; making pointers to text strings "char *" rather than "guchar *"; appropriately casting pointers (cast to "guint8 *" when passing to routines expecting "guint8 *" or when assigning to "guint8 *"); making port-number preferences "guint"; making enum preferences "gint"; making hf_ variables "int". Clean up white space. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14884 f5534014-38df-0310-8fa8-9805f1628bb7
2005-03-16Replace malloc()/free() with g_malloc()/g_free().gerald1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13784 f5534014-38df-0310-8fa8-9805f1628bb7
2005-03-16Doing a g_assert() that can fail with data that could appear in a packetguy1-4/+10
is wrong; cast the "guint8" value to "guint" to widen it, so that adding 1 to it doesn't overflow. (But I don't think that cast should be necessary - the "usual arithmetic conversions" in C should widen the value anyway.) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13770 f5534014-38df-0310-8fa8-9805f1628bb7
2005-03-16close potential overflow causing malloc to allocate 0 bytessahlberg1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13766 f5534014-38df-0310-8fa8-9805f1628bb7
2004-08-06From Jeff Connelly: MANOLITO support.guy1-0/+295
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11614 f5534014-38df-0310-8fa8-9805f1628bb7