Commit Graph

37102 Commits

Author SHA1 Message Date
Bill Meier 20a5184e03 Revert SVN #38954; Correct fix to follow.
svn path=/trunk/; revision=38955
2011-09-09 21:20:17 +00:00
Bill Meier a2ff261c12 Fix compile error: remove forward declaration.
svn path=/trunk/; revision=38954
2011-09-09 21:15:05 +00:00
Bill Meier b3c369619b Don't do heuristic check for 'dstport being even' if checking for rtp over stun.
See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6322

svn path=/trunk/; revision=38953
2011-09-09 20:37:49 +00:00
Bill Meier 4a91af2383 Cleanup & simplify some code;
Rework code so it should work better with captured_length < reported_length;
Remove unused #defines.

svn path=/trunk/; revision=38952
2011-09-09 20:19:05 +00:00
Stig Bjørlykke 2e49699bb6 From Sylvain Munaut via bug 6328:
Fix bug in CSN_CHOICE implentation preventing subtree processing

svn path=/trunk/; revision=38951
2011-09-09 17:29:20 +00:00
Anders Broman a3a899de80 /* Get the fields in the second octet */
octet2 = tvb_get_guint8( tvb, offset + 1 );
	payload_type = RTP_PAYLOAD_TYPE( octet2 );

	/* Check for a sensible payload type
	   (recognised static and preferred dynamic ranges) */
	if ((payload_type <= PT_H263) ||
		/* Alex Lindberg - Modified range to use RTP Type Names */
	    (payload_type >= PT_UNDF_96 && payload_type <= PT_UNDF_127)) {

evaluates to allways trye as far as I can tell.

svn path=/trunk/; revision=38950
2011-09-09 05:23:43 +00:00
Anders Broman b37aba3675 From Ken Cox:
The change causes dissect_stun_message() to pass control to subdissectors when 'tree' is NULL.
Part of the patch from
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6322

svn path=/trunk/; revision=38949
2011-09-09 05:16:39 +00:00
Chris Maynard f4c675f712 Fix locale problem with "Rel Start" time, both with display and copy to CSV, by replacing rel_time_to_secs_str() with nstime_to_sec(). Problem reported on ask by packethunter.
Ref: http://ask.wireshark.org/questions/6207/decimal-point-vs-decimal-comma

svn path=/trunk/; revision=38948
2011-09-09 02:11:53 +00:00
Bill Meier 3ed0fa717e Use tvb_new_subset_remaining() iso tvb_new_subset();
Minor whitespace cleanup.

svn path=/trunk/; revision=38947
2011-09-09 01:39:16 +00:00
Gerald Combs aac47f7ce4 Run 2to3 on faq.py.
svn path=/trunk/; revision=38946
2011-09-09 00:12:20 +00:00
Gerald Combs b666f4a90e Update some email addresses.
svn path=/trunk/; revision=38941
2011-09-08 16:30:20 +00:00
Bill Meier 7e1977c4d5 From Stefan Metzmacher: Fix flags in packet-smb
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6320

svn path=/trunk/; revision=38940
2011-09-08 16:19:35 +00:00
Stig Bjørlykke 00486493c3 Add syntax check and autocompletion to "Save Filter as".
svn path=/trunk/; revision=38939
2011-09-08 11:16:18 +00:00
Stig Bjørlykke 8c73abd028 Avoid crash when pressing the help button in the "Save Filter" dialog.
Documentation TBD.

svn path=/trunk/; revision=38938
2011-09-08 10:38:58 +00:00
Stig Bjørlykke 1a046d693b From Edwin Groothuis via bug 6207:
Added Filter Toolbar Save functionality.

From me:
Removed unused code.

svn path=/trunk/; revision=38937
2011-09-08 09:35:10 +00:00
Stig Bjørlykke 62894613b0 Remove duplicate entry.
svn path=/trunk/; revision=38936
2011-09-08 09:26:32 +00:00
Anders Broman 1fa674d3ad packet-mim.c:220: warning: 'dst_addr' may be used uninitialized in this function
svn path=/trunk/; revision=38935
2011-09-08 08:48:00 +00:00
Anders Broman c185043ff3 from Leonard Tracy:
Cisco FabricPath protocol dissector.
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6017

svn path=/trunk/; revision=38934
2011-09-08 08:14:49 +00:00
Jeff Morriss 14ab9387c1 Revert rev 38340 (which was itself a reversion of 34807): if we can't find the
SVN version, indicate that the SVN version is unknown.  This puts back the fix
for bug 1413.

Add a new version.conf option for make-version which tell is "this is a build
from a release tarball."  When that option is present do not try to use SVN
to determine the SVN version, just use whatever SVN information shipped in the
tarball.

If version.conf is present in the source tree (as it is only in the release
branches), deliver it in the source tarball but only after setting the "this
is a release tarball" option.


All of this means that that builds from release-branch tarballs will report
the SVN version of the release tarball rather than "unknown."  This addresses
the issue reported in
http://ask.wireshark.org/questions/5376/wireshark-161-title-shows-svn-rev-unknown-from-unknown

Builds from trunk (including the source tarballs) will continue to report that
the SVN version is unknown.  (Maybe that, too, should be changed?)

svn path=/trunk/; revision=38933
2011-09-08 01:53:41 +00:00
Gerald Combs c600dbe7c1 Update the help question.
svn path=/trunk/; revision=38928
2011-09-07 23:20:42 +00:00
Bill Meier e2f6d85655 Fix a 'set but not used' gcc warning; Mark param arg as _U_;
Whitespace cleanup: trailing blanks & "4 space tabs".

svn path=/trunk/; revision=38925
2011-09-07 19:35:55 +00:00
Bill Meier 9c6aca43f2 Windows: GetTickCount() returns a DWORD (not a time_t);
Fixes a problem on Windows wherein specifying a capture file
time duration for autostop or file-switching would stop
working after some period of time.

The reason:
GetTickCount returns DWORD (unsigned int) which
 wraps "every 49.7 days";

and: The GetTickCount() return value was being stored in a time_t which is
 int64 on Windows;

thus:
 The test for elapsed time (using signed integers) didn't work correctly after
 the time had wrapped.

Fixes Bug #6280: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6280


svn path=/trunk/; revision=38921
2011-09-07 18:25:54 +00:00
Jörg Mayer 001d5b5989 "Fix" an unjustified gcc might-be-used-unused warning.
svn path=/trunk/; revision=38920
2011-09-07 17:26:03 +00:00
Anders Broman 60ad46f2fe From Lori Tribble:
Fix problem with the decoding of the exception schedule.  It was eating one
too many closing tags before exiting and causing the rest of the information to
fail to decode correctly.

https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6178

svn path=/trunk/; revision=38919
2011-09-07 14:42:08 +00:00
Anders Broman 1b675d6656 Add ftype-ipv6.c
svn path=/trunk/; revision=38918
2011-09-07 13:03:05 +00:00
Anders Broman 21beb9c066 From Jakub Zawadzki :
Add support for prefix in IPv6 address filter.
 
+ missed file
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5538

svn path=/trunk/; revision=38917
2011-09-07 11:19:25 +00:00
Anders Broman d785c79f88 From Jakub Zawadzki :
Add support for prefix in IPv6 address filter.
 
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5538

svn path=/trunk/; revision=38916
2011-09-07 11:03:47 +00:00
Anders Broman 3407eb314b Add Id tag
svn path=/trunk/; revision=38915
2011-09-07 11:01:59 +00:00
Anders Broman 966c4e2697 From Lori Tribble:
Fixes log-status and status-flags plus other BACnet decoding bugs

This patch fixes the log-status and status-flag decoding issues described in
this bug report.  This patch also fixes the following items:
1) date-list decoding
2) time-synchronization-recipients decoding
3) decoding of UTF-8 character strings (when using character set 0)
4) event-parameter decoding

