aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2009-04-02Yin Sun:Anders Broman1-14/+10
tipc v1 improvement. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3381 svn path=/trunk/; revision=27932
2009-04-02Remove #if 0Anders Broman1-2/+1
svn path=/trunk/; revision=27931
2009-04-02From Peter Hertting: Fix the maximum poll interval.Gerald Combs1-1/+1
svn path=/trunk/; revision=27930
2009-04-02Fix a typo.Gerald Combs1-1/+1
svn path=/trunk/; revision=27929
2009-04-02The format argument of val_to_str() formats a guint32, not a char *. FixesGerald Combs1-1/+1
bug 3383. svn path=/trunk/; revision=27928
2009-04-01Describe the format of libpcap records a little better - no, it's notGuy Harris1-1/+3
valid C89, but it's more accurate (and lets you know that the packet data has only caplen bytes). Fix up a list. svn path=/trunk/; revision=27925
2009-04-01Add to new functions from the optimization patch:Anders Broman2-0/+30
tvb_child_uncompress() tvb_new_child_real_data() svn path=/trunk/; revision=27924
2009-04-01According to the section 2.4 of the spec.Anders Broman2-7/+6
http://www.3gpp2.org/Public_html/specs/X.S0004-540-E_v2.0_070723.pdf mandatory parameters for the message Authentication Failure Report. 1. Electronic serial number 2. MSID(i.e MIN/IMSI) 3.Report Type 4.System Access Type 5.System Capabilities(Serving) svn path=/trunk/; revision=27923
2009-04-01From Abhik Sarkar: SMPP TLV tag value_strings.Bill Meier1-2187/+2255
"I have chosen _not_ to use the value_string array in the header field for the tag because the information appears in too many places - once in the sub-tree and again once in the field which displays the value. Displaying the tag name again in the tag field would make the same information appear three times in four lines." See Bug #3369 [https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3369] From me: Use consistent indentation throughout packet-smpp.c svn path=/trunk/; revision=27922
2009-04-01The second argument to Gestalt() is an SInt32, which, for backwardsGuy Harris1-5/+5
compatibility reasons, is a long rather than an int in ILP32 mode (probably dating back to the old 68000 days, when 32-bit arithmetic was slower than 16-bit arithmetic, so an int was 16 bits and a long 32 bits on some 68K machines) and is an int in LP64 mode. svn path=/trunk/; revision=27921
2009-04-01Only #undef inet_aton if we're using ADNS on Windows.Gerald Combs1-1/+1
svn path=/trunk/; revision=27920
2009-03-31Rawshark fixes from Duncan Salerno.Gerald Combs2-22/+46
svn path=/trunk/; revision=27919
2009-03-31Add a check to make sure we don't try to allocate a huge buffer. IfGerald Combs1-7/+11
we get an improper buffer length, throw an error instead of aborting. Clean up the debugging code. svn path=/trunk/; revision=27918
2009-03-31Change to prevent "off-the-end" array access if invalid ↵Bill Meier1-0/+6
payload-type/media-format; Prevents crash as reported in bug 3373: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3373) svn path=/trunk/; revision=27917
2009-03-31Update value strings.Anders Broman2-5/+169
svn path=/trunk/; revision=27916
2009-03-31Fix a typo.Anders Broman1-1/+1
svn path=/trunk/; revision=27915
2009-03-31Make the forward declaration of dissect_snmp() match the definition.Guy Harris1-1/+1
svn path=/trunk/; revision=27914
2009-03-31Fix gcc 3.4.6 warning about setjmp/longjmp.Martin Mathieson1-1/+1
svn path=/trunk/; revision=27913
2009-03-31If GLib < 2.10.0 use g_mem_chunk instead of g_slice.Bill Meier1-1/+24
svn path=/trunk/; revision=27912
2009-03-31#include reassemble.h not req'dBill Meier8-8/+1
svn path=/trunk/; revision=27911
2009-03-31#include reassemble.h not req'd; Also: move proto_register... & etc to be ↵Bill Meier1-204/+205
last in file. svn path=/trunk/; revision=27910
2009-03-31From: yami <yamisoe [AT] gmail.com>: Update comment in .c file; copy same to ↵Bill Meier2-6/+15
.h file svn path=/trunk/; revision=27909
2009-03-31Get rid of val_to_strlen() - strlen() on the results of val_to_str()Guy Harris1-41/+27
suffices (and 100 is an odd choice of failure), and it shouldn't return a guint8 in any case. Don't use tvb_length() to determine how big a packet is - you want the real size, not the possibly-shortened-by-a-snapshot-length size. Don't make things guint8 if they're not guaranteed to be one byte long. Use an ep_strbuf in another case. svn path=/trunk/; revision=27908
2009-03-31From Vincent Helfre:Anders Broman1-15/+35
Fix unaligned bitfields. svn path=/trunk/; revision=27907
2009-03-30Dissect security protected NAS message(un ciphered).Anders Broman1-13/+125
svn path=/trunk/; revision=27906
2009-03-30Fix bug: ptr to an ep str kept for use while capture file open.Bill Meier1-6/+6
svn path=/trunk/; revision=27905
2009-03-30Andreas Schuler:Jörg Mayer1-83/+788
add framenumber, extended fixed part capabilities and higher layer capabilities Me; - replace div by crc to fix a shadowed global variable - the last argument to proto_tree_add_item is the endianess indicator, not the value - replace // by /* */ svn path=/trunk/; revision=27904
2009-03-30More Win64 fixes.Gerald Combs2-21/+20
svn path=/trunk/; revision=27903
2009-03-30Change of metatech email address.Jaap Keuter1-1/+1
svn path=/trunk/; revision=27902
2009-03-30Extention and bug fixes.Anders Broman1-46/+101
svn path=/trunk/; revision=27901
2009-03-30Fixup whitespace.Gerald Combs1-25/+25
svn path=/trunk/; revision=27900
2009-03-30Call ep_strbuf_append_printf() from ep_strbuf_append().Gerald Combs1-41/+29
svn path=/trunk/; revision=27899
2009-03-30More size_t casts(Unfinished)Anders Broman1-4/+4
svn path=/trunk/; revision=27898
2009-03-30More size_t casts.Gerald Combs1-4/+4
svn path=/trunk/; revision=27897
2009-03-30In packet-enttec.c and packet-fw1.c, replace string pointer tracking with aGerald Combs4-30/+18
string buffer. In packet-ftp.c and packet-gift.c, cast some size_t's. svn path=/trunk/; revision=27896
2009-03-30Replace another string pointer dance with a string buffer.Gerald Combs1-18/+9
svn path=/trunk/; revision=27895
2009-03-30Handle NAL-unit start code correctly.Anders Broman1-4/+9
svn path=/trunk/; revision=27894
2009-03-30From Jens Steinhauser: IEEE C37.118 Synchrophasor dissectorBill Meier2-0/+1411
See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2798 Committed with minor changes: - Add the standard Wireshark copyright lines [Wireshark ... Copyright 1998 Gerald Combs] - Move proto_register... and proto_reg_handoff... to the end of the file as per the usual Wireshark dissector file format. svn path=/trunk/; revision=27893
2009-03-30Initialise a variable to prevent a warning (that looks invalid to me).Martin Mathieson1-1/+1
svn path=/trunk/; revision=27892
2009-03-30Add a couple of size_t casts to packet-dnp.c.Gerald Combs3-5/+5
Make the length arguments of format_text() and format_text_wsp() size_t's, since it's natural to use strlen() for that. svn path=/trunk/; revision=27891
2009-03-29Define certain fcns as static (if not used externally).Bill Meier16-745/+754
Also: whiule we're at it: - fix hf[] blurbs as appropriate to use NULL; - fix some indentation svn path=/trunk/; revision=27890
2009-03-29Handle the case when FMTP parameters are "out-of-order".Anders Broman1-72/+78
- - Use NULL instead of repeated text in blurb in hf[]; svn path=/trunk/; revision=27889
2009-03-29More size_t casts.Anders Broman8-19/+19
svn path=/trunk/; revision=27888
2009-03-29More size_t casts.Anders Broman10-26/+26
svn path=/trunk/; revision=27887
2009-03-29- Dissect Supplemental enhancement information (SEI).Anders Broman1-127/+317
- Use NULL instead of repeated text in blurb in hf[]; svn path=/trunk/; revision=27886
2009-03-29Fix code so changing port pref will work + other small changes:Bill Meier1-208/+207
- Use NULL instead of "" in blurb in hf[]; - Remove unnecessary #includes; - Make various internal functions static; - Use tabs consistently for indentation; - Some reformatting of statements; svn path=/trunk/; revision=27885
2009-03-29[Automatic manuf update for 2009-03-29]Gerald Combs1-1/+31
svn path=/trunk/; revision=27883
2009-03-29More size_t casts.Anders Broman5-9/+9
svn path=/trunk/; revision=27882
2009-03-29Fix:Anders Broman1-1/+1
packet-ldss.c: In function 'dissect_ldss_transfer': packet-ldss.c:469: warning: 'ldss_tree' may be used uninitialized in this function packet-ldss.c:469: warning: 'line_tree' may be used uninitialized in this function svn path=/trunk/; revision=27881
2009-03-29More size_t casts.Anders Broman6-12/+12
svn path=/trunk/; revision=27880