aboutsummaryrefslogtreecommitdiffstats
path: root/asn1
AgeCommit message (Collapse)AuthorFilesLines
2011-10-23From Pascal Quantin.Anders Broman11-0/+1546
The attached patch adds the LPPa (LTE Positioning Protocol A) dissector as specified in 3GPP 36.455 release 9.4.1. (Just adding the asn1 dir) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6478 svn path=/trunk/; revision=39515
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier35-134/+134
Also: remove trailing whitespace for a number of files. svn path=/trunk/; revision=39503
2011-10-20Use ENC_NA as proto_tree_add_item() encoding arg for FT_ETHER hf[] field type.Bill Meier1-1/+1
svn path=/trunk/; revision=39491
2011-10-19Let subdissectors have a stab at the packet even if it's cut short.Anders Broman2-60/+70
svn path=/trunk/; revision=39472
2011-10-18Do some more conversions of proto_tree_add_item() 'encoding' argBill Meier2-10/+10
(previously missed). svn path=/trunk/; revision=39451
2011-10-16From Pascal Quantin.Anders Broman1-0/+34
LTE Positioning Protocol dissector. Add missing file. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6460 svn path=/trunk/; revision=39437
2011-10-16From Pascal Quantin.Anders Broman10-0/+2114
LTE Positioning Protocol dissector https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6460 svn path=/trunk/; revision=39436
2011-10-15Windows: Fix and re-enable asn1\t124 build;Bill Meier2-2/+2
svn path=/trunk/; revision=39432
2011-10-15Convert asn1 template files proto_tree_add_item() 'encoding' arg for field ↵Bill Meier3-4/+4
types FT_STRING as follows: 1. If there's no character encoding (ENC_ASCII, ...) specified then use ENC_ASCII. 2. Always use ENC_NA (replacing any existing True/1/FALSE/0 /ENC_BIG_ENDIAN/ENC_LITTLE_ENDIAN). svn path=/trunk/; revision=39428
2011-10-14Build generate_export when building 'all' on Windows too.Jeff Morriss1-1/+1
svn path=/trunk/; revision=39423
2011-10-14Don't generate the conformance file for exported types when building theJeff Morriss36-51/+51
dissector; instead built it only when the separate target (generate_export) is built. Built generate_export when building "all". This prevents the exp_*.cnf files from being regenerated each time another one of the exp_*.cnf files (which the current dissector depends on) has changed (despite the fact that the exported types does not depe Also fix the CLEANFILES definition so it actually cleans things. svn path=/trunk/; revision=39421
2011-10-14Export MessageSecurityLabel_PDU.Stig Bjørlykke1-0/+1
svn path=/trunk/; revision=39414
2011-10-14Export ESSSecurityLabel_PDU.Stig Bjørlykke2-1/+2
svn path=/trunk/; revision=39413
2011-10-13Dissect NSAP encoded transport layer address.Anders Broman2-4/+23
svn path=/trunk/; revision=39408
2011-10-12Update the Camel and MAP ASN.1 files.Anders Broman37-193/+553
svn path=/trunk/; revision=39386
2011-10-11Update template to match generated dissector - dissector_try_port() isGuy Harris1-5/+5
dead, long live dissector_try_uint(). svn path=/trunk/; revision=39377
2011-10-11Build the LCS-AP dissector.Anders Broman4-4/+6
svn path=/trunk/; revision=39365
2011-10-11From Spenser Sheng:Anders Broman11-0/+1758
LCS-AP dissector. svn path=/trunk/; revision=39362
2011-10-10Make it possible to build custom ASN1 based dissectors on Windows.Anders Broman2-2/+11
svn path=/trunk/; revision=39340
2011-10-10Fix unused function warningsAnders Broman3-3/+25
svn path=/trunk/; revision=39338
2011-10-10Fix ASN.1 dissector generation on Windows.Jeff Morriss3-24/+10
svn path=/trunk/; revision=39337
2011-10-10Fix a typoJeff Morriss1-2/+2
svn path=/trunk/; revision=39336
2011-10-10Don't remove the ASN.1 dissectors when cleaning: we don't (re)build them ↵Jeff Morriss2-4/+6
during the make process yet. svn path=/trunk/; revision=39335
2011-10-10Build the ASN.1 dissectors directly into epan/dissectors (rather than buildingJeff Morriss99-701/+351
them and then copying them over). The "all" target to builds these dissectors now (instead of "generate_files" and/or "copy_files"). asn2wrs's "-O" option now means "the dissector goes in this directory" (rather than "all output goes in this directory"); it also means that the "-s" (single output file) option is now required. Fix things up so that it's possible to build all of the ASN.1 dissectors in one shot. Fix building of conformance files when doing out-of-source-tree builds. Unfortunately "make all" in the asn1 directory always builds something--I think because of circular depedencies. svn path=/trunk/; revision=39333
2011-10-10Convert 'encoding' parameter of certain proto_tree_add_item() calls in asn1/*:Bill Meier5-112/+112
Specifically: Replace FALSE|0 and TRUE|1 by ENC_BIG_ENDIAN|ENC_LITTLE_ENDIAN as the encoding parameter for proto_tree_add_item() calls which directly reference an item in hf[] which has a type of: FT_BOOLEAN FT_IPv4 FT_EUI64 FT_GUID FT_UINT_STRING Also: For type FT_IPv6 use ENC_NA. (This was missed in SVN #39260) svn path=/trunk/; revision=39332
2011-10-06Typo FT_IPv4 isf FT_IPv6.Anders Broman1-1/+1
Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6435 svn path=/trunk/; revision=39297
2011-10-06Add exportsAnders Broman1-0/+3
svn path=/trunk/; revision=39296
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in asn1 ↵Bill Meier12-162/+162
dissectors: Specifically: Replace FALSE|0 and TRUE|1 by ENC_BIG_ENDIAN|ENC_LITTLE_ENDIAN as the encoding parameter for proto_tree_add_item() calls which directly reference an item in hf[] which has a type of: FT_UINT8 FT_UINT16 FT_UINT24 FT_UINT32 FT_UINT64 FT_INT8 FT_INT16 FT_INT24 FT_INT32 FT_INT64 FT_FLOAT FT_DOUBLE svn path=/trunk/; revision=39294
2011-10-06Add missing (presumably) entries for credssp,idmp,t124 & x721.Bill Meier1-4/+8
However: t124 & x721 fail to build on Windows so comment them out. svn path=/trunk/; revision=39293
2011-10-05Add a couple of OID strings.Anders Broman1-0/+3
svn path=/trunk/; revision=39274
2011-10-05Use ENC_NA as encoding for proto_tree_add_item() calls which directly ↵Bill Meier6-179/+179
reference an hf item (in hf[] with types: FT_NONE FT_BYTES FT_IPV6 FT_IPXNET FT_OID Note: Encoding field set to ENC_NA only if the field was previously TRUE|FALSE|1|0|ENC_LITTLE_ENDIAN|ENC_BIG_ENDIAN svn path=/trunk/; revision=39263
2011-10-03From Pascal Quantin:Anders Broman2-2/+46
Add dissection of GERAN related messages. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6427 svn path=/trunk/; revision=39246
2011-10-02From Pascal Quantin:Anders Broman2-0/+28
[LTE RRC] Enhance dissection of NeighCellConfig IE. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6412 svn path=/trunk/; revision=39219
2011-09-30Add credssp to subdirs listGraeme Lunt1-0/+1
svn path=/trunk/; revision=39197
2011-09-30Microsoft Credential Security Support Provider (CredSSP) support. Graeme Lunt7-0/+408
Used by direct approach RDP for NTLMSSP authentication under SSL. svn path=/trunk/; revision=39196
2011-09-29Make it possible to dissect proprietarry Opcodes.Anders Broman3-14/+60
svn path=/trunk/; revision=39183
2011-09-27Get rid of check_col, while at it set ENC.Anders Broman10-155/+69
svn path=/trunk/; revision=39164
2011-09-26Move tvb_new_octet_aligned() to tvbuff.c and use it.Anders Broman1-2/+2
svn path=/trunk/; revision=39150
2011-09-23Change the case of "sNMPv2-Trap" to match RFC 3416. Reported by Qiyao.Gerald Combs1-1/+1
svn path=/trunk/; revision=39114
2011-09-21Fix and suppress some warningsGraeme Lunt2-3/+15
svn path=/trunk/; revision=39072
2011-09-21Remove Makefile.inStig Bjørlykke1-651/+0
Set default svn:ignore targets. svn path=/trunk/; revision=39071
2011-09-21Add asn/t124/Makefile to configure.in and remove it from the repository.Graeme Lunt1-651/+0
svn path=/trunk/; revision=39069
2011-09-21Fix for unary minus warning on WindowsGraeme Lunt1-0/+5
svn path=/trunk/; revision=39068
2011-09-21Basic RDP dissection, which can dissect the connection sequence. Graeme Lunt12-17/+3083
A work in progress. Can be used with the SSL dissector to decrypt Enhanced RDP Security SSL. With Standard RDP Security (e.g those on Wiki), the PDUs are all encrypted after the SecurityExchange PDU. Wiki to be updated with an example SSL protected capture and associated key material. svn path=/trunk/; revision=39066
2011-09-16From Liam Sharp:Anders Broman1-17/+28
In VoIP calls flow/graph display replace GR/GI etc with presentationTokenRequest/Response etc https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6321 svn path=/trunk/; revision=39022
2011-09-12Fix a typoAnders Broman1-1/+1
svn path=/trunk/; revision=38978
2011-09-12Update to V10.2.0 (2011-06)Anders Broman7-77/+529
svn path=/trunk/; revision=38972
2011-09-12Update to V9.6.0 (2011-06)Anders Broman7-17/+21
svn path=/trunk/; revision=38971
2011-09-12From Liam Sharp:Anders Broman1-24/+10
VoIP Calls->Graph TCS and OLC display corruption. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6318 svn path=/trunk/; revision=38970
2011-09-12from Liam Sharp:Anders Broman1-8/+12
Info column to show subMessageIdentifier type strings for H245/H.239 packets With a change to remove "subMessageIdentifer=" as I think that clutters up the Infocol. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6315 svn path=/trunk/; revision=38968