https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5120

svn path=/trunk/; revision=38914
2011-09-07 10:35:44 +00:00
Anders Broman 0d89708ab2 Add notes and links on SSDP
svn path=/trunk/; revision=38913
2011-09-07 09:02:09 +00:00
Anders Broman 0beb8db2a3 Add ethertype #8903
svn path=/trunk/; revision=38912
2011-09-07 08:26:36 +00:00
Anders Broman c1e282bf9f From Lei Chen:
Implement 'IAR Rest Octets', 'IAX Rest Octets' and
'Multislot Allocation'

https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6314

svn path=/trunk/; revision=38911
2011-09-07 07:49:20 +00:00
Anders Broman b27a250a0d From Václav Horčák:
When context id is reused by another termination, initial packet containing $
(=choose one) is not added to context but belongs to context 0xfffffffe(context
id value used in wireshark for choose one). This affects context listing in
MEGACO packet contents and Telephony->Voip Calls listings for MEGACO.

https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6311

svn path=/trunk/; revision=38910
2011-09-07 05:02:43 +00:00
Anders Broman 762bae3672 From Lei Chen:
upgrade PCCF/PMR/PEMR in packet-gsm_rlcmac.c
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6313

svn path=/trunk/; revision=38909
2011-09-07 04:54:19 +00:00
Anders Broman bde7c0f545 From Martin Kaiser:
DVB-CI / CI+ CAM upgrade resource
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6309

