aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
AgeCommit message (Collapse)AuthorFilesLines
2005-06-26Set the Info column to the correctly-capitalized name.Guy Harris1-10/+5
Use "val_to_str()" to set the Info column, and give the "hyperscsi.cmd" field a value_string table. svn path=/trunk/; revision=14785
2005-06-26packet-x11.c(1780) : warning C4090: 'function' : different 'const' qualifiersUlf Lamping1-2/+2
packet-x11.c(1780) : warning C4022: 'g_tree_insert' : pointer mismatch for actual parameter 3 packet-x11.c(2209) : warning C4090: 'initializing' : different 'const' qualifiers svn path=/trunk/; revision=14781
2005-06-26packet-smb.c(14406) : warning C4090: 'return' : different 'const' qualifiersUlf Lamping1-2/+2
svn path=/trunk/; revision=14780
2005-06-26packet-pgsql.c(891) : warning C4090: 'return' : different 'const' qualifiersUlf Lamping1-3/+3
svn path=/trunk/; revision=14779
2005-06-26packet-diameter.c(856) : warning C4090: 'function' : different 'const' ↵Ulf Lamping1-2/+2
qualifiers packet-diameter.c(856) : warning C4024: 'addVendor' : different types for formal and actual parameter 2 packet-diameter.c(857) : warning C4090: 'function' : different 'const' qualifiers packet-diameter.c(857) : warning C4024: 'addVendor' : different types for formal and actual parameter 3 packet-diameter.c(863) : warning C4090: 'function' : different 'const' qualifiers packet-diameter.c(863) : warning C4024: 'addCommand' : different types for formal and actual parameter 2 svn path=/trunk/; revision=14778
2005-06-26Add a signalAnders Broman1-19/+20
svn path=/trunk/; revision=14777
2005-06-26packet-dcerpc-samr.c(2795) : warning C4090: '=' : different 'const' qualifiersUlf Lamping1-3/+3
packet-dcerpc-samr.c(2900) : warning C4090: '=' : different 'const' qualifiers packet-dcerpc-samr.c(2933) : warning C4090: '=' : different 'const' qualifiers svn path=/trunk/; revision=14776
2005-06-26Fix a compiler warning.Anders Broman2-2/+4
svn path=/trunk/; revision=14774
2005-06-26packet-ansi_map.c(760) : warning C4090: 'return' : different 'const' qualifiersUlf Lamping1-4/+4
svn path=/trunk/; revision=14772
2005-06-26packet-ansi_a.c(460) : warning C4090: 'return' : different 'const' qualifiersUlf Lamping1-4/+4
svn path=/trunk/; revision=14771
2005-06-26packet-ansi_801.c(93) : warning C4090: 'return' : different 'const' qualifiersUlf Lamping1-5/+5
svn path=/trunk/; revision=14770
2005-06-26packet-ansi_683.c(93) : warning C4090: 'return' : different 'const' qualifiersUlf Lamping1-3/+3
svn path=/trunk/; revision=14769
2005-06-26packet-ansi_637.c(288) : warning C4090: 'return' : different 'const' qualifiersUlf Lamping1-4/+4
svn path=/trunk/; revision=14768
2005-06-26packet-alcap.c(195) : warning C4090: 'return' : different 'const' qualifiersUlf Lamping1-4/+4
svn path=/trunk/; revision=14767
2005-06-26rename the protocol and the protocol fields to msmms from mms to make way ↵Ronnie Sahlberg2-170/+169
for the telco mms protocol. svn path=/trunk/; revision=14761
2005-06-26prettify ftam by puttign the command name in the info columnRonnie Sahlberg2-9/+42
svn path=/trunk/; revision=14759
2005-06-26make dissect_ber_choice take a guint* that will return theRonnie Sahlberg32-964/+1070
index of the branch taken or -1 to make prettifications easier to implement. change the signature of dissect_ber_choice and rename it to dissect_ber_CHOICE to catch all occurences of the use of this function update asn2eth to use the new name/signature update all occurences of this function to the new name and new signature. svn path=/trunk/; revision=14758
2005-06-25From Martin MathiesonRonnie Sahlberg3-0/+999
New protocol : MS MediaServer protocol svn path=/trunk/; revision=14754
2005-06-25The data in an Identification packet is a message intended to beGuy Harris1-1/+12
human-readable; displayh it with "tvb_format_text()". svn path=/trunk/; revision=14752
2005-06-25Major rewrite to update to version TS 129 002 V6.9.0Anders Broman2-5138/+7911
svn path=/trunk/; revision=14749
2005-06-25new FTAM dissector generated by asn2ethRonnie Sahlberg2-4275/+7547
svn path=/trunk/; revision=14747
2005-06-25Make ACSE export the EXTERNAL construct since both CMIP and FTAM rely on it.Ronnie Sahlberg2-2/+8
svn path=/trunk/; revision=14746
2005-06-24 for unknown GraphicStringRonnie Sahlberg1-0/+7
just decode them as an octet string and say in the decode pane this is an unknown GraphicString svn path=/trunk/; revision=14742
2005-06-24fix to ber NULL handlingRonnie Sahlberg1-12/+16
1, make it actually show the hf field when present 2, make it handle imlicit_tag properly svn path=/trunk/; revision=14741
2005-06-23From Valery Vybornov:Anders Broman2-2/+6
add register_dissector to packet-tcap.c svn path=/trunk/; revision=14738
2005-06-23fix for CMIP, we should set the opcode_type BEFORE we try to use it in ↵Ronnie Sahlberg1-12/+12
the subdissector, it doesnt work really that well if we have opcode_type set to INVOKE from the previous packet and this new packet contains a ReturnResult. svn path=/trunk/; revision=14733
2005-06-22update to packet-berRonnie Sahlberg1-24/+209
1, start making indefinite length constructions actually work 2, when attempting to decode an unknown BER octet sequence, do not generate [malformed packet] just because the length does not make sense and might point outside the tvb. it might just be that there are implicit tags in the asn1 specification and that it is just impossible to decode the octet stream without knowledge of the asn. svn path=/trunk/; revision=14728
2005-06-22add a dummy variable frame_number to dissect_frame() and assign it the ↵Ronnie Sahlberg1-1/+6
current frame number so that the crashdump that buildbot generates will show which frame the problem occured in. this is useful since some bugs only trigger ia crash on some platforms. example bug 255 which does not trigger a crash on linux redhat 7.1 svn path=/trunk/; revision=14727
2005-06-22only create the ACSE protocol tree if there is an ACSE layer present.Ronnie Sahlberg1-18/+18
do not create it if it is just a SES_DATA_TRANSFER PDU svn path=/trunk/; revision=14726
2005-06-22remove a dissector table we no longer use from ACSERonnie Sahlberg3-39/+22
and also from the CMIP and FTAM dissectors that tried to register against it. Implement a workaround for the asn2eth bug (can not yet handle tagged assignments) to the conformance file and remove the warnings from the template file. Since workaround is implemented in conformance file, make make copy_files install the dissector instead of printing a warning message. svn path=/trunk/; revision=14725
2005-06-22add ipbcp attribute as in Q.1970Luis Ontanon1-5/+50
svn path=/trunk/; revision=14724
2005-06-21terminate some value_strings properly with a {0,NULL}Ronnie Sahlberg1-0/+6
svn path=/trunk/; revision=14721
2005-06-21the maximum ASN OID length is 256 bytes and there is a define to control this.Ronnie Sahlberg6-7/+16
fix bug251 and all other occurances where an oid string passed to packet_ber_object_identifier() is not defined as foo[MAX_OID_STR_LEN] svn path=/trunk/; revision=14720
2005-06-20if exists call the h248term subdissector.Luis Ontanon1-32/+45
svn path=/trunk/; revision=14717
2005-06-20From Mike Duigou:Anders Broman1-178/+202
In order to get filtering of conversations and > endpoints to work from the endpoints and conversations windows I found > it necessary to add a new AT_URI address type and a SAT_JXTA. This also > necessitated a change to to_str.c to avoid a buffer overflow problem. > Please review these changes carefully. > > Also includes some changes to the jxta dissector to fix filtering on > generated fields and some changes to the types used for ints/unsigned ints. > > Fixes a bug with the processing of messages containing namespaces. svn path=/trunk/; revision=14716
2005-06-20Fix a format string vulneratility in the AFP dissector identifiedGerald Combs11-27/+27
by iDEFENSE. Add constant format strings to proto_item_append_text() in a bunch of other dissectors. Copy a comment from proto.c to proto.h. svn path=/trunk/; revision=14713
2005-06-20convert the functionRonnie Sahlberg1-55/+33
dissect_spnego_mechTypes() tu use the packet-ber api instead of the asn1 api. svn path=/trunk/; revision=14712
2005-06-20convert one function to use packet-ber instead of asn1Ronnie Sahlberg1-53/+26
svn path=/trunk/; revision=14711
2005-06-20move two functions that are not used by tcap and only used by gsm_a and ↵Ronnie Sahlberg4-66/+60
gsm_ss into gsm_ss. remove the include <epan.asn1.h> from tcap since it no longer needs that file. only 9 dissectors remain that use asn1.h svn path=/trunk/; revision=14710
2005-06-20move one function only used by SPNEGO to packet-spnego.cRonnie Sahlberg5-38/+33
remove the include of <epan/asn1.h> from kerberos, ntlmssp and gssapi since they no longer need to include that file. svn path=/trunk/; revision=14709
2005-06-20convert gssapi to use packet-ber helpers instead of the asn1 ones.Ronnie Sahlberg2-96/+44
once spnego is converted as well, the epan/asn1.h include can be removed from : kerberos, spnego, gssapi and ntlmssp svn path=/trunk/; revision=14708
2005-06-19Add some Cisco AVP:sAnders Broman1-1/+18
svn path=/trunk/; revision=14705
2005-06-19Fix trivial warningJörg Mayer2-2/+2
svn path=/trunk/; revision=14701
2005-06-19New autogenerated ACSE dissector.Ronnie Sahlberg2-1731/+2315
Note that the autogenerated dissector contains two bugs which i belive are asn2eth bugs. This is why make copy_files does not work. The comment at the top of the generated file explains which two changes one has to do manually after autogenerating the dissector, until asn2eth gets fixed. svn path=/trunk/; revision=14699
2005-06-19make cmip and ftam also register by ber oid so that they will work when the ↵Ronnie Sahlberg2-0/+5
new ACSE goes in svn path=/trunk/; revision=14696
2005-06-19push one more object into the session structure so acse can pick it up later.Ronnie Sahlberg2-0/+4
svn path=/trunk/; revision=14695
2005-06-19from Didier GautheronLuis Ontanon3-16/+1097
The new AFP 3.2 specification used by Apple OS X 10.4 svn path=/trunk/; revision=14694
2005-06-18Partial fix for bug 191: Sanity check is ok nowJörg Mayer1-3/+14
svn path=/trunk/; revision=14692
2005-06-18Dominik Kuhlen: Fix a copy/paste bug reported inJörg Mayer1-1/+1
http://bugs.ethereal.com/bugzilla/show_bug.cgi?id=211 svn path=/trunk/; revision=14690
2005-06-18from Vasanth ManickamLuis Ontanon2-0/+585
Synergy is a cross platform software which enables to easily share a single mouse and keyboard between multiple computers with different operating systems, each with its own display, without special hardware. Its listed on sourceforge (http://synergy2.sourceforge.net/). svn path=/trunk/; revision=14689