summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-sita.c
AgeCommit message (Collapse)AuthorFilesLines
2012-05-15Remove unneeded #includes (stdlib, stdio, ctypes, time);Bill Meier1-241/+343
In a few cases: do some whitespace, indentation cleanup & reformatting. svn path=/trunk/; revision=42632
2011-12-28Prepend the sita_phdr fields with "sita_" to make them lessGerald Combs1-10/+9
collision-prone. svn path=/trunk/; revision=40320
2011-08-16More misspellings of "unknown", for bug 6244.Guy Harris1-1/+1
svn path=/trunk/; revision=38565
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-6/+6
keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) svn path=/trunk/; revision=35224
2010-04-03Remove unneeded #include <stdio.h>Bill Meier1-1/+0
svn path=/trunk/; revision=32367
2009-11-17Remove the address operator from value_string arrays fed to VALS()Gerasimos Dimitriadis1-1/+1
svn path=/trunk/; revision=30995
2009-08-09Don't guard col_clear with col_checkKovarththanan Rajaratnam1-2/+2
svn path=/trunk/; revision=29344
2009-04-03Use an emem_strbuf_t where appropriate.Guy Harris1-8/+10
svn path=/trunk/; revision=27954
2009-03-29Define certain fcns as static (if not used externally).Bill Meier1-1/+2
Also: whiule we're at it: - fix hf[] blurbs as appropriate to use NULL; - fix some indentation svn path=/trunk/; revision=27890
2008-12-20Fix various typos and spelling errors (mostly in text strings)Bill Meier1-2/+2
svn path=/trunk/; revision=27065
2008-09-27Small cleanup of proto_reg_handoff & etcBill Meier1-25/+18
- 'once-only' not req'd in some cases - use find_dissector as appropriate - remove unneeded code svn path=/trunk/; revision=26284
2007-12-18No extended characters here please.Jaap Keuter1-1/+1
svn path=/trunk/; revision=23918
2007-12-16From Fulko Hew:Stig Bjørlykke1-0/+309
1/ patches to support the libpcap/SITA format 'WTAP_ENCAP_SITA'. 2/ patches to the LAPB dissector to accept MLP (Multi-link protocol) (although MLP dissection has _not_ been added (yet)). 3/ New protocol dissectors for: a) SITA's WAN layer 0 status header, b) An airline protocol ALC, c) An airline (and other industry) protocol UTS. These patches are submitted as a set since the new protocol dissectors are not useful without the libpcap/SITA related changes, and there is no point in having those changes without the additional dissectors. This fixes bug/enhancement 2016. svn path=/trunk/; revision=23885