aboutsummaryrefslogtreecommitdiffstats
path: root/asn1
AgeCommit message (Collapse)AuthorFilesLines
2011-02-02Add gsmcdr to the makefiles.Anders Broman2-0/+2
svn path=/trunk/; revision=35758
2011-02-02Export more functions.Anders Broman1-0/+9
svn path=/trunk/; revision=35757
2011-02-02Routines to dissect GPRS CDR's tranported in GTP'Anders Broman8-0/+1142
svn path=/trunk/; revision=35756
2011-02-02Add the local makefiles.Anders Broman3-0/+102
svn path=/trunk/; revision=35755
2011-02-02From Holger Freyther:Anders Broman3-246/+216
- Code Cleanups and preparation to call code from gsmtap - Fix a bug in the asn1 file, Bug found with traces from OsmocomTETRA svn path=/trunk/; revision=35754
2011-02-02The Beijing Institute of Technology (BIT) and associate professor LI Hai has ↵Anders Broman4-0/+3387
created a TETRA decoder for wireshark, they made the decision to use the ASN1 infrastructure for creating the dissector and were kind enough to send the GPLed sourcecode to us(The Osmocom Group). This group is using a protocol provided by their equipment. This is an initial checkin of the code from BIT, it is not fit for inclusion in Wireshark in this state. Further patches are expected before the code can be integrated by being added to the makefiles. svn path=/trunk/; revision=35753
2011-01-30Introduce "Fragment count" filter element for all protocols doing reassembly.Stig Bjørlykke3-0/+15
svn path=/trunk/; revision=35705
2011-01-27The attemt to pretify MSISDN and IMSI breaks the dissection.Anders Broman1-27/+0
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5593 svn path=/trunk/; revision=35679
2011-01-26packet-ocsp-template.c:47: warning: type defaults to 'int' in declaration of ↵Anders Broman1-1/+1
'proto_ocsp' svn path=/trunk/; revision=35657
2011-01-26From Kaspar Brand:Anders Broman2-1/+4
(Part II) SSL/TLS dissector: add support for "Certificate Status" messages (aka OCSP stapling) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5503 svn path=/trunk/; revision=35656
2011-01-26From Kaspar Brand:Anders Broman1-0/+1
SSL/TLS dissector: add support for "Certificate Status" messages (aka OCSP stapling) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5503 svn path=/trunk/; revision=35655
2011-01-25Export Global-ENB-ID.Anders Broman1-0/+1
svn path=/trunk/; revision=35645
2011-01-23Export UE-EUTRA-Capability.Anders Broman2-2/+4
svn path=/trunk/; revision=35634
2011-01-20Allow for expert items to be actually attached somewhere.Jaap Keuter1-9/+12
svn path=/trunk/; revision=35594
2011-01-19Updated to OMA-TS-ULP-V2_0-20100806-DAnders Broman3-1107/+1119
with asn1 files from eyimjia. Files hand edited to pass as2wrs. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5593 (Does not fix the bug) svn path=/trunk/; revision=35577
2011-01-16From Porus Mehta:Anders Broman1-7/+7
Corrections to ANSI MAP ASN.1 specifications. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5584 svn path=/trunk/; revision=35556
2011-01-16r35546 Replace some tvb_get_ptr()s with tvb_get_ephemeral_string()s to ↵Anders Broman1-1/+1
ensure the return string is NULL terminated. Make the change also in the .cnf file svn path=/trunk/; revision=35551
2011-01-14Add tvb_get_[n|le]toh[40|48|56]() accessors. Addresses bug 5082.Chris Maynard1-18/+6
svn path=/trunk/; revision=35538
2011-01-12Use value_string_ext in a couple of places.Anders Broman1-14/+25
svn path=/trunk/; revision=35501
2011-01-12TCAP- Application context name not been decoded correctlyAnders Broman1-1/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5573 svn path=/trunk/; revision=35498
2011-01-11ldap.cnf:782: warning: ISO C90 forbids mixed declarations and codeAnders Broman1-1/+1
svn path=/trunk/; revision=35476
2011-01-11From Matthieu Patou <mat@samba.org>Ronnie Sahlberg2-5/+53
Dissect LDAP DirSyncFlags to show the bits of this bitmap. svn path=/trunk/; revision=35474
2011-01-06More misc. CLDAP improvements for Active Directory including updatingStephen Fisher1-32/+44
field names and adding descriptions, changing the Domain GUID in the "LDAP ping" response to a FT_GUID instead of FT_BYTES, etc. svn path=/trunk/; revision=35407
2011-01-06More minor cleanup/fixes for MS Active Directory's use of CLDAP.Stephen Fisher1-20/+13
svn path=/trunk/; revision=35404
2011-01-06Minor corrections to NtVer dissection for NETLOGON_NT_VERSION Options BitsStephen Fisher1-66/+69
in MSCLDAP packets per Microsoft's MS-ADTS specification, section 7.3.1.1, revision 26 (11/19/2010). Also re-format code a bit. svn path=/trunk/; revision=35403
2011-01-05Reset the global pdu_type *before* returning.Jeff Morriss1-14/+28
svn path=/trunk/; revision=35391
2011-01-05Remove unreached statement.Jeff Morriss1-1/+0
svn path=/trunk/; revision=35387
2010-12-30Only chop the last character (new line) from the error message.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=35310
2010-12-29Fix a buffer overflow in the engineId preferences. Fixes bug 5530.Gerald Combs1-11/+15
svn path=/trunk/; revision=35298
2010-12-28Add tvb_bcd_dig_to_ep_str()Anders Broman1-1/+5
/* * Given a tvbuff, an offset into the tvbuff, and a length that starts * at that offset (which may be -1 for "all the way to the end of the * tvbuff"), fetch BCD encoded digits from a tvbuff starting from either * the low or high half byte, formating the digits according to an input digit set, * if NUll a default digit set of 0-9 returning "?" for overdecadic digits will be used. * A pointer to the EP allocated string will be returned. * Note a tvbuff content of 0xf is considered a 'filler' and will end the conversion. */ svn path=/trunk/; revision=35286
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris43-173/+173
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-12-16From Pascal Quantin:Anders Broman1-64/+64
When I coded the decoding of the feature group indicator, I decided to do not display the feature group content when it is not supported. After further thinking I find it more useful to always display the features of a given indicator whether it is supported or not. svn path=/trunk/; revision=35200
2010-12-06Make some prefs callback functions static. (These modules don't use ↵Jeff Morriss8-56/+72
proto_reg_handoff_*() as their prefs callback.) svn path=/trunk/; revision=35138
2010-12-06Make some (preference) variables static.Jeff Morriss1-3/+3
svn path=/trunk/; revision=35134
2010-12-06Fix various typos and spelling errors.Bill Meier4-17/+17
svn path=/trunk/; revision=35126
2010-11-17- Update to 3GPP TS 25.413 V9.4.0 (2010-09).Anders Broman7-7/+55
- Fill the value_strings. svn path=/trunk/; revision=34929
2010-11-17- Update to 3GPP TS 25.413 V9.4.0 (2010-09).Anders Broman7-87/+378
- Fill the value_strings. svn path=/trunk/; revision=34928
2010-11-17- Update to 3GPP TS 25.413 V9.4.0 (2010-09).Anders Broman7-14/+59
- Fill the value_strings. svn path=/trunk/; revision=34925
2010-11-17- Use SABP:s SCTP ppid.Anders Broman2-3/+9
- Use value_string_ext. svn path=/trunk/; revision=34924
2010-11-16value_string_ext fixes.Anders Broman4-7/+314
svn path=/trunk/; revision=34908
2010-11-16Modify 'compare_files' target: ignore #line changes; compare from ↵Bill Meier1-1/+1
epan\dissectors to asn1\... svn path=/trunk/; revision=34901
2010-11-16Use value_string_ext fcns to access several value_string arrays;Bill Meier3-17/+39
Minor whitespace cleanup. svn path=/trunk/; revision=34900
2010-11-15Use value_string_ext fcns to access several value_string arrays.Bill Meier1-3/+11
svn path=/trunk/; revision=34894
2010-11-15Use value_string_ext fcns to access several value_string arrays.Bill Meier1-1/+3
svn path=/trunk/; revision=34891
2010-11-15Use value_string_ext fcns to access several value_string arrays.Bill Meier1-2/+8
svn path=/trunk/; revision=34890
2010-11-15Use value_string_ext fcns to access a value_string array.Bill Meier1-2/+5
svn path=/trunk/; revision=34884
2010-11-15Use value_string_ext fcns to access a value_string array.Bill Meier1-5/+8
svn path=/trunk/; revision=34883
2010-11-15Use value_string_ext fcns to access certain value_string arrays;Bill Meier1-1088/+1101
Whitespace cleanup. svn path=/trunk/; revision=34882
2010-11-15Update package_name_vals[] value_string array:Bill Meier1-6/+24
- Add new entries based on: http://www.iana.org/assignments/megaco-h248 last updated 2010-10-01; - Fix a typo (incorrect value for an entry); - Switch values between two entries to match the IANA list; - Switch two entries so list is in ascending order by value. svn path=/trunk/; revision=34881
2010-11-15Regenerate packet-nbap.c now that asn2wrs sorts value_string arrays used ↵Bill Meier1-8/+8
with value_string_ext fcns; Change nbap.cnf to use val_to_str_ext to access protocolIE_ID value_string array. Also: Minor whitespace cleanup in nbap.cnf. svn path=/trunk/; revision=34876