svn path=/trunk/; revision=38908
2011-09-07 04:46:43 +00:00
Anders Broman b38faa9a99 From Martin Kaiser:
DVB-CI / CI+ Host language and country resource.
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6308

svn path=/trunk/; revision=38907
2011-09-07 04:35:41 +00:00
Anders Broman 625e4ab9f6 From Martin Kaiser:
DVB-CI / CI+ appinfo v3 apdus.
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6307

svn path=/trunk/; revision=38906
2011-09-07 04:29:34 +00:00
Guy Harris d7af4e2037 Don't synthesize a CRC if the packet already has one.
svn path=/trunk/; revision=38905
2011-09-06 23:36:18 +00:00
Stig Bjørlykke 698c729b56 Use TAB.
svn path=/trunk/; revision=38900
2011-09-06 16:18:09 +00:00
Stig Bjørlykke f43c9625e1 From Kurnia Hendrawan:
Update the user's guide.

svn path=/trunk/; revision=38899
2011-09-06 15:36:11 +00:00
Anders Broman 67210b0731 Try to improve the tooltip a bit.
svn path=/trunk/; revision=38898
2011-09-06 15:28:07 +00:00
Anders Broman fa889d6d78 From Liam Sharp:
(Standard)H.239 – subMessageIdentifier value strings missing from H245 dissector.
Modified to be filterable.
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6312

svn path=/trunk/; revision=38897
2011-09-06 15:05:26 +00:00
Martin Mathieson 71cb9d69d2 Use correct hf item, and add reassembled length into subtree summary.
svn path=/trunk/; revision=38896
2011-09-06 13:18:26 +00:00
Martin Mathieson 0cd1b811af First stab at RLC re-assembly.
svn path=/trunk/; revision=38895
2011-09-06 12:01:28 +00:00
Stig Bjørlykke 027bfdf5f3 Check for valid tcpd, as it may be NULL.
svn path=/trunk/; revision=38894
2011-09-06 09:18:09 +00:00
Stig Bjørlykke ad6be9beb8 Whitespace cleanup.
svn path=/trunk/; revision=38893
2011-09-06 09:09:36 +00:00
Stig Bjørlykke d6daef25bb Rename Jabber -> XMPP
svn path=/trunk/; revision=38892
2011-09-06 07:25:37 +00:00
Anders Broman 231165c16c Rename Jabber -> XMPP
..and the makefile...
Ref http://xmpp.org/

https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5992

svn path=/trunk/; revision=38891
2011-09-06 05:56:17 +00:00
Anders Broman e738b556d7 Rename Jabber -> XMPP
Ref http://xmpp.org/

https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5992

svn path=/trunk/; revision=38890
2011-09-06 05:47:57 +00:00
Gerald Combs 34035d0f86 [Automatic manuf, services and enterprise-numbers update for 2011-09-05]
svn path=/trunk/; revision=38887
2011-09-05 20:22:47 +00:00