aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-elcom.c
AgeCommit message (Collapse)AuthorFilesLines
2013-10-24Remove need for match_port #define in packet_info.h and just replace ↵Michael Mann1-1/+1
existing calls. svn path=/trunk/; revision=52815
2013-09-22emem -> wmem conversion:Pascal Quantin1-2/+2
- ep_tvb_get_bits() -> wmem_packet_tvb_get_bits() - tvb_g_memdup()/ep_tvb_memdup() -> tvb_memdup() - tvb_fake_unicode()/tvb_get_ephemeral_faked_unicode() -> tvb_get_faked_unicode() - tvb_get_g_string()/tvb_get_ephemeral_string()/tvb_get_seasonal_string() -> tvb_get_string() - tvb_get_g_unicode_string()/tvb_get_ephemeral_unicode_string() -> tvb_get_unicode_string() - tvb_get_ephemeral_string_enc() -> tvb_get_string_enc() - update docs accordingly svn path=/trunk/; revision=52172
2013-06-14Remove check_col() and the occasional tree.Michael Mann1-5/+4
svn path=/trunk/; revision=49920
2013-03-17[-Wmissing-prototypes]Anders Broman1-0/+3
Use explicit casts. svn path=/trunk/; revision=48347
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45017
2012-08-10Use val_to_str_const() where appropriate;Bill Meier1-1/+1
Also (for a few files): - create/use some extended value strings; - remove unneeded #include files; - remove unneeded variable initialization; - re-order fcns slightly so prefs_reg_handoff...() at end, etc svn path=/trunk/; revision=44438
2012-08-10convert some simple uses to use ephemeral memoryMichael Mann1-6/+2
svn path=/trunk/; revision=44413
2012-07-18Fix non-proto_tree_add_item() calls passing an ENC_ value as the lastGuy Harris1-2/+2
argument. svn path=/trunk/; revision=43806
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-05-07Get rid of remaining Booleans-as-encoding-arguments inGuy Harris1-1/+1
proto_tree_add_item() calls. (The field is a counted string, so the byte order is in theory relevant, although the count is, in this case, a single byte.) svn path=/trunk/; revision=42482
2012-04-27As suggested in ↵Jeff Morriss1-1/+1
http://www.wireshark.org/lists/wireshark-dev/201204/msg00062.html : Don't use ENC_BIG_ENDIAN or ENC_LITTLE_ENDIAN with ENC_ASCII: ASCII has no endianism, so ENC_NA is more appropriate. svn path=/trunk/; revision=42297
2012-02-20Thou shalt not stop dissecting after doing processing for COL_INFO ....Bill Meier1-3/+1
svn path=/trunk/; revision=41083
2012-01-14Minor updates:Bill Meier1-29/+33
- checkcol() not req'd in a few cases; - Add an XXX comment about the (mis?)use of tvb_length(); - lenght -> length; svn path=/trunk/; revision=40505
2011-12-09From Juha Takala via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6654Alexis La Goutte1-4/+13
ELCOM dissector needs small fixes for some protocol sub-field texts svn path=/trunk/; revision=40131
2011-12-04Enhance Elcom dissectorAlexis La Goutte1-584/+589
Fix indent and update modelines svn path=/trunk/; revision=40092
2011-12-04Enhance Elcom dissectorAlexis La Goutte1-113/+129
Replace proto_tree_add_* by proto_tree_add_item Replace switch/case by value_string svn path=/trunk/; revision=40091
2011-12-03Fix 2 newly reported Coverity CID's 1331 & 1332: UNUSED_VALUE.Chris Maynard1-27/+27
svn path=/trunk/; revision=40086
2011-12-02From Juha Takala:Anders Broman1-0/+760
dissector for ELCOM communication protocol. This protocol is used mainly by power utilities, to exchange historical, cyclic, and event based data between SCADA systems. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6616 svn path=/trunk/; revision=40071