aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
AgeCommit message (Collapse)AuthorFilesLines
2005-08-21remove sprintfRonnie Sahlberg1-274/+285
svn path=/trunk/; revision=15490
2005-08-20remove sprintfRonnie Sahlberg1-20/+18
svn path=/trunk/; revision=15486
2005-08-20removal of sprintfRonnie Sahlberg1-14/+25
svn path=/trunk/; revision=15484
2005-08-20There's no longer a need to individually remove items fromGuy Harris1-7/+0
acse_ctx_oid_table - destroying the hash table will destroy the hash table items, and the destroy function no longer has any work to do because the OID strings are now allocated with se_strdup() (and thus get freed when the capture is closed). Regenerate packet-acse.c, which also regenerates acse-exp.cnf. svn path=/trunk/; revision=15480
2005-08-20Flag the "add_string" parameter as unused if it is - and don't flag itGuy Harris1-19/+19
as such if it *is* used. Get rid of the "add_string" parameter to "param_digits_basic", as that function *isn't* called through a pointer. Don't flag arguments in declarations as unused; you only do that in definitions. Clean up indentation. svn path=/trunk/; revision=15479
2005-08-20If we delete a file, don't forget to remove it from Makefile.commonJörg Mayer1-1/+0
svn path=/trunk/; revision=15476
2005-08-20- Include the .h files in their .c files.Jörg Mayer1-35/+0
- Remove epan/dissectors/packet-sna.h, it isn't used anywhere. svn path=/trunk/; revision=15475
2005-08-20removed MSVC warnings:Ulf Lamping3-10/+10
packet-camel.c(6829) : warning C4101: 'version_str' : unreferenced local variable packet-quakeworld.c(172) : warning C4090: 'return' : different 'const' qualifiers packet-smb.c(10859) : warning C4101: 'target_name_len' : unreferenced local variable packet-smb.c(10860) : warning C4101: 'fn_len' : unreferenced local variable packet-smb.c(10858) : warning C4101: 'fn' : unreferenced local variable svn path=/trunk/; revision=15474
2005-08-20Win32: exported DATA must be declared with ETH_VAR_IMPORT to be available ↵Ulf Lamping1-1/+1
from outside the lib fixes current Win32 buildbot problem svn path=/trunk/; revision=15473
2005-08-20more sprintf updatesRonnie Sahlberg4-24/+32
svn path=/trunk/; revision=15469
2005-08-20remove sprintfRonnie Sahlberg1-1/+1
svn path=/trunk/; revision=15467
2005-08-20get rid of a whole chunk of sprintfsRonnie Sahlberg1-133/+130
svn path=/trunk/; revision=15466
2005-08-20sprintf eliminationRonnie Sahlberg1-3/+6
svn path=/trunk/; revision=15460
2005-08-20sprintf removalsRonnie Sahlberg1-4/+7
svn path=/trunk/; revision=15459
2005-08-20remove some more sprintfRonnie Sahlberg2-8/+11
svn path=/trunk/; revision=15458
2005-08-20removal of even more sprintfRonnie Sahlberg2-4/+8
svn path=/trunk/; revision=15457
2005-08-20For AFP requests, add in the frame with the (last part of the) reply, ifGuy Harris2-9/+92
possible, and, for AFP replies, add in the frame with the request and the time between those two frames. Have AFP per-request-type RTT statistics, similar to SMB's statistics. svn path=/trunk/; revision=15456
2005-08-20Use get_timedelta() to get the difference between two times.Guy Harris1-8/+5
svn path=/trunk/; revision=15455
2005-08-20Trivial warning fixesJörg Mayer1-3/+3
svn path=/trunk/; revision=15452
2005-08-20remove sprintf from mtp3Ronnie Sahlberg2-19/+22
svn path=/trunk/; revision=15451
2005-08-20remove sprintf from pgm and x11Ronnie Sahlberg2-55/+43
svn path=/trunk/; revision=15450
2005-08-20remove sprintf from v120 and wccpRonnie Sahlberg2-8/+11
svn path=/trunk/; revision=15449
2005-08-20remove sprintf from rpcRonnie Sahlberg1-27/+24
svn path=/trunk/; revision=15448
2005-08-20fix buffer handling and remove sprintfRonnie Sahlberg1-115/+131
there was at least one instance where an ip address was printed in dotted decimal to a 10 byte array on the stack. I.e. a guaranteed buffer overrun for a stack object. svn path=/trunk/; revision=15447
2005-08-19more sprintf removals,Ronnie Sahlberg2-54/+75
replace some char arrays on the stack to ep_alloc()ed memory svn path=/trunk/; revision=15446
2005-08-19remove a gmalloc and al sprintf from spnegoRonnie Sahlberg1-9/+5
svn path=/trunk/; revision=15445
2005-08-19no more g_malloc or sprintf in snmpRonnie Sahlberg1-13/+10
svn path=/trunk/; revision=15444
2005-08-19more gmalloc sprintf removalsRonnie Sahlberg1-17/+7
svn path=/trunk/; revision=15443
2005-08-19remove two gmalloc and some sprintfRonnie Sahlberg1-14/+6
svn path=/trunk/; revision=15442
2005-08-19from Jeff SnyderRonnie Sahlberg2-26/+15
H245 updates make multiple pdus/frame work update to have nu limit on the max number of tappable pdus per frame svn path=/trunk/; revision=15441
2005-08-19Restore pinfo->private_data after calling another dissector, in case it getsGerald Combs1-0/+2
overwritten. Fixes bug 367. svn path=/trunk/; revision=15435
2005-08-19Add packet-alcap.h to the Makefiles.Luis Ontanon1-0/+1
svn path=/trunk/; revision=15434
2005-08-19some ememificationLuis Ontanon1-28/+30
svn path=/trunk/; revision=15433
2005-08-19some ememificationLuis Ontanon3-33/+23
svn path=/trunk/; revision=15431
2005-08-19Keep information about the call-leg so that all the messages of a leg can be ↵Luis Ontanon2-24/+256
filtered given a parameter of it. Create the header to export the structures thyat hold that info. svn path=/trunk/; revision=15430
2005-08-19From Matthias Drochner:Ronnie Sahlberg1-7/+1
I'll attach a patch which fixes the decoding of authenticated LDAP bind replies. The SASL credentials are always "context specific" in terms of ASN.1. I've tested the fix with DIGEST-MD5 authentication. (Without the patch, ethereal complains about a wrong type because it expects an ASN.a octet string.) (You might also consider a stricter check of the ASN.1 header type for the GSSAPI and GSS-SPNEGO cases, but I can't test this.) svn path=/trunk/; revision=15428
2005-08-19From Markus SeehoferRonnie Sahlberg1-1/+22
PTP updates svn path=/trunk/; revision=15426
2005-08-19From Michael Lum:Ronnie Sahlberg1-123/+229
Fixed quite a few parameter IDs based on TIA-41-E (originally my mistakes). Added support for filtering by DN, MIN, etc. Moved where embedded 'Bearer Data' parameter is sub-dissected. svn path=/trunk/; revision=15424
2005-08-19From Michael LumRonnie Sahlberg1-12/+31
Slight modification to allow a protocol beneath SCCP (i.e. MTP3) specify how the SCCP message should be dissected. svn path=/trunk/; revision=15423
2005-08-19from Michael LumRonnie Sahlberg1-2/+16
update to 3g-a11 Modified support for ESN in the Airlink Setup Record svn path=/trunk/; revision=15422
2005-08-19remove gmalloc from ethericRonnie Sahlberg1-6/+4
svn path=/trunk/; revision=15421
2005-08-19remove g_malloc() from packet-smb-commonRonnie Sahlberg3-5/+5
svn path=/trunk/; revision=15420
2005-08-19remove g_malloc()Ronnie Sahlberg1-2/+1
svn path=/trunk/; revision=15419
2005-08-19Set "hoffset" before using it.Guy Harris1-1/+1
svn path=/trunk/; revision=15416
2005-08-18From Tim Endean:Anders Broman3-170/+255
Small patch to ber.c The tcap dissector has been updated to use this length. I have not tested other asn.1 dissectors to ensure that they correctly use the indefinite encoding flag instead of the length value returning zero. There may also be some problems when re-assembly is needed, but the ability to deal with indefinite length is much more useful. For developers the get_ber_length now returns the length of the pdu including the EOC, where you have dissectors that use packet-ber.c the eoc may need to be dealt with separately. The tcap dissector has had numerous changes to make it less cluttered, and the useful feature of the previous version where a dialogue could be filtered out by selecting either the source or destination transaction ID has been incorporated into this version. svn path=/trunk/; revision=15414
2005-08-18several times replacing:Ulf Lamping11-26/+25
sprintf -> g_snprintf snprintf -> g_snprintf vsnprintf -> g_vsnprintf strdup -> g_strdup svn path=/trunk/; revision=15412
2005-08-18Fix value_tvb pointers.Gerald Combs1-3/+3
svn path=/trunk/; revision=15409
2005-08-18- dissect_per_restricted_character_string() returns value in tvbbuff_t ↵Tomas Kukosa5-56/+105
instead of char - asn2eth: fixed CHOICE tag handling #.FN_PARS support for BIT STRING and all string types intersection of SIZE and FROM constraints for string is handled - new asn2eth features used in h225 and h245 - PER dissectors regeneration svn path=/trunk/; revision=15408
2005-08-18Decode some more of MultiRate configuration.Anders Broman1-3/+109
svn path=/trunk/; revision=15406
2005-08-18when kerberos claims a conversation, it only claims it for the source portRonnie Sahlberg1-2/+38
since a KDC MIGTH send the reply back from a different port. Then comes X.L's capture (ethereal-dev) 816fc4.cap from 16Aug2005 where the client is reusing the same source port to talk to DNS after finishing doing the port 88 KDC stuff. ==> Make kerberos/udp able to test the packet for sanity and reject packets that do not look like kerberos (even if there was a conversation that said it was kerberos) and thus let other dissectors have a go at it. in doubt, try 816fc4.cap before and after this patch :-) svn path=/trunk/; revision=15405