------------------------------------------------------------------------
r17978 | jmayer | 2006-04-24 11:43:22 -0500 (Mon, 24 Apr 2006) | 4 lines
Changed paths:
   M /trunk/gtk/capture_if_details_dlg.c

Make some /******...*/ lines less wide: They make svn-diffs on the web page
unreadable unless you have a 2000xsomething display.


------------------------------------------------------------------------
r17979 | etxrab | 2006-04-24 14:08:52 -0500 (Mon, 24 Apr 2006) | 9 lines
Changed paths:
   M /trunk/wiretap/catapult_dct2000.c

From Martin Mathieson:

This patch should hopefully remove any possible buffer overflows in 
parse_line() as reported by the current Coverity scan.  I'm not sure 
that the error it currently reports is valid (I think its confused by 
supposing that a condition that is being tested can be true, whereas it 
can't...), but this patch fixes a number of potential problems remaining 
in the function.

------------------------------------------------------------------------
r17980 | etxrab | 2006-04-24 14:10:36 -0500 (Mon, 24 Apr 2006) | 24 lines
Changed paths:
   M /trunk/gtk/Makefile.am
   M /trunk/gtk/Makefile.common
   A /trunk/gtk/mcast_stream.c
   A /trunk/gtk/mcast_stream.h
   A /trunk/gtk/mcast_stream_dlg.c
   A /trunk/gtk/mcast_stream_dlg.h

From Miha Jemec:

With the new feature we can: 
1. Measure how big the bursts are for a video streams (it uses sliding window algorithm) 2. Measure how big the output buffer should be that no packet drop will occur (it uses Leaky bucket algorithm) 
3. Detect if we have loses inside the MPEG2 video stream (if there are already MPEG2 packets missing) - this part of code is not added yet, see Limitations

The addition is called Multicast streams and works as follows:

- it uses the TAP system
- the main "stream" logic is taken from rtp_strems.* files
- the TAP system checks for UDP packets where the destination MAC address starts with "01:00:5E" (ethernet multicast address)
- it creates an entry for every new multicast stream
- based on sliding window and leaky bucket algorithm it calculates for every stream average BW, max BW, burst size, max buffer needed, some alarms if the limits are exceeded,...
- the same calculation is done for all streams together
- inside the window dialog you can specify the burst interval, the alarm limits and output speeds

To do & limitations:

- Currently the analysis can be done only for multicast streams, it means that VoD (Video on demand) or PayTV streams, which are normally unicast can not be analysed. 

- since the MPEG2 is patended I don't know if decoding of MPEG2 packets is allowed? Can we look inside this packets and calculate packets drops based on some counter information inside the payload? Can someone please answer this question? If we can do this, I will post this part of code too.

-  some more flexibility will be added

------------------------------------------------------------------------
r17981 | etxrab | 2006-04-24 14:11:33 -0500 (Mon, 24 Apr 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-isup.c
   M /trunk/epan/dissectors/packet-isup.h

Preparations to include ANSI ISUP dissection.
------------------------------------------------------------------------
r17983 | jake | 2006-04-24 16:27:12 -0500 (Mon, 24 Apr 2006) | 1 line
Changed paths:
   M /trunk/gtk/column_prefs.c

Column list pointer became invalid when element was removed from list. Fixes bug 886.
------------------------------------------------------------------------
r17984 | sahlberg | 2006-04-24 18:09:34 -0500 (Mon, 24 Apr 2006) | 4 lines
Changed paths:
   M /trunk/doc/ethereal.pod
   M /trunk/epan/dissectors/packet-scsi.c
   M /trunk/epan/dissectors/packet-scsi.h
   M /trunk/gtk/Makefile.common
   A /trunk/gtk/scsi_stat.c

SCSI Service Response Time Staistics



------------------------------------------------------------------------
r17985 | sahlberg | 2006-04-24 18:24:27 -0500 (Mon, 24 Apr 2006) | 3 lines
Changed paths:
   M /trunk/gtk/scsi_stat.c

remove a debugging printf


------------------------------------------------------------------------
r17986 | ulfl | 2006-04-24 19:12:43 -0500 (Mon, 24 Apr 2006) | 1 line
Changed paths:
   M /trunk/capture_wpcap_packet.c

copy input data into the buffer given to PacketRequest(), so functions with input parameters will also work
------------------------------------------------------------------------
r17987 | ulfl | 2006-04-24 19:18:06 -0500 (Mon, 24 Apr 2006) | 1 line
Changed paths:
   M /trunk/gtk/capture_if_details_dlg.c

bugifx (should be copied to the 1.0 trunk): don't crash, if the interface hardware in question was removed since the list of interfaces was generated (NULL pointer returned from wpcap_packet_open() caused a crash)
------------------------------------------------------------------------
r17988 | ulfl | 2006-04-24 19:25:41 -0500 (Mon, 24 Apr 2006) | 6 lines
Changed paths:
   M /trunk/gtk/capture_if_details_dlg.c

various changes:
mention informational URLs at the beginning and not at each element
replace some // by /**/
start to decode the informational elements in the BSSID list
add a privacy tab to the BSSID list (None, WEP, WPA, WPA2)
various minor label changes
------------------------------------------------------------------------
r17989 | ulfl | 2006-04-24 20:00:16 -0500 (Mon, 24 Apr 2006) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-scsi.h
   M /trunk/epan/libethereal.def

fix win32 build:
scsi_mmc_val					DATA
scsi_sbc2_val					DATA
scsi_ssc2_val					DATA

BTW: these values should be renamed to ..._vals as in every other dissector I know!
------------------------------------------------------------------------
r17990 | ulfl | 2006-04-24 20:22:05 -0500 (Mon, 24 Apr 2006) | 1 line
Changed paths:
   M /trunk/gtk/capture_if_details_dlg.c

WinPcap 3.2 beta 1 (3, 2, 0, 29) seems to be working with the packet.dll, so don't warn the user about it
------------------------------------------------------------------------
r17991 | sahlberg | 2006-04-24 20:42:35 -0500 (Mon, 24 Apr 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-scsi.c
   M /trunk/epan/dissectors/packet-scsi.h
   M /trunk/epan/libethereal.def
   M /trunk/gtk/scsi_stat.c

rename some value_Strings from ..._val to ..._vals


------------------------------------------------------------------------
r17992 | guy | 2006-04-25 03:22:55 -0500 (Tue, 25 Apr 2006) | 2 lines
Changed paths:
   M /trunk/plugins/h223/Makefile.am

Include non-dissector support files in the source.

------------------------------------------------------------------------
r17993 | guy | 2006-04-25 03:25:25 -0500 (Tue, 25 Apr 2006) | 2 lines
Changed paths:
   M /trunk/plugins/h223

Ignore the generated plugin.c.

------------------------------------------------------------------------
r17994 | jmayer | 2006-04-25 08:40:04 -0500 (Tue, 25 Apr 2006) | 6 lines
Changed paths:
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba4/EJS.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba4/TDR.pm
   A /trunk/tools/pidl/lib/Parse/Pidl/Samba4.pm
   M /trunk/tools/pidl/tests/Util.pm
   A /trunk/tools/pidl/tests/ndr_represent.pl
   A /trunk/tools/pidl/tests/ndr_tagtype.pl

Update from samba tree revision 14805 to 15243
============================ Samba log start ============
svn: When specifying working copy paths, only one target may be given
============================ Samba log end ==============


------------------------------------------------------------------------
r17995 | jmayer | 2006-04-25 08:41:05 -0500 (Tue, 25 Apr 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-tacacs.c

Add a URL
------------------------------------------------------------------------
r17996 | guy | 2006-04-25 13:01:43 -0500 (Tue, 25 Apr 2006) | 4 lines
Changed paths:
   M /trunk/acinclude.m4

Check several sets of additional libraries that libpcap might need
(-lcfg -lodm on AIX with the current tcpdump.org libpcap, -lpfring with
the ring buffer stuff on Linux).

------------------------------------------------------------------------
r17997 | guy | 2006-04-25 13:34:09 -0500 (Tue, 25 Apr 2006) | 5 lines
Changed paths:
   M /trunk/asn1/Makefile.nmake

Add the usual Makefile.nmake comment.

Change "cd.." to "cd .." - I don't know whether they're equivalent, but,
if they're not, the former probably won't work.

------------------------------------------------------------------------
r17998 | guy | 2006-04-25 13:35:15 -0500 (Tue, 25 Apr 2006) | 2 lines
Changed paths:
   M /trunk/asn1/Makefile.nmake

Add distclean and maintainerclean rules.

------------------------------------------------------------------------
r17999 | guy | 2006-04-25 13:45:08 -0500 (Tue, 25 Apr 2006) | 2 lines
Changed paths:
   M /trunk/asn1/MAP_Dialogue/Makefile.nmake
   M /trunk/asn1/acp133/Makefile.nmake
   M /trunk/asn1/acse/Makefile.nmake
   M /trunk/asn1/ansi_map/Makefile.nmake
   M /trunk/asn1/camel/Makefile.nmake
   M /trunk/asn1/cdt/Makefile.nmake
   M /trunk/asn1/cmip/Makefile.nmake
   M /trunk/asn1/cms/Makefile.nmake
   M /trunk/asn1/dap/Makefile.nmake
   M /trunk/asn1/disp/Makefile.nmake
   M /trunk/asn1/dop/Makefile.nmake
   M /trunk/asn1/dsp/Makefile.nmake
   M /trunk/asn1/ess/Makefile.nmake
   M /trunk/asn1/ftam/Makefile.nmake
   M /trunk/asn1/ftbp/Makefile.nmake
   M /trunk/asn1/gnm/Makefile.nmake
   M /trunk/asn1/gsm_ss/Makefile.nmake
   M /trunk/asn1/gsmmap/Makefile.nmake
   M /trunk/asn1/h225/Makefile.nmake
   M /trunk/asn1/h235/Makefile.nmake
   M /trunk/asn1/h245/Makefile.nmake
   M /trunk/asn1/h248/Makefile.nmake
   M /trunk/asn1/h450/Makefile.nmake
   M /trunk/asn1/inap/Makefile.nmake
   M /trunk/asn1/ldap/Makefile.nmake
   M /trunk/asn1/logotype-cert-extn/Makefile.nmake
   M /trunk/asn1/mms/Makefile.nmake
   M /trunk/asn1/nbap/Makefile.nmake
   M /trunk/asn1/ns-cert-exts/Makefile.nmake
   M /trunk/asn1/ocsp/Makefile.nmake
   M /trunk/asn1/pkcs1/Makefile.nmake
   M /trunk/asn1/pkinit/Makefile.nmake
   M /trunk/asn1/pkix1explicit/Makefile.nmake
   M /trunk/asn1/pkix1implicit/Makefile.nmake
   M /trunk/asn1/pkixcmp/Makefile.nmake
   M /trunk/asn1/pkixcrmf/Makefile.nmake
   M /trunk/asn1/pkixproxy/Makefile.nmake
   M /trunk/asn1/pkixqualified/Makefile.nmake
   M /trunk/asn1/pkixtsp/Makefile.nmake
   M /trunk/asn1/pres/Makefile.nmake
   M /trunk/asn1/ranap/Makefile.nmake
   M /trunk/asn1/rnsap/Makefile.nmake
   M /trunk/asn1/ros/Makefile.nmake
   M /trunk/asn1/rtse/Makefile.nmake
   M /trunk/asn1/s4406/Makefile.nmake
   M /trunk/asn1/smrse/Makefile.nmake
   M /trunk/asn1/snmp/Makefile.nmake
   M /trunk/asn1/spnego/Makefile.nmake
   M /trunk/asn1/tcap/Makefile.nmake
   M /trunk/asn1/wlancertextn/Makefile.nmake
   M /trunk/asn1/x411/Makefile.nmake
   M /trunk/asn1/x420/Makefile.nmake
   M /trunk/asn1/x509af/Makefile.nmake
   M /trunk/asn1/x509ce/Makefile.nmake
   M /trunk/asn1/x509if/Makefile.nmake
   M /trunk/asn1/x509sat/Makefile.nmake

Add distclean and maintainerclean rules.

------------------------------------------------------------------------
r18000 | etxrab | 2006-04-25 14:12:08 -0500 (Tue, 25 Apr 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-isup.c
   M /trunk/epan/dissectors/packet-isup.h

Add some more ANSI Message types and Parameters dissect ANSI cause.
------------------------------------------------------------------------
r18001 | jake | 2006-04-26 01:37:46 -0500 (Wed, 26 Apr 2006) | 1 line
Changed paths:
   M /trunk/gtk/follow_dlg.c

Workaround?\194?\160for?\194?\160bug?\194?\160852. Force?\194?\160a?\194?\160line?\194?\160break?\194?\160so?\194?\160that?\194?\160the?\194?\160text?\194?\160view doesn't?\194?\160blow?\194?\160up?\194?\160on?\194?\160excessive?\194?\160long?\194?\160lines.
------------------------------------------------------------------------
r18002 | sahlberg | 2006-04-26 02:58:45 -0500 (Wed, 26 Apr 2006) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ndmp.c

 NOTIFY_[DATA|MOVER]_HALTED requests no longer take an XDR string containing the reason  for version 4 of ndmp and forward.



------------------------------------------------------------------------
r18003 | sahlberg | 2006-04-26 04:40:49 -0500 (Wed, 26 Apr 2006) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ndmp.c

add tracking of ndmp conversations and use this to track the version used if we have seen the CONNECT_OPEN request.

rename the preference to DEFAULT protocol version   to indicate it is only used for those conversation where we have not automatically detected the version used.




------------------------------------------------------------------------
r18004 | jmayer | 2006-04-26 10:10:23 -0500 (Wed, 26 Apr 2006) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ssl-utils.c
   M /trunk/epan/dissectors/packet-ssl.c

authesserre samuel <sauthess@gmail.com>:

The current ssl decryption code does not work for 3des session.
The attached patch fixes the problem.


------------------------------------------------------------------------
r18005 | gram | 2006-04-26 12:31:56 -0500 (Wed, 26 Apr 2006) | 3 lines
Changed paths:
   M /trunk/randpkt.c

Check for NULL return value from wtap_dump_open().
Fixes coverity bug 159.

------------------------------------------------------------------------
r18009 | ulfl | 2006-04-26 15:13:33 -0500 (Wed, 26 Apr 2006) | 1 line
Changed paths:
   M /trunk/plugins/profinet/packet-dcerpc-pn-io.c

minor enhancements
------------------------------------------------------------------------
r18010 | etxrab | 2006-04-26 15:16:57 -0500 (Wed, 26 Apr 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-sdp.c

Add dissection of MPEG4 fmtp parameter.
------------------------------------------------------------------------
r18011 | gerald | 2006-04-26 16:06:52 -0500 (Wed, 26 Apr 2006) | 3 lines
Changed paths:
   M /trunk/epan/emem.c

If we're running under Windows 95/98/Me, don't abort if we can't protect
our guard pages.

------------------------------------------------------------------------
r18012 | gerald | 2006-04-26 16:15:51 -0500 (Wed, 26 Apr 2006) | 2 lines
Changed paths:
   M /trunk/gtk/win32-file-dlg.c

Properly set our export file name before we try to use it.  Fixes bug 894.

------------------------------------------------------------------------
r18015 | jake | 2006-04-26 17:53:00 -0500 (Wed, 26 Apr 2006) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-smb.c

From Mark C. Brown:
The code was incorrectly bounds checking AndXOffset.  AndXOffset is only
relevant when AndXCommand is not 0xFF.  This patch corrects erroneous
"Malformed packet" exceptions.

------------------------------------------------------------------------
r18016 | etxrab | 2006-04-27 00:02:57 -0500 (Thu, 27 Apr 2006) | 3 lines
Changed paths:
   M /trunk/gtk/mcast_stream_dlg.c

From Martin Mathieson:

Fix typo in menu item name
------------------------------------------------------------------------
r18017 | gerald | 2006-04-27 09:58:46 -0500 (Thu, 27 Apr 2006) | 2 lines
Changed paths:
   M /trunk/epan/strutil.c

Properly grow our buffers for utf_8to16().

------------------------------------------------------------------------
r18018 | gerald | 2006-04-27 13:46:05 -0500 (Thu, 27 Apr 2006) | 2 lines
Changed paths:
   M /trunk/file.c

Add an extra null pointer check.  Fixes Coverity CID 154.

------------------------------------------------------------------------
r18019 | guy | 2006-04-27 14:12:50 -0500 (Thu, 27 Apr 2006) | 3 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/Makefile.am

From Diego Petteno and Daniel Black: add more libraries to the list of
libraries with which we link libethereal, fixing the reopened bug 878.

------------------------------------------------------------------------
r18020 | guy | 2006-04-27 14:58:32 -0500 (Thu, 27 Apr 2006) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-radiotap.c

This was completely broken, as the "length" variable actually reflected
the amount of data left in the radiotap header after the fields we've
processed so far, not the total length of the header, so it couldn't be
used to skip past the radiotap header and get a tvbuff of the packet
data.  Fix that.

------------------------------------------------------------------------
r18021 | ulfl | 2006-04-27 17:13:29 -0500 (Thu, 27 Apr 2006) | 1 line
Changed paths:
   M /trunk/plugins/stats_tree/pinfo_stats_tree.c

add some higher packet length values
------------------------------------------------------------------------
r18022 | guy | 2006-04-28 01:29:19 -0500 (Fri, 28 Apr 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-radiotap.c

Don't change rflags for any properties other than
IEEE80211_RADIOTAP_FLAGS.

------------------------------------------------------------------------
r18023 | kukosa | 2006-04-28 01:47:51 -0500 (Fri, 28 Apr 2006) | 2 lines
Changed paths:
   M /trunk/tools/asn2eth.py

- fix Bug 890
- remove c2asn() which did not work exactly
------------------------------------------------------------------------
r18024 | sahlberg | 2006-04-28 04:44:02 -0500 (Fri, 28 Apr 2006) | 19 lines
Changed paths:
   M /trunk/epan/dissectors/packet-tcp.c
   M /trunk/epan/dissectors/packet-tcp.h

 tcp analysis updates   to prepare for later tcp reassembly updates


now that we have se_tree_lookup32_le   we can do the tracking of pdu boundaries much more efficiently.

track pdu boundaries by a new  tcp_multisegment_pdu  structure that is indexed by sequence numbers and let this structure replace the older tcp_next_pdu structure.

with se_tree_lookup32_le  we no longer need to track segment by segment and can get rid of the two hash tables
tcp_pdu_tracking_table
tcp_pdu_skipping_table
Neither do we need the tree   tcp_pdu_time_table anymore so that one is gone as well.

remove various other functions that are no longer needed due to removing the structure and the tables/tree


this part of the code shoul;d be much more readable now   and also a bit faster



------------------------------------------------------------------------
r18025 | gerald | 2006-04-28 11:40:39 -0500 (Fri, 28 Apr 2006) | 3 lines
Changed paths:
   M /trunk/epan/emem.c

Fix logic used to test protection under Windows OT.  Only initialize
our page size and OS version information once.

------------------------------------------------------------------------
r18026 | gerald | 2006-04-28 13:43:33 -0500 (Fri, 28 Apr 2006) | 3 lines
Changed paths:
   M /trunk/gtk/win32-file-dlg.c

Fetch a combobox control handle before we try to use it.  Add some needed
_T macros.  Remove some extraneous comments.

------------------------------------------------------------------------
r18027 | etxrab | 2006-04-28 16:41:13 -0500 (Fri, 28 Apr 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-uma.c

Fix bug 896 by using tcp_dissect_pdus() .
------------------------------------------------------------------------
r18028 | etxrab | 2006-04-28 16:42:18 -0500 (Fri, 28 Apr 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-sdp.c

Check Payload type before dissecting fmtp parameters.
------------------------------------------------------------------------
r18029 | guy | 2006-04-29 04:30:09 -0500 (Sat, 29 Apr 2006) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-uma.c

A dissector called from tcp_dissect_pdus() has to return void.  (If you
want to have a dissector capable of rejecting packets, you need to
reject the packet before you call tcp_dissect_pdus() - once you're doing
reassembly, etc., it's too late to reject the packet.)

------------------------------------------------------------------------
r18030 | jmayer | 2006-04-29 10:25:44 -0500 (Sat, 29 Apr 2006) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-fix.c

chrisaudley@yahoo.com:

Patch to fix:
[Bug 904] FIX protocol dissector missing some message types


------------------------------------------------------------------------
r18031 | guy | 2006-04-29 12:31:20 -0500 (Sat, 29 Apr 2006) | 16 lines
Changed paths:
   M /trunk/epan/dissectors/packet-sdp.c

Clean up indentation; use 2-space indentation throughout.

Save the media encoding name in the transport_info_t structure rather
than in a global variable.  Allocate it with tvb_get_ephemeral_string()
so it's released after the packet is completely processed.  Do *NOT*
assume it's necessarily non-null in decode_sdp_fmtp(), as the code flow
doesn't guarantee that to be true.

proto_tree_add_string() now suffices for adding a particular SDP item -
strings are now displayed "safely", with escaping of non-printable
characters done.

Update a comment (we no longer have the Big Transfer Vector to allow
plugins to call dissector functions in Windows, we have those functions
in a DLL).

------------------------------------------------------------------------
r18032 | guy | 2006-04-29 12:54:46 -0500 (Sat, 29 Apr 2006) | 5 lines
Changed paths:
   M /trunk/capture_loop.c
   M /trunk/ringbuffer.c
   M /trunk/ringbuffer.h
   M /trunk/tethereal.c

Have the ring buffer routines take a pointer to a "bytes written" count
as an argument, rather than keeping the count to themselves, so the
count kept by the capturing program can be updated correctly - including
getting reset when files are switched.  Fixes bug 895.

------------------------------------------------------------------------
r18033 | guy | 2006-04-29 13:54:54 -0500 (Sat, 29 Apr 2006) | 9 lines
Changed paths:
   M /trunk/epan/dissectors/packet-bvlc.c

Add some simple sanity checking of BVLC packets, so if you're unlucky
enough to have a non-BVLC packet from or to port 47808, we're likely to
reject it and let another dissector try it.  Fixes bug 855 (in which an
MS Messenger packet was unlucky enough to have come from that port).

Add value_string tables to some fields, and just use
proto_tree_add_uint() to add them to the protocol tree, rather than
generating our own text for them.

------------------------------------------------------------------------
r18034 | guy | 2006-04-29 18:03:57 -0500 (Sat, 29 Apr 2006) | 6 lines
Changed paths:
   M /trunk/gtk/Makefile.am
   M /trunk/gtk/Makefile.common
   M /trunk/gtk/capture_dlg.c
   A /trunk/gtk/capture_file_dlg.c (from /trunk/gtk/file_dlg.c:18030)
   A /trunk/gtk/capture_file_dlg.h (from /trunk/gtk/file_dlg.h:18030)
   M /trunk/gtk/color_dlg.c
   M /trunk/gtk/drag_and_drop.c
   D /trunk/gtk/file_dlg.c
   D /trunk/gtk/file_dlg.h
   M /trunk/gtk/main.c
   M /trunk/gtk/menu.c
   M /trunk/gtk/packet_list.c
   M /trunk/gtk/print_dlg.c
   M /trunk/gtk/print_prefs.c
   M /trunk/gtk/proto_draw.c
   M /trunk/gtk/toolbar.c
   M /trunk/gtk/win32-file-dlg.c

Most of the stuff in file_dlg.c is specific to capture files, so rename
it to capture_file_dlg.c, and rename its header file.  We might want to
move the generic file dialog stuff to a file_dlg.c file (it's currently
in dlg_utils.c), and move the non-capture-file dialog stuff in
capture_file_dlg.c to another file.

------------------------------------------------------------------------
r18035 | guy | 2006-04-29 18:18:47 -0500 (Sat, 29 Apr 2006) | 2 lines
Changed paths:
   M /trunk/gtk/capture_file_dlg.h

Fix the idempotent-include #define.

------------------------------------------------------------------------
r18036 | guy | 2006-04-29 20:47:58 -0500 (Sat, 29 Apr 2006) | 6 lines
Changed paths:
   M /trunk/gtk/Makefile.am
   M /trunk/gtk/Makefile.common
   M /trunk/gtk/about_dlg.c
   M /trunk/gtk/capture_dlg.c
   M /trunk/gtk/capture_file_dlg.c
   M /trunk/gtk/dlg_utils.c
   M /trunk/gtk/dlg_utils.h
   A /trunk/gtk/file_dlg.c
   A /trunk/gtk/file_dlg.h
   M /trunk/gtk/follow_dlg.c
   M /trunk/gtk/graph_analysis.c
   M /trunk/gtk/main.c
   M /trunk/gtk/print_dlg.c
   M /trunk/gtk/print_prefs.c
   M /trunk/gtk/proto_draw.c
   M /trunk/gtk/recent.c
   M /trunk/gtk/rtp_analysis.c
   M /trunk/gtk/rtp_stream_dlg.c
   M /trunk/gtk/ssl-dlg.c

Move the file selection dialog routines to file_dlg.c, and give it a
header file.

#if 0 out some includes; if none of the builds have a problem with
that, I'll remove them.

------------------------------------------------------------------------
r18037 | guy | 2006-04-29 22:19:11 -0500 (Sat, 29 Apr 2006) | 2 lines
Changed paths:
   M /trunk/gtk/dlg_utils.c

We need <gdk/gdkkeysyms.h> to define GDK_VoidSymbol.

------------------------------------------------------------------------
r18038 | guy | 2006-04-29 22:19:59 -0500 (Sat, 29 Apr 2006) | 2 lines
Changed paths:
   M /trunk/gtk/capture_file_dlg.c

We use stuff from dlg_utils.h.

------------------------------------------------------------------------
r18039 | guy | 2006-04-29 22:22:39 -0500 (Sat, 29 Apr 2006) | 2 lines
Changed paths:
   M /trunk/gtk/file_dlg.c

See whether <stdio.h> will get EISDIR defined.

------------------------------------------------------------------------
r18040 | guy | 2006-04-30 01:54:25 -0500 (Sun, 30 Apr 2006) | 2 lines
Changed paths:
   M /trunk/gtk/file_dlg.c

Include <errno.h> to get errnos.

------------------------------------------------------------------------
r18041 | guy | 2006-04-30 01:57:01 -0500 (Sun, 30 Apr 2006) | 4 lines
Changed paths:
   M /trunk/gtk/win32-file-dlg.c

Add "file_dlg.h" to declare "set_last_open_dir()".

Try leaving "dlg_utils.h" out.

------------------------------------------------------------------------
r18042 | gal | 2006-04-30 02:23:42 -0500 (Sun, 30 Apr 2006) | 1 line
Changed paths:
   M /trunk/asn1/ldap/ldap.cnf
   M /trunk/asn1/ldap/packet-ldap-template.c

Request/result matching, port preference and display tweaks
------------------------------------------------------------------------
r18043 | guy | 2006-04-30 03:59:26 -0500 (Sun, 30 Apr 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-3com-njack.c

No C++/C99 comments, please (GCC warns about them in the Solaris
buildbot build, even though the code is #if 0'ed out).

------------------------------------------------------------------------
r18044 | guy | 2006-04-30 04:14:42 -0500 (Sun, 30 Apr 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-alcap.c

Constify some stuff, to eliminate compiler warnings and to make a table
that isn't written const.

------------------------------------------------------------------------
r18045 | guy | 2006-04-30 04:25:34 -0500 (Sun, 30 Apr 2006) | 2 lines
Changed paths:
   M /trunk/gtk/mcast_stream.c

Get rid of extra semicolon - GCC warns that ISO C doesn't allow it.

------------------------------------------------------------------------
r18046 | sahlberg | 2006-04-30 05:27:55 -0500 (Sun, 30 Apr 2006) | 17 lines
Changed paths:
   M /trunk/epan/dissectors/packet-tcp.c

tcp reassembly updates


use tcp_multisegment_pdu and se_tree_lookup32_le()   to track pdu boundaries for tcp reassembly just as this structure is used for the same purpose when reassembly is not enabled.

get rid of a hashtable and two memchunks we no longer need
tcp_segment_table    tcp_segment_key_chunk and   tcp_segment_address_chunk


This makes tcp reassembly work for out-of-order segments   as well as when reassembly completes in one segment and when the tail of the segment contains the head of the next pdu  which we did not handle before.


tcp reassembly should be much better and efficient now    modulo introduced regressions.




------------------------------------------------------------------------
r18047 | jake | 2006-04-30 05:33:36 -0500 (Sun, 30 Apr 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-mysql.c

Fix for bug 881. Adding processing of error packet when server greeting is expected.

------------------------------------------------------------------------
r18048 | gal | 2006-04-30 07:53:26 -0500 (Sun, 30 Apr 2006) | 1 line
Changed paths:
   M /trunk/asn1/dap/dap-exp.cnf
   M /trunk/asn1/dap/dap.cnf
   M /trunk/asn1/dop/dop.asn
   M /trunk/asn1/dop/dop.cnf
   M /trunk/asn1/dop/packet-dop-template.c
   M /trunk/asn1/x509if/x509if.cnf
   M /trunk/asn1/x509sat/x509sat.cnf
   M /trunk/epan/dissectors/packet-dap.c
   M /trunk/epan/dissectors/packet-dap.h
   M /trunk/epan/dissectors/packet-dop.c
   M /trunk/epan/dissectors/packet-dop.h
   M /trunk/epan/dissectors/packet-x509if.c
   M /trunk/epan/dissectors/packet-x509sat.c

Operational Attributes and Syntaxes
------------------------------------------------------------------------
r18049 | guy | 2006-04-30 21:28:01 -0500 (Sun, 30 Apr 2006) | 12 lines
Changed paths:
   M /trunk/epan/dissectors/packet-jxta.c

UDP and SCTP aren't byte-stream protocols, so they don't offer TCP-style
reassembly.  UDP has no notion of reassembly - that's done at the IP
layer - and SCTP has its own notions of reassembly which it currently
doesn't provide.  As such, TCP-style reassembly isn't possible for
JXTA-over-UDP or JXTA-over-SCTP.

As for TCP, a heuristic dissector for a TCP-based protocol can't request
more data if it's rejecting a packet; make it not do so.  That should
fix the recent buildbot crash, although there are still some reassembly
problems with that capture (c05-http-reply-r1.pcap.gz in the menagerie
and on the SampleCaptures page of the Wiki) that aren't fixed yet.

------------------------------------------------------------------------
r18050 | guy | 2006-04-30 21:32:16 -0500 (Sun, 30 Apr 2006) | 10 lines
Changed paths:
   M /trunk/epan/dissectors/packet-tcp.c

Have "pdu_store_sequencenumber_of_next_pdu()" return the newly-allocated
"struct tcp_multisegment_pdu"; that lets it be used in one case where
the code in it was duplicated.

Make "desegment_tcp()" loop rather than recursing - not all compilers
will necessarily recognize the tail recursion.

Catch heuristic dissectors that reject a packet but also request
(whether deliberately or accidentally) that more data be added.

------------------------------------------------------------------------
r18051 | guy | 2006-05-01 01:51:14 -0500 (Mon, 01 May 2006) | 4 lines
Changed paths:
   M /trunk/capture_sync.c
   M /trunk/epan/filesystem.c
   M /trunk/epan/filesystem.h
   M /trunk/gtk/about_dlg.c
   M /trunk/gtk/main.c

Handle the case where we *can't* determine the pathname in which to find
programs, by reporting it with a dialog box that at least attempts to
indicate what the problem is, and by giving up early on running dumpcap.

------------------------------------------------------------------------
r18052 | sahlberg | 2006-05-01 02:32:09 -0500 (Mon, 01 May 2006) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-scsi.c

remove a test for NULL we dont need since itlq can not be null here and thus we
dont need to test for it.

this unnecessary test for itlq==NULL was shown by coverity issue 151



------------------------------------------------------------------------
r18053 | sahlberg | 2006-05-01 02:43:47 -0500 (Mon, 01 May 2006) | 10 lines
Changed paths:
   M /trunk/tap-httpstat.c

coverity 155

coverity showed this as a null dereference which was a false positive.
sp can never be null here.


there is a bug however since with this invalid test  the memory release functions will never be called and we thus had a memory leak here.



------------------------------------------------------------------------
r18054 | guy | 2006-05-01 03:09:39 -0500 (Mon, 01 May 2006) | 4 lines
Changed paths:
   M /trunk/epan/filesystem.c

It's g_strdup_printf(), not g_sprintf_alloc().

Declare "error", and properly terminate a string.

------------------------------------------------------------------------
r18055 | sahlberg | 2006-05-01 03:48:33 -0500 (Mon, 01 May 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-kerberos.c

MS KDC sends a PA_DATA with a magic salt containing an nt status code also for ERR_BADOPTION which can be seen in the constrained-delegation.zip   capture on the wiki sample captures page.


------------------------------------------------------------------------
r18056 | gal | 2006-05-01 04:26:40 -0500 (Mon, 01 May 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-ber.c

Preference to disable BER length sanity check (needed for asn2eth LDAP dissector).
------------------------------------------------------------------------
r18057 | etxrab | 2006-05-01 05:04:10 -0500 (Mon, 01 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/Makefile.nmake
   M /trunk/epan/dissectors/packet-ldap.c
   M /trunk/epan/dissectors/packet-ldap.h

Use the asn2eth generated ldap dissector.
------------------------------------------------------------------------
r18058 | gal | 2006-05-01 05:17:59 -0500 (Mon, 01 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/ros/packet-ros-template.c
   M /trunk/asn1/ros/ros.asn
   M /trunk/asn1/ros/ros.cnf
   M /trunk/epan/dissectors/packet-ros.c
   M /trunk/epan/dissectors/packet-ros.h

Operation request/result correlation and timing.
------------------------------------------------------------------------
r18059 | jake | 2006-05-01 05:59:06 -0500 (Mon, 01 May 2006) | 2 lines
Changed paths:
   M /trunk/gtk/gui_utils.c

Fix for bug 887. Use the right function to set the window position.

------------------------------------------------------------------------
r18060 | guy | 2006-05-01 12:42:01 -0500 (Mon, 01 May 2006) | 2 lines
Changed paths:
   A /trunk/asn1/ldap/Makefile

Add a Makefile to generate the dissectors from UN*X.

------------------------------------------------------------------------
r18061 | guy | 2006-05-01 12:43:29 -0500 (Mon, 01 May 2006) | 3 lines
Changed paths:
   M /trunk/asn1/ldap/packet-ldap-template.c
   M /trunk/epan/dissectors/packet-ldap.c

Include <epan/strutil.h> to define g_ascii_isprint() on systems with
GLib 1.2[.x].

------------------------------------------------------------------------
r18062 | gerald | 2006-05-01 14:21:00 -0500 (Mon, 01 May 2006) | 2 lines
Changed paths:
   M /trunk/config.nmake
   M /trunk/configure.in
   M /trunk/docbook/release-notes.xml

Bump the version number to 1.1.  Clean up the release notes.

------------------------------------------------------------------------
r18067 | etxrab | 2006-05-02 00:35:55 -0500 (Tue, 02 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/ldap/packet-ldap-template.c

Preparations to restore CLDAP dissection, no need to regenerate the dissector yet.
------------------------------------------------------------------------
r18068 | guy | 2006-05-02 02:56:21 -0500 (Tue, 02 May 2006) | 2 lines
Changed paths:
   M /trunk/epan/doxygen.cfg.in
   M /trunk/gtk/doxygen.cfg.in

Add newlines to the ends of the files.

------------------------------------------------------------------------
r18069 | sahlberg | 2006-05-02 03:42:19 -0500 (Tue, 02 May 2006) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-kerberos.c

implement decryption of and dissection of
EncKrbCredPart

Packet 18 in sample capture kerberos-Delegation.zip on the wiki contains this structure.



------------------------------------------------------------------------
r18071 | gram | 2006-05-02 09:26:17 -0500 (Tue, 02 May 2006) | 3 lines
Changed paths:
   M /trunk/doc/README.developer
   M /trunk/doc/ethereal-filter.pod.template
   M /trunk/epan/dfilter/Makefile.am
   M /trunk/epan/dfilter/Makefile.nmake
   A /trunk/epan/dfilter/dfunctions.c
   A /trunk/epan/dfilter/dfunctions.h
   M /trunk/epan/dfilter/dfvm.c
   M /trunk/epan/dfilter/dfvm.h
   M /trunk/epan/dfilter/gencode.c
   M /trunk/epan/dfilter/grammar.lemon
   M /trunk/epan/dfilter/scanner.l
   M /trunk/epan/dfilter/semcheck.c
   A /trunk/epan/dfilter/sttype-function.c
   A /trunk/epan/dfilter/sttype-function.h
   M /trunk/epan/dfilter/syntax-tree.c
   M /trunk/epan/dfilter/syntax-tree.h
   M /trunk/epan/ftypes/ftype-bytes.c
   M /trunk/epan/ftypes/ftype-double.c
   M /trunk/epan/ftypes/ftype-guid.c
   M /trunk/epan/ftypes/ftype-integer.c
   M /trunk/epan/ftypes/ftype-ipv4.c
   M /trunk/epan/ftypes/ftype-none.c
   M /trunk/epan/ftypes/ftype-pcre.c
   M /trunk/epan/ftypes/ftype-string.c
   M /trunk/epan/ftypes/ftype-time.c
   M /trunk/epan/ftypes/ftype-tvbuff.c
   M /trunk/epan/ftypes/ftypes.c
   M /trunk/epan/ftypes/ftypes.h
   M /trunk/tools/dfilter-test.py

Add infrastructure for display filter functions.
Add upper() and lower() display filter functions for string fields.

------------------------------------------------------------------------
r18072 | guy | 2006-05-02 13:02:08 -0500 (Tue, 02 May 2006) | 5 lines
Changed paths:
   M /trunk/epan/emem.c
   M /trunk/epan/emem.h

Not all compilers support unnamed struct/union fields within
structs/unions (GCC supports it "for compatibility with other
compilers"; presumably that's not for compatibility with the version of
Sun C that rejected it - was that a PCCism?).

------------------------------------------------------------------------
r18073 | gerald | 2006-05-02 13:21:42 -0500 (Tue, 02 May 2006) | 6 lines
Changed paths:
   M /trunk/plugins/asn1/packet-asn1.c

It looks like g_fopen() in the version of GLib that we ship with Windows
sets errno to 0 when we can't open a file.  This resurrected the annoying
"C:\Program Files\Ethereal\asn1/default.tt" error in the ASN.1 plugin,
since we depended on errno being set to ENOENT.  Move some logic around
to account for this.

------------------------------------------------------------------------
r18074 | etxrab | 2006-05-02 14:07:38 -0500 (Tue, 02 May 2006) | 1 line
Changed paths:
   M /trunk/epan/dfilter/gencode.c

MSVC is picky about assignments in declarations.
------------------------------------------------------------------------
r18075 | etxrab | 2006-05-02 14:08:28 -0500 (Tue, 02 May 2006) | 1 line
Changed paths:
   M /trunk/tools/asn2eth.py

Handle UTCTime for PER.
------------------------------------------------------------------------
r18076 | etxrab | 2006-05-02 14:44:12 -0500 (Tue, 02 May 2006) | 1 line
Changed paths:
   A /trunk/asn1/ulp
   A /trunk/asn1/ulp/Makefile
   A /trunk/asn1/ulp/Makefile.nmake
   A /trunk/asn1/ulp/ULP.asn
   A /trunk/asn1/ulp/packet-ulp-template.c
   A /trunk/asn1/ulp/packet-ulp-template.h
   A /trunk/asn1/ulp/ulp.cnf
   A /trunk/epan/dissectors/packet-ulp.c
   A /trunk/epan/dissectors/packet-ulp.h

Add OMA UserPlane Location Protocol packet dissector
------------------------------------------------------------------------
r18077 | etxrab | 2006-05-02 14:48:03 -0500 (Tue, 02 May 2006) | 2 lines
Changed paths:
   M /trunk/asn1/Makefile.nmake
   M /trunk/epan/dissectors/Makefile.common

Makefiles for OMA UserPlane Location Protocol packet dissection..

------------------------------------------------------------------------
r18078 | guy | 2006-05-02 14:58:19 -0500 (Tue, 02 May 2006) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ipsec.c

Do the ESP payload decoding, and pass it to the subdissector, regardless
of whether we're building a protocol tree or not - you have to call
subdissectors in either case.

------------------------------------------------------------------------
r18079 | etxrab | 2006-05-02 15:26:49 -0500 (Tue, 02 May 2006) | 2 lines
Changed paths:
   M /trunk/asn1/camel/camel.cnf
   M /trunk/epan/dissectors/packet-camel.c

Fix Bug 913  DateAndTime dissection error in CAMEL CallInfoReportArg 

------------------------------------------------------------------------
r18080 | etxrab | 2006-05-03 00:07:04 -0500 (Wed, 03 May 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-sdp.c

From Andrei Emeltchenko:
I attached patch to add preferences in SDP for RTP stream detection. By default SDP decodes RTP stream but now I can disable it.

------------------------------------------------------------------------
r18081 | etxrab | 2006-05-03 00:29:04 -0500 (Wed, 03 May 2006) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ssl-utils.c
   M /trunk/epan/dissectors/packet-ssl-utils.h
   M /trunk/epan/dissectors/packet-ssl.c
   M /trunk/gtk/ssl-dlg.c

From Paolo Abeni:
authesserre samuel <sauthess@gmail.com> kindly pointed out an issue with session renegotiation in the current ssl decryption code. 

Encrypted handshake message are decrypted, but the dissector try to interpret the encrypted code. Renegotiation messages are therefore ignored. The attached pcap trace and key can be used to trigger the issue.

The attached patch fix the problem storing the decrypted version of encrypted handshake message and dissecting it when available. The patch also fix bad issue with des cipher (alike the issue fixed in my previous post)

------------------------------------------------------------------------
r18082 | guy | 2006-05-03 03:48:52 -0500 (Wed, 03 May 2006) | 4 lines
Changed paths:
   M /trunk/Makefile.am

Anything linked with @PCAP_LIBS@ needs, on at least some platforms
(e.g., Solaris 2 and later), to be linked with @SOCKET_LIBS@ and
@NSL_LIBS@ as well.

------------------------------------------------------------------------
r18083 | sahlberg | 2006-05-03 05:59:15 -0500 (Wed, 03 May 2006) | 5 lines
Changed paths:
   M /trunk/asn1/ldap/ldap.cnf
   M /trunk/asn1/ldap/packet-ldap-template.c
   M /trunk/epan/dissectors/packet-ldap.c
   M /trunk/epan/dissectors/packet-ldap.h

do some template magic to make ethereal dissect CLDAP RPC again.

i dont think it is the optimal way to solve this but it is better than nothing for the time being.


------------------------------------------------------------------------
r18084 | etxrab | 2006-05-03 13:49:37 -0500 (Wed, 03 May 2006) | 3 lines
Changed paths:
   M /trunk/asn1/gsmmap/GSMMAP.asn
   M /trunk/asn1/gsmmap/gsmmap.cnf
   M /trunk/asn1/gsmmap/packet-gsm_map-template.c
   M /trunk/epan/dissectors/packet-gsm_map.c

Fix Bug 916  PurgeMS decoding error in GSM MAP.
Get rid of som unused ASN1 code and some asn2eth warnings. 

------------------------------------------------------------------------
r18085 | etxrab | 2006-05-03 13:57:32 -0500 (Wed, 03 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/gsmmap/gsmmap.cnf
   M /trunk/asn1/gsmmap/packet-gsm_map-template.c
   M /trunk/epan/dissectors/packet-e164.c
   M /trunk/epan/dissectors/packet-e164.h

Add dissection of country code if number is in international format and Number plan is E164.
------------------------------------------------------------------------
r18086 | etxrab | 2006-05-03 14:09:03 -0500 (Wed, 03 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/Makefile.nmake
   M /trunk/asn1/snmp/Makefile
   M /trunk/epan/dissectors/packet-snmp.c
   M /trunk/epan/dissectors/packet-snmp.h

Use the asn2eth generated snmp dissector.
------------------------------------------------------------------------
r18087 | etxrab | 2006-05-03 14:32:27 -0500 (Wed, 03 May 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-isup.c

col_append_str() instead of col_set_str() by mistake.
------------------------------------------------------------------------
r18088 | sahlberg | 2006-05-04 03:54:58 -0500 (Thu, 04 May 2006) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-kerberos.c

from Guenther Deschner

Two more Kerberos error codes where it has been witnessed that the payload contains a PA-DATA structure with the magic salt containing an nt status code



------------------------------------------------------------------------
r18089 | sahlberg | 2006-05-04 05:19:32 -0500 (Thu, 04 May 2006) | 16 lines
Changed paths:
   M /trunk/asn1/ldap/ldap.cnf
   M /trunk/epan/dissectors/packet-ldap.c

force the AssertionValue type to be displayed as a STRING instead of as hex BYTES.


Most of the time  AssertionValue will contain an ascii string   so make it always display as a string to make the display "correct" most of the time insterad of being "wrong" most of the time.

There are situations when AssertionValue contains binary data though  and in those cases the display will be "wrong" (but not more wrong than the old dissector anyway)


What someone really should do (someone interested in ldap that is) to make it more correct would be to implement a dissector for AssertionValue in the template file and having the dissector check if any of the bytes of the octet string has a value <32   and if so display it in hex as   0x.....
It all bytes have values >=32   then it shoudlk display it as a string "...
instead.

Someone interested in ldap may spend time on this refinement.



------------------------------------------------------------------------
r18090 | jake | 2006-05-04 10:04:05 -0500 (Thu, 04 May 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-h1.c

From: Thomas Boehne
But since most PLCs now offer to run the protocol directly on TCP, I attached a little patch.

------------------------------------------------------------------------
r18091 | etxrab | 2006-05-04 10:36:41 -0500 (Thu, 04 May 2006) | 6 lines
Changed paths:
   M /trunk/gtk/expert_comp_dlg.c
   M /trunk/gtk/expert_comp_table.c
   M /trunk/gtk/expert_comp_table.h

From Greg Morris:
In summary these patches do the following:
1. GTK+ 2.x builds will now use Tree View to display the expert items, expanded items are the individual packet numbers.
2. GTK+ 1.x builds will continue to use the older clist functionality
3. Implements the equivilant of expert info (actually calls expert_dlg.c)

------------------------------------------------------------------------
r18092 | jake | 2006-05-04 11:50:52 -0500 (Thu, 04 May 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-s5066.c

From Menno Andriesse
By popular request (sort of...) here is a patch for the S5066 dissector to enable TCP port preference.

------------------------------------------------------------------------
r18093 | etxrab | 2006-05-04 13:25:43 -0500 (Thu, 04 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/h248/packet-h248-template.c
   M /trunk/epan/dissectors/packet-h248.c
   M /trunk/epan/dissectors/packet-h248.h

From LEGO fix "Dissector bug, Protocol H248"
------------------------------------------------------------------------
r18094 | ulfl | 2006-05-04 14:48:33 -0500 (Thu, 04 May 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-ethertype.c
   M /trunk/epan/etypes.h

fix spelling: PROFInet -> PROFINET
------------------------------------------------------------------------
r18095 | ulfl | 2006-05-05 14:29:50 -0500 (Fri, 05 May 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcom.c

fix VARIANT BOOL meaning
------------------------------------------------------------------------
r18096 | ulfl | 2006-05-05 14:31:23 -0500 (Fri, 05 May 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcom-dispatch.c

fix dissection of IDispatch Invoke dissection, if rgdispidNamedArgs array isn't NULL
------------------------------------------------------------------------
r18097 | ulfl | 2006-05-05 14:32:49 -0500 (Fri, 05 May 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcerpc.c

add two missing DCOM Dispatch error codes
------------------------------------------------------------------------
r18098 | sahlberg | 2006-05-05 17:01:45 -0500 (Fri, 05 May 2006) | 9 lines
Changed paths:
   M /trunk/epan/dissectors/packet-fc.h
   M /trunk/epan/dissectors/packet-scsi.c
   M /trunk/gtk/scsi_stat.c

update the itl structure so that it sets the cmdset field to the current command set even for the case where we have not detected it by seeing the inquiry response.
Make teh msb of the cmdset variable indicate whether we detected the commandset from the trace or whether we used the default value from preferences.

indicate in the dissection of the packet whether the command set is "known" or whether we are using the default one.

make scsi srt stats work even for when we are using the "default" dommandset. Previously scsi srt would ignore all pdus for itl sessions where the "default" command set was used.



------------------------------------------------------------------------
r18099 | ulfl | 2006-05-06 07:57:54 -0500 (Sat, 06 May 2006) | 1 line
Changed paths:
   M /trunk/gtk/capture_prefs.c
   M /trunk/gtk/gui_prefs.c

some minor fixes to the Preferences tooltip texts
------------------------------------------------------------------------
r18100 | sahlberg | 2006-05-06 16:52:47 -0500 (Sat, 06 May 2006) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-fix.c

from Chris Audley

fix for bug 909


------------------------------------------------------------------------
r18101 | sahlberg | 2006-05-06 17:00:23 -0500 (Sat, 06 May 2006) | 8 lines
Changed paths:
   M /trunk/tap-stats_tree.c

fix for coverity bug 156

it does not seem like it it is possible to trigger this bug   since the condition where st is dereferenced and null should be impossible to create.

Still   handle this impossible situation better if the guarantee that st can not be null here is changed in the future.



------------------------------------------------------------------------
r18102 | etxrab | 2006-05-07 08:22:30 -0500 (Sun, 07 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/ulp/ULP.asn
   M /trunk/asn1/ulp/packet-ulp-template.c
   M /trunk/epan/dissectors/packet-ulp.c

Fix an ASN1 error and use the IAANA registered ports.
------------------------------------------------------------------------
r18103 | etxrab | 2006-05-07 13:39:47 -0500 (Sun, 07 May 2006) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-tds.c

From Bill Meier:

Fix bug 833 (remove 'dead' code flagged by Coverity); 
Update defines based upon current version of FreeTDS tds.h; Reformat defines for readability;

------------------------------------------------------------------------
r18104 | sahlberg | 2006-05-08 03:21:36 -0500 (Mon, 08 May 2006) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ndmp.c

add tracking of request/response and responsetime to ndmp

we need this in order to be able to provide proper itlq structures to the scsi dissector   so that response data from scsi is dissected properly.



------------------------------------------------------------------------
r18105 | sahlberg | 2006-05-08 04:20:34 -0500 (Mon, 08 May 2006) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ndmp.c

use request/response tracking structure from NDMP and hang a scsi itlq nexus off it   so that cdb/datain/dataout/response tracking for scsi forks also for the ndmp transport.




------------------------------------------------------------------------
r18106 | etxrab | 2006-05-08 12:30:24 -0500 (Mon, 08 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/snmp/packet-snmp-template.c
   M /trunk/epan/dissectors/packet-snmp.c

Fix bug 926 OID wrongly decoded.
------------------------------------------------------------------------
r18107 | gal | 2006-05-08 12:45:12 -0500 (Mon, 08 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/x509ce/packet-x509ce-template.c
   M /trunk/asn1/x509if/packet-x509if-template.c
   M /trunk/epan/dissectors/packet-x509ce.c
   M /trunk/epan/dissectors/packet-x509if.c

FT_STRING => FT_OID where applicable
------------------------------------------------------------------------
r18108 | gal | 2006-05-08 12:46:58 -0500 (Mon, 08 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/s4406/packet-s4406-template.c
   M /trunk/asn1/s4406/s4406.asn
   M /trunk/asn1/s4406/s4406.cnf
   M /trunk/asn1/x420/x420-exp.cnf
   M /trunk/asn1/x420/x420.cnf
   M /trunk/epan/dissectors/packet-s4406.c
   M /trunk/epan/dissectors/packet-x420.c
   M /trunk/epan/dissectors/packet-x420.h

Better split between dissectors and fixes for s4406 SEQ OF defined extensions
------------------------------------------------------------------------
r18109 | gal | 2006-05-08 12:52:42 -0500 (Mon, 08 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/ldap/ldap.cnf
   M /trunk/asn1/ldap/packet-ldap-template.c
   M /trunk/asn1/ldap/packet-ldap-template.h
   M /trunk/asn1/x509af/packet-x509af-template.c
   M /trunk/epan/dissectors/packet-ldap.c
   M /trunk/epan/dissectors/packet-ldap.h
   M /trunk/epan/dissectors/packet-x509af.c

LDAP attribute type dissector framework including support for "netlogon" attribute and PKI attributes
------------------------------------------------------------------------
r18110 | gal | 2006-05-08 14:56:36 -0500 (Mon, 08 May 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-ber.c
   M /trunk/wiretap/Makefile.common
   A /trunk/wiretap/ber.c
   A /trunk/wiretap/ber.h
   M /trunk/wiretap/file_access.c
   M /trunk/wiretap/wtap.c
   M /trunk/wiretap/wtap.h

Basic Encoding Rules (BER) encoded file reading. Not really a packet trace format but still useful for dissecting arbitrary BER/DER ASN.1.
------------------------------------------------------------------------
r18111 | kukosa | 2006-05-09 02:35:36 -0500 (Tue, 09 May 2006) | 5 lines
Changed paths:
   M /trunk/tools/asn2eth.py

- support for multiple ASN.1 modules in one input file
- support for multiple input files
- #.MODULE_IMPORT replaced with #.MODULE (#.MODULE_IMPORT is supported for backward compatibility)
- #.MODULE is used for just compiled modules too
- more debug outputs
------------------------------------------------------------------------
r18112 | sahlberg | 2006-05-09 04:13:20 -0500 (Tue, 09 May 2006) | 6 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/Makefile.common
   A /trunk/epan/dissectors/packet-hci_h4.c
   A /trunk/epan/dissectors/packet-hci_h4.h

Add the first layer of the bluetooth stack   dissecting the hci h4   single byte

refactyored from the affix patch by Christoph Scholz



------------------------------------------------------------------------
r18113 | tuexen | 2006-05-09 05:20:28 -0500 (Tue, 09 May 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ndmp.c
   M /trunk/epan/dissectors/packet-tipc.c

Make top_tree static. This allows ethereal to be built on Mac OS X.

------------------------------------------------------------------------
r18114 | tuexen | 2006-05-09 05:23:56 -0500 (Tue, 09 May 2006) | 2 lines
Changed paths:
   M /trunk/gtk/sctp_graph_dlg.c

From Irene: Fix wrong display of SACKs.

------------------------------------------------------------------------
r18115 | jmayer | 2006-05-09 09:32:38 -0500 (Tue, 09 May 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-hci_h4.c
   M /trunk/epan/dissectors/packet-hci_h4.h

Propset...
------------------------------------------------------------------------
r18116 | gerald | 2006-05-09 13:30:52 -0500 (Tue, 09 May 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-cops.c

The AMID type and tag are two bytes, not four.  The PSID should be shown
in decimal, not hex.

------------------------------------------------------------------------
r18117 | etxrab | 2006-05-09 14:01:20 -0500 (Tue, 09 May 2006) | 3 lines
Changed paths:
   M /trunk/asn1/ulp/ULP.asn
   M /trunk/asn1/ulp/packet-ulp-template.c
   M /trunk/asn1/ulp/ulp.cnf
   M /trunk/epan/dissectors/packet-ulp.c

- Some minor asn1 corrections
- Dissect Enumerated correctly
- Add message to info col.
------------------------------------------------------------------------
r18118 | sahlberg | 2006-05-09 15:39:59 -0500 (Tue, 09 May 2006) | 5 lines
Changed paths:
   M /trunk/gtk/scsi_stat.c

pass the correct hf filter name for the opcode field when we create the srt table
so that the popup menues to generate filters work.



------------------------------------------------------------------------
r18119 | etxrab | 2006-05-10 00:58:06 -0500 (Wed, 10 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/Makefile.nmake
   M /trunk/asn1/h225/packet-h225-template.c
   M /trunk/asn1/h245/packet-h245-template.c
   M /trunk/asn1/ranap/packet-ranap-template.c
   M /trunk/asn1/rnsap/packet-rnsap-template.c
   M /trunk/asn1/ulp/ulp.cnf
   M /trunk/epan/dissectors/packet-h225.c
   M /trunk/epan/dissectors/packet-h225.h
   M /trunk/epan/dissectors/packet-h235.c
   M /trunk/epan/dissectors/packet-h235.h
   M /trunk/epan/dissectors/packet-h245.c
   M /trunk/epan/dissectors/packet-per.c
   M /trunk/epan/dissectors/packet-per.h
   M /trunk/epan/dissectors/packet-ranap.c
   M /trunk/epan/dissectors/packet-rnsap.c
   M /trunk/epan/dissectors/packet-ulp.c

Preparations to be able to handle unaligned PER.
------------------------------------------------------------------------
r18120 | sahlberg | 2006-05-10 02:55:52 -0500 (Wed, 10 May 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-hci_h4.c

add Bluetooth to the long protocol name


------------------------------------------------------------------------
r18121 | guy | 2006-05-10 03:46:51 -0500 (Wed, 10 May 2006) | 3 lines
Changed paths:
   M /trunk/ethereal_gen.py

Properly use PRIu64, and (properly) use PRId64 rather than PRIo64 to
print longlong's.

------------------------------------------------------------------------
r18122 | sahlberg | 2006-05-10 05:38:53 -0500 (Wed, 10 May 2006) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/Makefile.common
   A /trunk/epan/dissectors/packet-bthci_cmd.c

from Christoph Scholz's bluetooth patch


add dissection of HCI Command protocol to ethereal


------------------------------------------------------------------------
r18123 | jmayer | 2006-05-10 10:27:52 -0500 (Wed, 10 May 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-bthci_cmd.c

Propset...
------------------------------------------------------------------------
r18124 | etxrab | 2006-05-10 11:51:41 -0500 (Wed, 10 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/Makefile.nmake
   A /trunk/asn1/rrlp
   A /trunk/asn1/rrlp/Makefile
   A /trunk/asn1/rrlp/Makefile.nmake
   A /trunk/asn1/rrlp/packet-rrlp-template.c
   A /trunk/asn1/rrlp/packet-rrlp-template.h
   A /trunk/asn1/rrlp/rrlp.asn
   A /trunk/asn1/rrlp/rrlp.cnf
   M /trunk/epan/dissectors/Makefile.common
   A /trunk/epan/dissectors/packet-rrlp.c
   A /trunk/epan/dissectors/packet-rrlp.h

Add 3GPP Radio Resource LCS Protocol (RRLP) packet dissector
------------------------------------------------------------------------
r18125 | gal | 2006-05-10 14:50:54 -0500 (Wed, 10 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/cms/packet-cms-template.c
   M /trunk/epan/dissectors/packet-ber.c
   M /trunk/epan/dissectors/packet-cms.c
   M /trunk/epan/libethereal.def
   M /trunk/epan/oid_resolv.c
   M /trunk/epan/oid_resolv.h
   M /trunk/gtk/main.c
   M /trunk/gtk/main.h
   M /trunk/gtk/menu.c

"Field Information" context menu item that will bring up a web page reference to a field type of FT_OID
------------------------------------------------------------------------
r18126 | gal | 2006-05-10 15:39:42 -0500 (Wed, 10 May 2006) | 1 line
Changed paths:
   M /trunk/epan/libethereal.def

Wrong exported symbol
------------------------------------------------------------------------
r18127 | jake | 2006-05-10 17:11:11 -0500 (Wed, 10 May 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-dvmrp.c

Fix for bug 924. Adding preference whether to check the DVMRP V3 Major/Minor version.

------------------------------------------------------------------------
r18128 | jake | 2006-05-10 17:18:41 -0500 (Wed, 10 May 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-dvmrp.c

Implement DVMRP_V3_NEIGHBORS_2 presentation.

------------------------------------------------------------------------
r18129 | etxrab | 2006-05-11 00:08:00 -0500 (Thu, 11 May 2006) | 2 lines
Changed paths:
   M /trunk/gtk/main.c
   M /trunk/gtk/main.h
   M /trunk/gtk/menu.c
   M /trunk/gtk/proto_draw.c
   M /trunk/gtk/proto_draw.h

From Greg Morris:
add copy functionality to the details window. Also includes a change in the copy function of the hex data window to allow copying just the text strings instead of all of the hex data.
------------------------------------------------------------------------
r18130 | etxrab | 2006-05-11 00:09:15 -0500 (Thu, 11 May 2006) | 3 lines
Changed paths:
   M /trunk/doc/ethereal.pod
   M /trunk/docbook/eug_src/EUG_chapter_io.xml

From Martin Mathieson:
Add DCT2000 to the list of supported import file 
types in the Ethereal man page and the user guide
------------------------------------------------------------------------
r18133 | gal | 2006-05-11 11:42:38 -0500 (Thu, 11 May 2006) | 1 line
Changed paths:
   M /trunk/epan/libethereal.def
   M /trunk/epan/oid_resolv.c
   M /trunk/epan/oid_resolv.h
   M /trunk/gtk/main.c
   M /trunk/gtk/main.h
   M /trunk/gtk/menu.c

Removal of useless "Field Information" introduced in r18125
------------------------------------------------------------------------
r18138 | etxrab | 2006-05-11 15:32:43 -0500 (Thu, 11 May 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-isup.c

Fix Bug 938 ISUP IAM message marked as Malformed packet - Location number without address digits
wrongly decoded.
------------------------------------------------------------------------
r18143 | etxrab | 2006-05-13 07:06:56 -0500 (Sat, 13 May 2006) | 3 lines
Changed paths:
   M /trunk/asn1/ulp/ULP.asn
   M /trunk/asn1/ulp/packet-ulp-template.c
   M /trunk/asn1/ulp/ulp.cnf
   M /trunk/epan/dissectors/packet-per.c

Make dissect_per_constrained_integer handle unaligned PER.

Add ULP TCP port preference decode IPv4/IPv6 fields.
------------------------------------------------------------------------
r18144 | etxrab | 2006-05-13 17:18:08 -0500 (Sat, 13 May 2006) | 2 lines
Changed paths:
   M /trunk/asn1/snmp/packet-snmp-template.c
   M /trunk/asn1/snmp/snmp.cnf
   M /trunk/epan/dissectors/packet-snmp.c
   M /trunk/epan/dissectors/packet-ulp.c

snmp: Hopfully fix bug Bug 925.
Add packet-ulp.c missing from last commit.
------------------------------------------------------------------------
r18145 | sahlberg | 2006-05-14 01:24:57 -0500 (Sun, 14 May 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/Makefile.common
   A /trunk/epan/dissectors/packet-bthci-evt.c
   M /trunk/epan/dissectors/packet-bthci_cmd.c
   M /trunk/epan/dissectors/packet-hci_h4.h

bluetooth hci event dissector


------------------------------------------------------------------------
r18146 | sahlberg | 2006-05-14 02:46:37 -0500 (Sun, 14 May 2006) | 3 lines
Changed paths:
   A /trunk/epan/dissectors/packet-bthci_evt.c

checkin the correct hci evt dissector


------------------------------------------------------------------------
r18147 | sahlberg | 2006-05-14 02:47:21 -0500 (Sun, 14 May 2006) | 3 lines
Changed paths:
   D /trunk/epan/dissectors/packet-bthci-evt.c

delete the wrong evt dissector


------------------------------------------------------------------------
r18148 | etxrab | 2006-05-14 03:17:39 -0500 (Sun, 14 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/snmp/snmp.cnf
   M /trunk/epan/dissectors/packet-snmp.c

Remove stupid code.
------------------------------------------------------------------------
r18149 | sahlberg | 2006-05-14 05:18:29 -0500 (Sun, 14 May 2006) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/Makefile.common
   A /trunk/epan/dissectors/packet-bthci_acl.c
   M /trunk/epan/dissectors/packet-bthci_evt.c

add bluetooth acl dissection

the fragment reassembly from the old patch is commented out since it has to be redone completely using emem and se_trees  the proper way.
but to do this i would need example captures of fragmented bluetooth traffic first.



------------------------------------------------------------------------
r18150 | guy | 2006-05-14 17:25:07 -0500 (Sun, 14 May 2006) | 5 lines
Changed paths:
   M /trunk/plugins/docsis/Makefile.nmake

Use $(PLUGIN_NAME) wherever possible, so that we have a Makefile.nmake
that could be used with any plugin.  (It'd be nice if there were some
way to do that with Makefile.am, but automake doesn't seem to like
macro names being used in the definitions of its magic macros.)

------------------------------------------------------------------------
r18151 | guy | 2006-05-14 21:43:39 -0500 (Sun, 14 May 2006) | 6 lines
Changed paths:
   M /trunk/gtk/expert_comp_table.c

Clean up indentation.

Get rid of extra g_strdup_printf() arguments (the argument list is
terminated by running out of formats in the format string, not by a
terminating null pointer).

------------------------------------------------------------------------
r18152 | guy | 2006-05-14 21:49:42 -0500 (Sun, 14 May 2006) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-gsm_sms.c

Make "oct" in "dis_field_ud()" a guint8, as we never stuff anything
bigger than an 8-bit value in it, and guint is too big as we pass
something based on it to a routine expecting a guint16.

------------------------------------------------------------------------
r18153 | etxrab | 2006-05-15 00:27:23 -0500 (Mon, 15 May 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-aim-messaging.c

From Jelmer Vernooij:
Add proper dissection for the Ack message in OSCAR's Messaging SNAC family.

------------------------------------------------------------------------
r18154 | guy | 2006-05-15 00:28:56 -0500 (Mon, 15 May 2006) | 7 lines
Changed paths:
   M /trunk/wiretap/acinclude.m4
   M /trunk/wiretap/ber.c
   M /trunk/wiretap/configure.in

Fix some compiler warnings.

That requires that we define G_GINT64_MODIFIER ourselves if glib.h
doesn't define it for us, as that's what should be used to print 64-bit
integral values in any calls that use any of the GLib printf functions
(directly or indirectly).

------------------------------------------------------------------------
r18155 | kukosa | 2006-05-15 01:22:23 -0500 (Mon, 15 May 2006) | 7 lines
Changed paths:
   M /trunk/tools/asn2eth.py

- support for dissect_per_enumerated()
- new option -u for unaligned PER, add per_aligment_type_callback() into PDU routines
- remove discerning between old and new PER/BER API, the new API will be reached step-by-step, i.e. -X command line option removed
- add support for intersection of constraints (only one level)
- #.MODULE is generated into <prot>-exp.cnf file
- fix bug when comment header was not generated into <prot>-exp.cnf file

------------------------------------------------------------------------
r18156 | kukosa | 2006-05-15 01:27:53 -0500 (Mon, 15 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/h225/Makefile.nmake
   M /trunk/asn1/h225/h225-exp.cnf
   M /trunk/asn1/h225/h225.cnf
   M /trunk/asn1/h245/Makefile.nmake
   M /trunk/asn1/h245/h245-exp.cnf
   M /trunk/asn1/h450/Makefile.nmake
   M /trunk/asn1/h450/h450.cnf
   M /trunk/epan/dissectors/packet-h225.c
   M /trunk/epan/dissectors/packet-h225.h
   M /trunk/epan/dissectors/packet-h245.c
   M /trunk/epan/dissectors/packet-h450.c

H.225, H.245, H.450 regenerated with new asn2eth
------------------------------------------------------------------------
r18157 | kukosa | 2006-05-15 01:32:01 -0500 (Mon, 15 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/h235/H235-SECURITY-MESSAGES.asn
   A /trunk/asn1/h235/H235-SRTP.asn
   M /trunk/asn1/h235/Makefile.nmake
   M /trunk/asn1/h235/h235-exp.cnf
   M /trunk/asn1/h235/h235.cnf
   M /trunk/asn1/h235/packet-h235-template.c
   M /trunk/epan/dissectors/packet-h235.c
   M /trunk/epan/dissectors/packet-h235.h

updated to H.235.0:09/2005 and H.235.8:09/2005 
------------------------------------------------------------------------
r18158 | kukosa | 2006-05-15 01:36:17 -0500 (Mon, 15 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/ranap/Makefile.nmake
   M /trunk/asn1/ranap/packet-ranap-template.c
   M /trunk/asn1/ranap/ranap.cnf
   M /trunk/asn1/rnsap/Makefile.nmake
   M /trunk/asn1/rnsap/packet-rnsap-template.c
   M /trunk/asn1/rrlp/Makefile.nmake
   M /trunk/asn1/rrlp/rrlp.cnf
   M /trunk/asn1/ulp/Makefile.nmake
   M /trunk/asn1/ulp/packet-ulp-template.c
   M /trunk/asn1/ulp/ulp.cnf
   M /trunk/epan/dissectors/packet-ranap.c
   M /trunk/epan/dissectors/packet-rnsap.c
   M /trunk/epan/dissectors/packet-rrlp.c
   M /trunk/epan/dissectors/packet-ulp.c

regenerated with new asn2eth
------------------------------------------------------------------------
r18163 | kukosa | 2006-05-15 11:28:49 -0500 (Mon, 15 May 2006) | 1 line
Changed paths:
   M /trunk/doc/README.developer

update with FT_GUID, FT_OID, BASE_DEC_HEX, BASE_HEX_DEC
------------------------------------------------------------------------
r18164 | guy | 2006-05-15 12:58:39 -0500 (Mon, 15 May 2006) | 5 lines
Changed paths:
   M /trunk/asn1/snmp/packet-snmp-template.c
   M /trunk/epan/dissectors/packet-snmp.c

Don't throw an exception in oid_to_subid_buf() if the generated OID is
zero-length - oid_to_subid_buf() can be called when we're not in the
middle of a dissection, and throwing a "dissector bug" assertion in that
case is itself a bug.

------------------------------------------------------------------------
r18165 | etxrab | 2006-05-15 15:21:33 -0500 (Mon, 15 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/ranap/ranap.cnf
   M /trunk/epan/dissectors/packet-ranap.c
   M /trunk/epan/dissectors/packet-ranap.h

PER Enumerated is working now.
------------------------------------------------------------------------
r18166 | etxrab | 2006-05-15 15:22:24 -0500 (Mon, 15 May 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-diameter.c

dissect_diameter_tcp should be static void
------------------------------------------------------------------------
r18167 | etxrab | 2006-05-15 15:23:37 -0500 (Mon, 15 May 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-uma.c

Fix bug 951 UMA: message URR_RELEASE not decoded corretly 
and 952 UMA: IE length-field of UMA-message can always be 2 bytes 
------------------------------------------------------------------------
r18168 | jake | 2006-05-15 16:42:02 -0500 (Mon, 15 May 2006) | 4 lines
Changed paths:
   M /trunk/epan/emem.c

Change return value checking to the true meaning of the spec:
"If the function succeeds, the return value is nonzero."
This may or may not solve bug 915.

------------------------------------------------------------------------
r18169 | guy | 2006-05-15 17:21:51 -0500 (Mon, 15 May 2006) | 6 lines
Changed paths:
   M /trunk/wiretap/acinclude.m4
   M /trunk/wiretap/configure.in

GLib 1.2[.x] doesn't have g_sprintf(), it just has g_snprintf(); use
that.

It also doesn't hae <glib/gprintf.h>, so use that only for GLib 2.0 and
later.

------------------------------------------------------------------------
r18170 | sahlberg | 2006-05-16 03:31:34 -0500 (Tue, 16 May 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/Makefile.common
   A /trunk/epan/dissectors/packet-btl2cap.c
   A /trunk/epan/dissectors/packet-btl2cap.h

add dissection of the bluetooth btl2cap layer


------------------------------------------------------------------------
r18171 | jmayer | 2006-05-16 10:45:07 -0500 (Tue, 16 May 2006) | 1 line
Changed paths:
   M /trunk/tools/pidl/MANIFEST
   M /trunk/tools/pidl/README
   M /trunk/tools/pidl/TODO
   M /trunk/tools/pidl/idl.yp
   M /trunk/tools/pidl/lib/Parse/Pidl/Compat.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Dump.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Ethereal/Conformance.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Ethereal/NDR.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/IDL.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/NDR.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/ODL.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba3/Client.pm
   A /trunk/tools/pidl/lib/Parse/Pidl/Samba3/ClientNDR.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba3/Header.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba3/Parser.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba3/Server.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba3/Template.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba3/Types.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba4/COM/Header.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba4/COM/Proxy.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba4/COM/Stub.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba4/EJS.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba4/Header.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba4/NDR/Server.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba4/SWIG.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba4/TDR.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba4/Template.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba4.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Typelist.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Util.pm
   M /trunk/tools/pidl/lib/Parse/Pidl.pm
   M /trunk/tools/pidl/pidl
   M /trunk/tools/pidl/ref_notes.txt
   M /trunk/tools/pidl/smb_interfaces.pm
   M /trunk/tools/pidl/smb_interfaces.yp
   M /trunk/tools/pidl/tests/Util.pm
   M /trunk/tools/pidl/tests/ndr_represent.pl
   M /trunk/tools/pidl/tests/ndr_tagtype.pl

Add eol-style, update to current samba tree
------------------------------------------------------------------------
r18172 | jake | 2006-05-16 10:49:03 -0500 (Tue, 16 May 2006) | 2 lines
Changed paths:
   M /trunk/Makefile.nmake

Change to address bug 933. See if this, after setup, includes the updated GTK-Wimp.

------------------------------------------------------------------------
r18173 | etxrab | 2006-05-16 14:04:53 -0500 (Tue, 16 May 2006) | 11 lines
Changed paths:
   A /trunk/dtds/reginfo.dtd
   M /trunk/epan/dissectors/packet-xml.c

From Martin Mathieson:

- adds application/xpidf+xml as a media type known to be xml
- appends /xml to the protocol column (as SDP does).  It would be nice 
to append the top-level element, or the name taken from a matching DTD, 
but this will do for now (at least its a short name).
- corrects the help text for the preference.  I can see that it is 
registered as a heuristic for "http", "sip" and "media"

I've also included a slightly updated version of reginfo.dtd (RFC 3680) 
for the dtds folder.
------------------------------------------------------------------------
r18174 | etxrab | 2006-05-16 14:07:48 -0500 (Tue, 16 May 2006) | 8 lines
Changed paths:
   M /trunk/epan/dissectors/packet-mysql.c

From  Axel Schwenke:

- complete dissector for greeting/login packets
- nearly complete dissector for requests, except:
  + parameters for COM_EXECUTE
  + requests from replication slave
- added some features to response dissectors

------------------------------------------------------------------------
r18175 | etxrab | 2006-05-16 14:12:35 -0500 (Tue, 16 May 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-bthci_acl.c
   M /trunk/epan/dissectors/packet-bthci_evt.c

Propset
------------------------------------------------------------------------
r18176 | etxrab | 2006-05-16 17:00:18 -0500 (Tue, 16 May 2006) | 3 lines
Changed paths:
   M /trunk/asn1/ulp/ULP.asn
   M /trunk/asn1/ulp/packet-ulp-template.c
   M /trunk/asn1/ulp/ulp.cnf
   M /trunk/epan/dissectors/packet-per.c
   M /trunk/epan/dissectors/packet-ulp.c
   M /trunk/epan/dissectors/packet-ulp.h

PER:
Adapt dissect_per_octet_string to unaligned PER.
Call rrlp dissector from ulp dissector. 
------------------------------------------------------------------------
r18177 | sahlberg | 2006-05-17 03:25:54 -0500 (Wed, 17 May 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-btl2cap.c
   M /trunk/epan/dissectors/packet-btl2cap.h

for "connection oriented channels"   place a generated psm field in the display to make it filterable and also to show what the payload should be.


------------------------------------------------------------------------
r18178 | ulfl | 2006-05-17 04:28:14 -0500 (Wed, 17 May 2006) | 4 lines
Changed paths:
   M /trunk/epan/emem.c

attempt to fix #915:

if the GetVersionEx() call fails, force the dwPlatformId to VER_PLATFORM_WIN32_WINDOWS so the return value from VirtualProtect() won't trigger an assert.

------------------------------------------------------------------------
r18179 | etxrab | 2006-05-17 13:09:14 -0500 (Wed, 17 May 2006) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-gsm_a.c
   M /trunk/epan/dissectors/packet-gsm_a.h
   M /trunk/epan/dissectors/packet-uma.c

Fix BUGs:
955 UMA: Handover Command message not decoded.
956 UMA: multirate-configuration not decoded correctly .
957 UMA: Received Signal Level List not decoded.

------------------------------------------------------------------------
r18180 | etxrab | 2006-05-17 13:11:12 -0500 (Wed, 17 May 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-per.c

Add missing add_new_data_source.
------------------------------------------------------------------------
r18181 | etxrab | 2006-05-17 14:30:57 -0500 (Wed, 17 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/rrlp/packet-rrlp-template.c
   M /trunk/asn1/rrlp/rrlp.asn
   M /trunk/asn1/rrlp/rrlp.cnf
   M /trunk/epan/dissectors/packet-rrlp.c
   M /trunk/epan/dissectors/packet-rrlp.h

Fix decoding of Ext-GeographicalInformation.
------------------------------------------------------------------------
r18182 | etxrab | 2006-05-17 15:09:48 -0500 (Wed, 17 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/gsmmap/Makefile.nmake
   M /trunk/asn1/gsmmap/gsm_map-exp.cnf
   M /trunk/asn1/gsmmap/packet-gsm_map-template.c
   M /trunk/asn1/gsmmap/packet-gsm_map-template.h
   M /trunk/asn1/rrlp/rrlp.cnf
   M /trunk/epan/dissectors/packet-gsm_map.c
   M /trunk/epan/dissectors/packet-gsm_map.h
   M /trunk/epan/dissectors/packet-rrlp.c

Decode Ext-GeographicalInformation.
------------------------------------------------------------------------
r18183 | lroland | 2006-05-17 19:25:14 -0500 (Wed, 17 May 2006) | 2 lines
Changed paths:
   M /trunk/epan/emem.c

Improve fix for Bug 915 by using GetVersionEx() as it is recommended by Microsoft. Tested on Win98 SE.

------------------------------------------------------------------------
r18184 | guy | 2006-05-18 06:34:57 -0500 (Thu, 18 May 2006) | 2 lines
Changed paths:
   M /trunk/epan/strutil.c

Put a newline at the end of the file.

------------------------------------------------------------------------
r18185 | guy | 2006-05-18 06:37:32 -0500 (Thu, 18 May 2006) | 2 lines
Changed paths:
   M /trunk/tools/make-dissector-reg.py

Put a newline at the end of plugin.c files.

------------------------------------------------------------------------
r18186 | guy | 2006-05-18 07:01:33 -0500 (Thu, 18 May 2006) | 4 lines
Changed paths:
   M /trunk/epan/filesystem.c

As suggested by Jim Prince, pass the right argument to "getcwd()" - the
buffer argument is a mallocated buffer, so sizeof doesn't return its
size, it returns the size of the pointer to the buffer.  Fixes bug 907.

------------------------------------------------------------------------
r18187 | jake | 2006-05-18 12:08:41 -0500 (Thu, 18 May 2006) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-telnet.c

From Ted Percival:
I have updated the TELNET dissector to dissect encryption negotiation
commands as specified by RFC 2946. 

------------------------------------------------------------------------
r18188 | guy | 2006-05-19 03:18:22 -0500 (Fri, 19 May 2006) | 2 lines
Changed paths:
   M /trunk/wiretap/catapult_dct2000.c

Squelch some compiler warnings (a time_t might be an int or a long).

------------------------------------------------------------------------
r18189 | gerald | 2006-05-20 12:50:55 -0500 (Sat, 20 May 2006) | 2 lines
Changed paths:
   A /trunk/testfile

Wireshark repository commit test.

------------------------------------------------------------------------
r18190 | gerald | 2006-05-20 12:51:18 -0500 (Sat, 20 May 2006) | 2 lines
Changed paths:
   D /trunk/testfile

Repository delete test.

------------------------------------------------------------------------
r18191 | gerald | 2006-05-20 12:54:12 -0500 (Sat, 20 May 2006) | 2 lines
Changed paths:
   M /trunk/README

Change test.

------------------------------------------------------------------------
r18192 | gerald | 2006-05-20 15:20:27 -0500 (Sat, 20 May 2006) | 2 lines
Changed paths:
   A /trunk/image/wslogo.svg

Add the Wireshark logo.

------------------------------------------------------------------------
r18193 | guy | 2006-05-20 16:45:07 -0500 (Sat, 20 May 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-e212.c

Put a newline at the end of the file.

------------------------------------------------------------------------
r18194 | guy | 2006-05-20 17:01:08 -0500 (Sat, 20 May 2006) | 6 lines
Changed paths:
   M /trunk/capture_loop.c
   M /trunk/capture_loop.h

Dumpcap doesn't need to ensure that it doesn't block indefinitely, as it
has no UI, nor does it need to ensure it processes only one packet at a
time; get rid of the select stuff, and pass a count of -1 to
pcap_dispatch() so it processes a single bufferfull of packets rather
than just one packet at a time.

------------------------------------------------------------------------
r18195 | guy | 2006-05-20 18:18:44 -0500 (Sat, 20 May 2006) | 4 lines
Changed paths:
   M /trunk/capture_loop.c
   M /trunk/capture_loop.h

The timeout is needed if you don't have pcap_breakloop(), so we'll put
it back for now; I'll fix it later not to do the timeout if we have
pcap_breakloop().

------------------------------------------------------------------------
r18196 | sahlberg | 2006-05-20 23:49:01 -0500 (Sat, 20 May 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/format-oid.h
   M /trunk/epan/dissectors/packet-3com-njack.c
   M /trunk/epan/dissectors/packet-3com-xns.c
   M /trunk/epan/dissectors/packet-3g-a11.c
   M /trunk/epan/dissectors/packet-9p.c
   M /trunk/epan/dissectors/packet-MAP_DialoguePDU.c
   M /trunk/epan/dissectors/packet-MAP_DialoguePDU.h
   M /trunk/epan/dissectors/packet-aarp.c
   M /trunk/epan/dissectors/packet-acap.c
   M /trunk/epan/dissectors/packet-acp133.c
   M /trunk/epan/dissectors/packet-acp133.h
   M /trunk/epan/dissectors/packet-acse.c
   M /trunk/epan/dissectors/packet-acse.h
   M /trunk/epan/dissectors/packet-actrace.c
   M /trunk/epan/dissectors/packet-actrace.h
   M /trunk/epan/dissectors/packet-afp.c
   M /trunk/epan/dissectors/packet-afp.h
   M /trunk/epan/dissectors/packet-afs.c
   M /trunk/epan/dissectors/packet-afs.h
   M /trunk/epan/dissectors/packet-aim-admin.c
   M /trunk/epan/dissectors/packet-aim-adverts.c
   M /trunk/epan/dissectors/packet-aim-bos.c
   M /trunk/epan/dissectors/packet-aim-buddylist.c
   M /trunk/epan/dissectors/packet-aim-chat.c
   M /trunk/epan/dissectors/packet-aim-chatnav.c
   M /trunk/epan/dissectors/packet-aim-directory.c
   M /trunk/epan/dissectors/packet-aim-email.c
   M /trunk/epan/dissectors/packet-aim-generic.c
   M /trunk/epan/dissectors/packet-aim-icq.c
   M /trunk/epan/dissectors/packet-aim-invitation.c
   M /trunk/epan/dissectors/packet-aim-location.c
   M /trunk/epan/dissectors/packet-aim-messaging.c
   M /trunk/epan/dissectors/packet-aim-oft.c
   M /trunk/epan/dissectors/packet-aim-popup.c
   M /trunk/epan/dissectors/packet-aim-signon.c
   M /trunk/epan/dissectors/packet-aim-ssi.c
   M /trunk/epan/dissectors/packet-aim-sst.c
   M /trunk/epan/dissectors/packet-aim-stats.c
   M /trunk/epan/dissectors/packet-aim-translate.c
   M /trunk/epan/dissectors/packet-aim-userlookup.c
   M /trunk/epan/dissectors/packet-aim.c
   M /trunk/epan/dissectors/packet-aim.h
   M /trunk/epan/dissectors/packet-ajp13.c
   M /trunk/epan/dissectors/packet-alcap.c
   M /trunk/epan/dissectors/packet-alcap.h
   M /trunk/epan/dissectors/packet-amr.c
   M /trunk/epan/dissectors/packet-ans.c
   M /trunk/epan/dissectors/packet-ansi_637.c
   M /trunk/epan/dissectors/packet-ansi_683.c
   M /trunk/epan/dissectors/packet-ansi_801.c
   M /trunk/epan/dissectors/packet-ansi_a.c
   M /trunk/epan/dissectors/packet-ansi_a.h
   M /trunk/epan/dissectors/packet-ansi_map.c
   M /trunk/epan/dissectors/packet-ansi_map.h
   M /trunk/epan/dissectors/packet-aodv.c
   M /trunk/epan/dissectors/packet-ap1394.c
   M /trunk/epan/dissectors/packet-ap1394.h
   M /trunk/epan/dissectors/packet-app-pkix-cert.c
   M /trunk/epan/dissectors/packet-arcnet.c
   M /trunk/epan/dissectors/packet-arcnet.h
   M /trunk/epan/dissectors/packet-armagetronad.c
   M /trunk/epan/dissectors/packet-arp.c
   M /trunk/epan/dissectors/packet-arp.h
   M /trunk/epan/dissectors/packet-aruba-adp.c
   M /trunk/epan/dissectors/packet-asap.c
   M /trunk/epan/dissectors/packet-ascend.c
   M /trunk/epan/dissectors/packet-asf.c
   M /trunk/epan/dissectors/packet-atalk.c
   M /trunk/epan/dissectors/packet-atm.c
   M /trunk/epan/dissectors/packet-atm.h
   M /trunk/epan/dissectors/packet-auto_rp.c
   M /trunk/epan/dissectors/packet-ax4000.c
   M /trunk/epan/dissectors/packet-bacapp.c
   M /trunk/epan/dissectors/packet-bacapp.h
   M /trunk/epan/dissectors/packet-bacnet.c
   M /trunk/epan/dissectors/packet-beep.c
   M /trunk/epan/dissectors/packet-ber.c
   M /trunk/epan/dissectors/packet-ber.h
   M /trunk/epan/dissectors/packet-bfd.c
   M /trunk/epan/dissectors/packet-bgp.c
   M /trunk/epan/dissectors/packet-bgp.h
   M /trunk/epan/dissectors/packet-bittorrent.c
   M /trunk/epan/dissectors/packet-bofl.c
   M /trunk/epan/dissectors/packet-bootp.c
   M /trunk/epan/dissectors/packet-bootparams.c
   M /trunk/epan/dissectors/packet-bpdu.c
   M /trunk/epan/dissectors/packet-brdwlk.c
   M /trunk/epan/dissectors/packet-bssap.c
   M /trunk/epan/dissectors/packet-bssap.h
   M /trunk/epan/dissectors/packet-bssgp.c
   M /trunk/epan/dissectors/packet-bthci_acl.c
   M /trunk/epan/dissectors/packet-bthci_cmd.c
   M /trunk/epan/dissectors/packet-bthci_evt.c
   M /trunk/epan/dissectors/packet-btl2cap.c
   M /trunk/epan/dissectors/packet-btl2cap.h
   M /trunk/epan/dissectors/packet-bvlc.c
   M /trunk/epan/dissectors/packet-camel.c
   M /trunk/epan/dissectors/packet-camel.h
   M /trunk/epan/dissectors/packet-cast.c
   M /trunk/epan/dissectors/packet-catapult-dct2000.c
   M /trunk/epan/dissectors/packet-ccsds.c
   M /trunk/epan/dissectors/packet-cdp.c
   M /trunk/epan/dissectors/packet-cdt.c
   M /trunk/epan/dissectors/packet-cdt.h
   M /trunk/epan/dissectors/packet-cgmp.c
   M /trunk/epan/dissectors/packet-chdlc.c
   M /trunk/epan/dissectors/packet-chdlc.h
   M /trunk/epan/dissectors/packet-cigi.c
   M /trunk/epan/dissectors/packet-cimd.c
   M /trunk/epan/dissectors/packet-cimd.h
   M /trunk/epan/dissectors/packet-cip.c
   M /trunk/epan/dissectors/packet-cip.h
   M /trunk/epan/dissectors/packet-cisco-oui.c
   M /trunk/epan/dissectors/packet-cisco-wireless.c
   M /trunk/epan/dissectors/packet-clearcase.c
   M /trunk/epan/dissectors/packet-clearcase.h
   M /trunk/epan/dissectors/packet-clip.c
   M /trunk/epan/dissectors/packet-clip.h
   M /trunk/epan/dissectors/packet-clnp.c
   M /trunk/epan/dissectors/packet-cmip.c
   M /trunk/epan/dissectors/packet-cmip.h
   M /trunk/epan/dissectors/packet-cmp.c
   M /trunk/epan/dissectors/packet-cmp.h
   M /trunk/epan/dissectors/packet-cms.c
   M /trunk/epan/dissectors/packet-cms.h
   M /trunk/epan/dissectors/packet-cops.c
   M /trunk/epan/dissectors/packet-cosine.c
   M /trunk/epan/dissectors/packet-cpfi.c
   M /trunk/epan/dissectors/packet-cpha.c
   M /trunk/epan/dissectors/packet-crmf.c
   M /trunk/epan/dissectors/packet-crmf.h
   M /trunk/epan/dissectors/packet-csm-encaps.c
   M /trunk/epan/dissectors/packet-cups.c
   M /trunk/epan/dissectors/packet-daap.c
   M /trunk/epan/dissectors/packet-dap.c
   M /trunk/epan/dissectors/packet-dap.h
   M /trunk/epan/dissectors/packet-data.c
   M /trunk/epan/dissectors/packet-data.h
   M /trunk/epan/dissectors/packet-dccp.c
   M /trunk/epan/dissectors/packet-dccp.h
   M /trunk/epan/dissectors/packet-dcerpc-afs4int.c
   M /trunk/epan/dissectors/packet-dcerpc-atsvc.c
   M /trunk/epan/dissectors/packet-dcerpc-atsvc.h
   M /trunk/epan/dissectors/packet-dcerpc-bossvr.c
   M /trunk/epan/dissectors/packet-dcerpc-browser.c
   M /trunk/epan/dissectors/packet-dcerpc-browser.h
   M /trunk/epan/dissectors/packet-dcerpc-budb.c
   M /trunk/epan/dissectors/packet-dcerpc-budb.h
   M /trunk/epan/dissectors/packet-dcerpc-butc.c
   M /trunk/epan/dissectors/packet-dcerpc-butc.h
   M /trunk/epan/dissectors/packet-dcerpc-cds_clerkserver.c
   M /trunk/epan/dissectors/packet-dcerpc-cds_solicit.c
   M /trunk/epan/dissectors/packet-dcerpc-conv.c
   M /trunk/epan/dissectors/packet-dcerpc-cprpc_server.c
   M /trunk/epan/dissectors/packet-dcerpc-dce122.c
   M /trunk/epan/dissectors/packet-dcerpc-dce122.h
   M /trunk/epan/dissectors/packet-dcerpc-dcom.h
   M /trunk/epan/dissectors/packet-dcerpc-dfs.c
   M /trunk/epan/dissectors/packet-dcerpc-dfs.h
   M /trunk/epan/dissectors/packet-dcerpc-dnsserver.c
   M /trunk/epan/dissectors/packet-dcerpc-dnsserver.h
   M /trunk/epan/dissectors/packet-dcerpc-drsuapi.c
   M /trunk/epan/dissectors/packet-dcerpc-drsuapi.h
   M /trunk/epan/dissectors/packet-dcerpc-dssetup.c
   M /trunk/epan/dissectors/packet-dcerpc-dssetup.h
   M /trunk/epan/dissectors/packet-dcerpc-dtsprovider.c
   M /trunk/epan/dissectors/packet-dcerpc-dtsstime_req.c
   M /trunk/epan/dissectors/packet-dcerpc-efs.c
   M /trunk/epan/dissectors/packet-dcerpc-efs.h
   M /trunk/epan/dissectors/packet-dcerpc-epm.c
   M /trunk/epan/dissectors/packet-dcerpc-eventlog.c
   M /trunk/epan/dissectors/packet-dcerpc-eventlog.h
   M /trunk/epan/dissectors/packet-dcerpc-fldb.c
   M /trunk/epan/dissectors/packet-dcerpc-frsapi.c
   M /trunk/epan/dissectors/packet-dcerpc-frsapi.h
   M /trunk/epan/dissectors/packet-dcerpc-frsrpc.c
   M /trunk/epan/dissectors/packet-dcerpc-frsrpc.h
   M /trunk/epan/dissectors/packet-dcerpc-ftserver.c
   M /trunk/epan/dissectors/packet-dcerpc-icl_rpc.c
   M /trunk/epan/dissectors/packet-dcerpc-initshutdown.c
   M /trunk/epan/dissectors/packet-dcerpc-initshutdown.h
   M /trunk/epan/dissectors/packet-dcerpc-krb5rpc.c
   M /trunk/epan/dissectors/packet-dcerpc-llb.c
   M /trunk/epan/dissectors/packet-dcerpc-lsa.c
   M /trunk/epan/dissectors/packet-dcerpc-lsa.h
   M /trunk/epan/dissectors/packet-dcerpc-mapi.c
   M /trunk/epan/dissectors/packet-dcerpc-mapi.h
   M /trunk/epan/dissectors/packet-dcerpc-messenger.c
   M /trunk/epan/dissectors/packet-dcerpc-mgmt.c
   M /trunk/epan/dissectors/packet-dcerpc-ndr.c
   M /trunk/epan/dissectors/packet-dcerpc-netlogon.c
   M /trunk/epan/dissectors/packet-dcerpc-netlogon.h
   M /trunk/epan/dissectors/packet-dcerpc-nspi.c
   M /trunk/epan/dissectors/packet-dcerpc-nt.c
   M /trunk/epan/dissectors/packet-dcerpc-nt.h
   M /trunk/epan/dissectors/packet-dcerpc-pnp.c
   M /trunk/epan/dissectors/packet-dcerpc-pnp.h
   M /trunk/epan/dissectors/packet-dcerpc-rdaclif.c
   M /trunk/epan/dissectors/packet-dcerpc-rep_proc.c
   M /trunk/epan/dissectors/packet-dcerpc-roverride.c
   M /trunk/epan/dissectors/packet-dcerpc-rpriv.c
   M /trunk/epan/dissectors/packet-dcerpc-rras.c
   M /trunk/epan/dissectors/packet-dcerpc-rras.h
   M /trunk/epan/dissectors/packet-dcerpc-rs_acct.c
   M /trunk/epan/dissectors/packet-dcerpc-rs_attr.c
   M /trunk/epan/dissectors/packet-dcerpc-rs_attr_schema.c
   M /trunk/epan/dissectors/packet-dcerpc-rs_bind.c
   M /trunk/epan/dissectors/packet-dcerpc-rs_misc.c
   M /trunk/epan/dissectors/packet-dcerpc-rs_pgo.c
   M /trunk/epan/dissectors/packet-dcerpc-rs_plcy.c
   M /trunk/epan/dissectors/packet-dcerpc-rs_prop_acct.c
   M /trunk/epan/dissectors/packet-dcerpc-rs_prop_acl.c
   M /trunk/epan/dissectors/packet-dcerpc-rs_prop_attr.c
   M /trunk/epan/dissectors/packet-dcerpc-rs_prop_pgo.c
   M /trunk/epan/dissectors/packet-dcerpc-rs_prop_plcy.c
   M /trunk/epan/dissectors/packet-dcerpc-rs_pwd_mgmt.c
   M /trunk/epan/dissectors/packet-dcerpc-rs_repadm.c
   M /trunk/epan/dissectors/packet-dcerpc-rs_replist.c
   M /trunk/epan/dissectors/packet-dcerpc-rs_repmgr.c
   M /trunk/epan/dissectors/packet-dcerpc-rs_unix.c
   M /trunk/epan/dissectors/packet-dcerpc-rsec_login.c
   M /trunk/epan/dissectors/packet-dcerpc-samr.c
   M /trunk/epan/dissectors/packet-dcerpc-samr.h
   M /trunk/epan/dissectors/packet-dcerpc-secidmap.c
   M /trunk/epan/dissectors/packet-dcerpc-spoolss.c
   M /trunk/epan/dissectors/packet-dcerpc-spoolss.h
   M /trunk/epan/dissectors/packet-dcerpc-srvsvc.c
   M /trunk/epan/dissectors/packet-dcerpc-srvsvc.h
   M /trunk/epan/dissectors/packet-dcerpc-svcctl.c
   M /trunk/epan/dissectors/packet-dcerpc-svcctl.h
   M /trunk/epan/dissectors/packet-dcerpc-tapi.c
   M /trunk/epan/dissectors/packet-dcerpc-tapi.h
   M /trunk/epan/dissectors/packet-dcerpc-tkn4int.c
   M /trunk/epan/dissectors/packet-dcerpc-trksvr.c
   M /trunk/epan/dissectors/packet-dcerpc-ubikdisk.c
   M /trunk/epan/dissectors/packet-dcerpc-ubikvote.c
   M /trunk/epan/dissectors/packet-dcerpc-update.c
   M /trunk/epan/dissectors/packet-dcerpc-winreg.c
   M /trunk/epan/dissectors/packet-dcerpc-winreg.h
   M /trunk/epan/dissectors/packet-dcerpc-wkssvc.c
   M /trunk/epan/dissectors/packet-dcerpc-wkssvc.h
   M /trunk/epan/dissectors/packet-dcerpc.c
   M /trunk/epan/dissectors/packet-dcerpc.h
   M /trunk/epan/dissectors/packet-dcm.c
   M /trunk/epan/dissectors/packet-dcom-cba-acco.c
   M /trunk/epan/dissectors/packet-dcom-cba-acco.h
   M /trunk/epan/dissectors/packet-dcom-cba.c
   M /trunk/epan/dissectors/packet-dcom-dispatch.c
   M /trunk/epan/dissectors/packet-dcom-dispatch.h
   M /trunk/epan/dissectors/packet-dcom-oxid.c
   M /trunk/epan/dissectors/packet-dcom-remact.c
   M /trunk/epan/dissectors/packet-dcom-remunkn.c
   M /trunk/epan/dissectors/packet-dcom-sysact.c
   M /trunk/epan/dissectors/packet-dcom.c
   M /trunk/epan/dissectors/packet-dcom.h
   M /trunk/epan/dissectors/packet-dcp.c
   M /trunk/epan/dissectors/packet-dcp.h
   M /trunk/epan/dissectors/packet-ddtp.c
   M /trunk/epan/dissectors/packet-ddtp.h
   M /trunk/epan/dissectors/packet-dec-bpdu.c
   M /trunk/epan/dissectors/packet-dec-dnart.c
   M /trunk/epan/dissectors/packet-dhcp-failover.c
   M /trunk/epan/dissectors/packet-dhcpv6.c
   M /trunk/epan/dissectors/packet-diameter.c
   M /trunk/epan/dissectors/packet-diffserv-mpls-common.c
   M /trunk/epan/dissectors/packet-diffserv-mpls-common.h
   M /trunk/epan/dissectors/packet-dis-enums.c
   M /trunk/epan/dissectors/packet-dis-enums.h
   M /trunk/epan/dissectors/packet-dis-fields.c
   M /trunk/epan/dissectors/packet-dis-fields.h
   M /trunk/epan/dissectors/packet-dis-pdus.c
   M /trunk/epan/dissectors/packet-dis-pdus.h
   M /trunk/epan/dissectors/packet-dis.c
   M /trunk/epan/dissectors/packet-disp.c
   M /trunk/epan/dissectors/packet-disp.h
   M /trunk/epan/dissectors/packet-distcc.c
   M /trunk/epan/dissectors/packet-dlsw.c
   M /trunk/epan/dissectors/packet-dnp.c
   M /trunk/epan/dissectors/packet-dns.c
   M /trunk/epan/dissectors/packet-dns.h
   M /trunk/epan/dissectors/packet-dop.c
   M /trunk/epan/dissectors/packet-dop.h
   M /trunk/epan/dissectors/packet-dsi.c
   M /trunk/epan/dissectors/packet-dsp.c
   M /trunk/epan/dissectors/packet-dsp.h
   M /trunk/epan/dissectors/packet-dtp.c
   M /trunk/epan/dissectors/packet-dua.c
   M /trunk/epan/dissectors/packet-dvmrp.c
   M /trunk/epan/dissectors/packet-dvmrp.h
   M /trunk/epan/dissectors/packet-e164.c
   M /trunk/epan/dissectors/packet-e164.h
   M /trunk/epan/dissectors/packet-e212.c
   M /trunk/epan/dissectors/packet-e212.h
   M /trunk/epan/dissectors/packet-eap.c
   M /trunk/epan/dissectors/packet-eapol.c
   M /trunk/epan/dissectors/packet-echo.c
   M /trunk/epan/dissectors/packet-edonkey.c
   M /trunk/epan/dissectors/packet-edonkey.h
   M /trunk/epan/dissectors/packet-eigrp.c
   M /trunk/epan/dissectors/packet-enc.h
   M /trunk/epan/dissectors/packet-enip.c
   M /trunk/epan/dissectors/packet-enrp.c
   M /trunk/epan/dissectors/packet-esis.c
   M /trunk/epan/dissectors/packet-esis.h
   M /trunk/epan/dissectors/packet-ess.c
   M /trunk/epan/dissectors/packet-ess.h
   M /trunk/epan/dissectors/packet-eth.c
   M /trunk/epan/dissectors/packet-eth.h
   M /trunk/epan/dissectors/packet-etheric.c
   M /trunk/epan/dissectors/packet-ethertype.c
   M /trunk/epan/dissectors/packet-extreme.c
   M /trunk/epan/dissectors/packet-fc.c
   M /trunk/epan/dissectors/packet-fc.h
   M /trunk/epan/dissectors/packet-fcbls.h
   M /trunk/epan/dissectors/packet-fcct.c
   M /trunk/epan/dissectors/packet-fcct.h
   M /trunk/epan/dissectors/packet-fcdns.c
   M /trunk/epan/dissectors/packet-fcdns.h
   M /trunk/epan/dissectors/packet-fcels.c
   M /trunk/epan/dissectors/packet-fcels.h
   M /trunk/epan/dissectors/packet-fcfcs.c
   M /trunk/epan/dissectors/packet-fcfcs.h
   M /trunk/epan/dissectors/packet-fcfzs.c
   M /trunk/epan/dissectors/packet-fcfzs.h
   M /trunk/epan/dissectors/packet-fcip.c
   M /trunk/epan/dissectors/packet-fclctl.c
   M /trunk/epan/dissectors/packet-fclctl.h
   M /trunk/epan/dissectors/packet-fcp.c
   M /trunk/epan/dissectors/packet-fcp.h
   M /trunk/epan/dissectors/packet-fcsb3.c
   M /trunk/epan/dissectors/packet-fcsb3.h
   M /trunk/epan/dissectors/packet-fcsp.c
   M /trunk/epan/dissectors/packet-fcswils.c
   M /trunk/epan/dissectors/packet-fcswils.h
   M /trunk/epan/dissectors/packet-fddi.c
   M /trunk/epan/dissectors/packet-fddi.h
   M /trunk/epan/dissectors/packet-fix.c
   M /trunk/epan/dissectors/packet-fr.c
   M /trunk/epan/dissectors/packet-fr.h
   M /trunk/epan/dissectors/packet-frame.c
   M /trunk/epan/dissectors/packet-frame.h
   M /trunk/epan/dissectors/packet-ftam.c
   M /trunk/epan/dissectors/packet-ftam.h
   M /trunk/epan/dissectors/packet-ftbp.c
   M /trunk/epan/dissectors/packet-ftbp.h
   M /trunk/epan/dissectors/packet-ftp.c
   M /trunk/epan/dissectors/packet-fw1.c
   M /trunk/epan/dissectors/packet-g723.c
   M /trunk/epan/dissectors/packet-gift.c
   M /trunk/epan/dissectors/packet-giop.c
   M /trunk/epan/dissectors/packet-giop.h
   M /trunk/epan/dissectors/packet-gmrp.c
   M /trunk/epan/dissectors/packet-gnm.c
   M /trunk/epan/dissectors/packet-gnm.h
   M /trunk/epan/dissectors/packet-gnutella.c
   M /trunk/epan/dissectors/packet-gnutella.h
   M /trunk/epan/dissectors/packet-gprs-llc.c
   M /trunk/epan/dissectors/packet-gprs-ns.c
   M /trunk/epan/dissectors/packet-gre.c
   M /trunk/epan/dissectors/packet-gsm_a.c
   M /trunk/epan/dissectors/packet-gsm_a.h
   M /trunk/epan/dissectors/packet-gsm_map.c
   M /trunk/epan/dissectors/packet-gsm_map.h
   M /trunk/epan/dissectors/packet-gsm_sms.c
   M /trunk/epan/dissectors/packet-gsm_sms.h
   M /trunk/epan/dissectors/packet-gsm_sms_ud.c
   M /trunk/epan/dissectors/packet-gsm_ss.c
   M /trunk/epan/dissectors/packet-gsm_ss.h
   M /trunk/epan/dissectors/packet-gssapi.c
   M /trunk/epan/dissectors/packet-gssapi.h
   M /trunk/epan/dissectors/packet-gtp.c
   M /trunk/epan/dissectors/packet-gvrp.c
   M /trunk/epan/dissectors/packet-h1.c
   M /trunk/epan/dissectors/packet-h221_nonstd.c
   M /trunk/epan/dissectors/packet-h225.c
   M /trunk/epan/dissectors/packet-h225.h
   M /trunk/epan/dissectors/packet-h235.c
   M /trunk/epan/dissectors/packet-h235.h
   M /trunk/epan/dissectors/packet-h245.c
   M /trunk/epan/dissectors/packet-h245.h
   M /trunk/epan/dissectors/packet-h248.c
   M /trunk/epan/dissectors/packet-h248.h
   M /trunk/epan/dissectors/packet-h248_package_bcp.c
   M /trunk/epan/dissectors/packet-h248_package_bcp.h
   M /trunk/epan/dissectors/packet-h261.c
   M /trunk/epan/dissectors/packet-h263.c
   M /trunk/epan/dissectors/packet-h450.c
   M /trunk/epan/dissectors/packet-h450.h
   M /trunk/epan/dissectors/packet-hci_h4.c
   M /trunk/epan/dissectors/packet-hci_h4.h
   M /trunk/epan/dissectors/packet-hclnfsd.c
   M /trunk/epan/dissectors/packet-hclnfsd.h
   M /trunk/epan/dissectors/packet-hpext.c
   M /trunk/epan/dissectors/packet-hpext.h
   M /trunk/epan/dissectors/packet-hpsw.c
   M /trunk/epan/dissectors/packet-hsrp.c
   M /trunk/epan/dissectors/packet-http.c
   M /trunk/epan/dissectors/packet-http.h
   M /trunk/epan/dissectors/packet-hyperscsi.c
   M /trunk/epan/dissectors/packet-iapp.c
   M /trunk/epan/dissectors/packet-iax2.c
   M /trunk/epan/dissectors/packet-ib.c
   M /trunk/epan/dissectors/packet-icap.c
   M /trunk/epan/dissectors/packet-icep.c
   M /trunk/epan/dissectors/packet-icmpv6.c
   M /trunk/epan/dissectors/packet-icp.c
   M /trunk/epan/dissectors/packet-icq.c
   M /trunk/epan/dissectors/packet-idp.c
   M /trunk/epan/dissectors/packet-idp.h
   M /trunk/epan/dissectors/packet-ieee80211.c
   M /trunk/epan/dissectors/packet-ieee80211.h
   M /trunk/epan/dissectors/packet-ieee8023.c
   M /trunk/epan/dissectors/packet-ieee8023.h
   M /trunk/epan/dissectors/packet-ieee802a.c
   M /trunk/epan/dissectors/packet-ieee802a.h
   M /trunk/epan/dissectors/packet-ifcp.c
   M /trunk/epan/dissectors/packet-igap.c
   M /trunk/epan/dissectors/packet-igap.h
   M /trunk/epan/dissectors/packet-igmp.c
   M /trunk/epan/dissectors/packet-igmp.h
   M /trunk/epan/dissectors/packet-igrp.c
   M /trunk/epan/dissectors/packet-image-gif.c
   M /trunk/epan/dissectors/packet-image-jfif.c
   M /trunk/epan/dissectors/packet-imap.c
   M /trunk/epan/dissectors/packet-inap.c
   M /trunk/epan/dissectors/packet-inap.h
   M /trunk/epan/dissectors/packet-ip.c
   M /trunk/epan/dissectors/packet-ip.h
   M /trunk/epan/dissectors/packet-ipdc.c
   M /trunk/epan/dissectors/packet-ipdc.h
   M /trunk/epan/dissectors/packet-ipfc.c
   M /trunk/epan/dissectors/packet-ipfc.h
   M /trunk/epan/dissectors/packet-ipmi.c
   M /trunk/epan/dissectors/packet-ipp.c
   M /trunk/epan/dissectors/packet-ipsec.c
   M /trunk/epan/dissectors/packet-ipsec.h
   M /trunk/epan/dissectors/packet-ipv6.c
   M /trunk/epan/dissectors/packet-ipv6.h
   M /trunk/epan/dissectors/packet-ipvs-syncd.c
   M /trunk/epan/dissectors/packet-ipx.c
   M /trunk/epan/dissectors/packet-ipx.h
   M /trunk/epan/dissectors/packet-ipxwan.c
   M /trunk/epan/dissectors/packet-irc.c
   M /trunk/epan/dissectors/packet-isakmp.c
   M /trunk/epan/dissectors/packet-isakmp.h
   M /trunk/epan/dissectors/packet-iscsi.c
   M /trunk/epan/dissectors/packet-isdn.c
   M /trunk/epan/dissectors/packet-isis-clv.c
   M /trunk/epan/dissectors/packet-isis-clv.h
   M /trunk/epan/dissectors/packet-isis-hello.c
   M /trunk/epan/dissectors/packet-isis-hello.h
   M /trunk/epan/dissectors/packet-isis-lsp.c
   M /trunk/epan/dissectors/packet-isis-lsp.h
   M /trunk/epan/dissectors/packet-isis-snp.c
   M /trunk/epan/dissectors/packet-isis-snp.h
   M /trunk/epan/dissectors/packet-isis.c
   M /trunk/epan/dissectors/packet-isis.h
   M /trunk/epan/dissectors/packet-isl.c
   M /trunk/epan/dissectors/packet-isl.h
   M /trunk/epan/dissectors/packet-ismp.c
   M /trunk/epan/dissectors/packet-isns.c
   M /trunk/epan/dissectors/packet-isup.c
   M /trunk/epan/dissectors/packet-isup.h
   M /trunk/epan/dissectors/packet-isup_thin.c
   M /trunk/epan/dissectors/packet-iua.c
   M /trunk/epan/dissectors/packet-iuup.c
   M /trunk/epan/dissectors/packet-jabber.c
   M /trunk/epan/dissectors/packet-juniper.c
   M /trunk/epan/dissectors/packet-jxta.c
   M /trunk/epan/dissectors/packet-jxta.h
   M /trunk/epan/dissectors/packet-k12.c
   M /trunk/epan/dissectors/packet-kadm5.c
   M /trunk/epan/dissectors/packet-kerberos.c
   M /trunk/epan/dissectors/packet-kerberos.h
   M /trunk/epan/dissectors/packet-kerberos4.c
   M /trunk/epan/dissectors/packet-kink.c
   M /trunk/epan/dissectors/packet-klm.c
   M /trunk/epan/dissectors/packet-klm.h
   M /trunk/epan/dissectors/packet-kpasswd.c
   M /trunk/epan/dissectors/packet-l2tp.c
   M /trunk/epan/dissectors/packet-lapb.c
   M /trunk/epan/dissectors/packet-lapbether.c
   M /trunk/epan/dissectors/packet-lapd.c
   M /trunk/epan/dissectors/packet-laplink.c
   M /trunk/epan/dissectors/packet-ldap.c
   M /trunk/epan/dissectors/packet-ldap.h
   M /trunk/epan/dissectors/packet-ldp.c
   M /trunk/epan/dissectors/packet-ldp.h
   M /trunk/epan/dissectors/packet-lge_monitor.c
   M /trunk/epan/dissectors/packet-llc.c
   M /trunk/epan/dissectors/packet-llc.h
   M /trunk/epan/dissectors/packet-lldp.c
   M /trunk/epan/dissectors/packet-lmi.c
   M /trunk/epan/dissectors/packet-lmp.c
   M /trunk/epan/dissectors/packet-logotypecertextn.c
   M /trunk/epan/dissectors/packet-logotypecertextn.h
   M /trunk/epan/dissectors/packet-loop.c
   M /trunk/epan/dissectors/packet-lpd.c
   M /trunk/epan/dissectors/packet-lwapp.c
   M /trunk/epan/dissectors/packet-m2pa.c
   M /trunk/epan/dissectors/packet-m2tp.c
   M /trunk/epan/dissectors/packet-m2ua.c
   M /trunk/epan/dissectors/packet-m3ua.c
   M /trunk/epan/dissectors/packet-maccontrol.c
   M /trunk/epan/dissectors/packet-manolito.c
   M /trunk/epan/dissectors/packet-mbtcp.c
   M /trunk/epan/dissectors/packet-mdshdr.c
   M /trunk/epan/dissectors/packet-media.c
   M /trunk/epan/dissectors/packet-mip.c
   M /trunk/epan/dissectors/packet-mip6.c
   M /trunk/epan/dissectors/packet-mip6.h
   M /trunk/epan/dissectors/packet-mms.c
   M /trunk/epan/dissectors/packet-mms.h
   M /trunk/epan/dissectors/packet-mmse.c
   M /trunk/epan/dissectors/packet-mount.c
   M /trunk/epan/dissectors/packet-mpeg1.c
   M /trunk/epan/dissectors/packet-mpls-echo.c
   M /trunk/epan/dissectors/packet-mpls.c
   M /trunk/epan/dissectors/packet-mpls.h
   M /trunk/epan/dissectors/packet-mq-pcf.c
   M /trunk/epan/dissectors/packet-mq.c
   M /trunk/epan/dissectors/packet-mq.h
   M /trunk/epan/dissectors/packet-mrdisc.c
   M /trunk/epan/dissectors/packet-mrdisc.h
   M /trunk/epan/dissectors/packet-ms-mms.c
   M /trunk/epan/dissectors/packet-msdp.c
   M /trunk/epan/dissectors/packet-msn-messenger.c
   M /trunk/epan/dissectors/packet-msnip.c
   M /trunk/epan/dissectors/packet-msnip.h
   M /trunk/epan/dissectors/packet-msnlb.c
   M /trunk/epan/dissectors/packet-msproxy.c
   M /trunk/epan/dissectors/packet-msrp.c
   M /trunk/epan/dissectors/packet-mtp2.c
   M /trunk/epan/dissectors/packet-mtp3.c
   M /trunk/epan/dissectors/packet-mtp3.h
   M /trunk/epan/dissectors/packet-mtp3mg.c
   M /trunk/epan/dissectors/packet-multipart.c
   M /trunk/epan/dissectors/packet-mysql.c
   M /trunk/epan/dissectors/packet-nbap.c
   M /trunk/epan/dissectors/packet-nbap.h
   M /trunk/epan/dissectors/packet-nbipx.c
   M /trunk/epan/dissectors/packet-nbns.c
   M /trunk/epan/dissectors/packet-ncp-int.h
   M /trunk/epan/dissectors/packet-ncp-nmas.c
   M /trunk/epan/dissectors/packet-ncp-nmas.h
   M /trunk/epan/dissectors/packet-ncp-sss.c
   M /trunk/epan/dissectors/packet-ncp-sss.h
   M /trunk/epan/dissectors/packet-ncp.c
   M /trunk/epan/dissectors/packet-ncs.c
   M /trunk/epan/dissectors/packet-ndmp.c
   M /trunk/epan/dissectors/packet-ndps.c
   M /trunk/epan/dissectors/packet-ndps.h
   M /trunk/epan/dissectors/packet-netbios.c
   M /trunk/epan/dissectors/packet-netbios.h
   M /trunk/epan/dissectors/packet-netflow.c
   M /trunk/epan/dissectors/packet-netsync.c
   M /trunk/epan/dissectors/packet-nettl.c
   M /trunk/epan/dissectors/packet-nfs.c
   M /trunk/epan/dissectors/packet-nfsacl.c
   M /trunk/epan/dissectors/packet-nfsauth.c
   M /trunk/epan/dissectors/packet-nhrp.c
   M /trunk/epan/dissectors/packet-nhrp.h
   M /trunk/epan/dissectors/packet-nisplus.c
   M /trunk/epan/dissectors/packet-nisplus.h
   M /trunk/epan/dissectors/packet-nlm.c
   M /trunk/epan/dissectors/packet-nlsp.c
   M /trunk/epan/dissectors/packet-nntp.c
   M /trunk/epan/dissectors/packet-ns_cert_exts.c
   M /trunk/epan/dissectors/packet-nsip.c
   M /trunk/epan/dissectors/packet-nt-oui.c
   M /trunk/epan/dissectors/packet-nt-sonmp.c
   M /trunk/epan/dissectors/packet-nt-tpcp.c
   M /trunk/epan/dissectors/packet-ntlmssp.c
   M /trunk/epan/dissectors/packet-ntlmssp.h
   M /trunk/epan/dissectors/packet-ntp.c
   M /trunk/epan/dissectors/packet-ntp.h
   M /trunk/epan/dissectors/packet-null.c
   M /trunk/epan/dissectors/packet-null.h
   M /trunk/epan/dissectors/packet-ocsp.c
   M /trunk/epan/dissectors/packet-ocsp.h
   M /trunk/epan/dissectors/packet-oicq.c
   M /trunk/epan/dissectors/packet-olsr.c
   M /trunk/epan/dissectors/packet-osi-options.c
   M /trunk/epan/dissectors/packet-osi-options.h
   M /trunk/epan/dissectors/packet-osi.c
   M /trunk/epan/dissectors/packet-osi.h
   M /trunk/epan/dissectors/packet-ospf.c
   M /trunk/epan/dissectors/packet-p_mul.c
   M /trunk/epan/dissectors/packet-pagp.c
   M /trunk/epan/dissectors/packet-pcnfsd.c
   M /trunk/epan/dissectors/packet-pcnfsd.h
   M /trunk/epan/dissectors/packet-per.c
   M /trunk/epan/dissectors/packet-per.h
   M /trunk/epan/dissectors/packet-pgm.c
   M /trunk/epan/dissectors/packet-pgsql.c
   M /trunk/epan/dissectors/packet-pim.c
   M /trunk/epan/dissectors/packet-pim.h
   M /trunk/epan/dissectors/packet-pkcs1.c
   M /trunk/epan/dissectors/packet-pkcs1.h
   M /trunk/epan/dissectors/packet-pkinit.c
   M /trunk/epan/dissectors/packet-pkinit.h
   M /trunk/epan/dissectors/packet-pkix1explicit.c
   M /trunk/epan/dissectors/packet-pkix1explicit.h
   M /trunk/epan/dissectors/packet-pkix1implicit.c
   M /trunk/epan/dissectors/packet-pkix1implicit.h
   M /trunk/epan/dissectors/packet-pkixproxy.c
   M /trunk/epan/dissectors/packet-pkixproxy.h
   M /trunk/epan/dissectors/packet-pkixqualified.c
   M /trunk/epan/dissectors/packet-pkixqualified.h
   M /trunk/epan/dissectors/packet-pkixtsp.c
   M /trunk/epan/dissectors/packet-pkixtsp.h
   M /trunk/epan/dissectors/packet-pktc.c
   M /trunk/epan/dissectors/packet-pktc.h
   M /trunk/epan/dissectors/packet-pn-rt.c
   M /trunk/epan/dissectors/packet-pop.c
   M /trunk/epan/dissectors/packet-portmap.c
   M /trunk/epan/dissectors/packet-portmap.h
   M /trunk/epan/dissectors/packet-ppp.c
   M /trunk/epan/dissectors/packet-ppp.h
   M /trunk/epan/dissectors/packet-pppoe.c
   M /trunk/epan/dissectors/packet-pptp.c
   M /trunk/epan/dissectors/packet-pres.c
   M /trunk/epan/dissectors/packet-pres.h
   M /trunk/epan/dissectors/packet-prism.c
   M /trunk/epan/dissectors/packet-prism.h
   M /trunk/epan/dissectors/packet-ptp.c
   M /trunk/epan/dissectors/packet-pvfs2.c
   M /trunk/epan/dissectors/packet-q2931.c
   M /trunk/epan/dissectors/packet-q931.c
   M /trunk/epan/dissectors/packet-q931.h
   M /trunk/epan/dissectors/packet-q933.c
   M /trunk/epan/dissectors/packet-qllc.c
   M /trunk/epan/dissectors/packet-quake.c
   M /trunk/epan/dissectors/packet-quake2.c
   M /trunk/epan/dissectors/packet-quake3.c
   M /trunk/epan/dissectors/packet-quakeworld.c
   M /trunk/epan/dissectors/packet-radiotap.c
   M /trunk/epan/dissectors/packet-radiotap.h
   M /trunk/epan/dissectors/packet-radius.c
   M /trunk/epan/dissectors/packet-radius.h
   M /trunk/epan/dissectors/packet-radius_packetcable.c
   M /trunk/epan/dissectors/packet-ranap.c
   M /trunk/epan/dissectors/packet-ranap.h
   M /trunk/epan/dissectors/packet-raw.c
   M /trunk/epan/dissectors/packet-raw.h
   M /trunk/epan/dissectors/packet-rdt.c
   M /trunk/epan/dissectors/packet-rdt.h
   M /trunk/epan/dissectors/packet-redback.c
   M /trunk/epan/dissectors/packet-retix-bpdu.c
   M /trunk/epan/dissectors/packet-rip.c
   M /trunk/epan/dissectors/packet-ripng.c
   M /trunk/epan/dissectors/packet-ripng.h
   M /trunk/epan/dissectors/packet-rlogin.c
   M /trunk/epan/dissectors/packet-rmcp.c
   M /trunk/epan/dissectors/packet-rmi.c
   M /trunk/epan/dissectors/packet-rmi.h
   M /trunk/epan/dissectors/packet-rmp.c
   M /trunk/epan/dissectors/packet-rmt-alc.c
   M /trunk/epan/dissectors/packet-rmt-alc.h
   M /trunk/epan/dissectors/packet-rmt-common.c
   M /trunk/epan/dissectors/packet-rmt-common.h
   M /trunk/epan/dissectors/packet-rmt-fec.c
   M /trunk/epan/dissectors/packet-rmt-fec.h
   M /trunk/epan/dissectors/packet-rmt-lct.c
   M /trunk/epan/dissectors/packet-rmt-lct.h
   M /trunk/epan/dissectors/packet-rmt-norm.c
   M /trunk/epan/dissectors/packet-rmt-norm.h
   M /trunk/epan/dissectors/packet-rnsap.c
   M /trunk/epan/dissectors/packet-rnsap.h
   M /trunk/epan/dissectors/packet-ros.c
   M /trunk/epan/dissectors/packet-ros.h
   M /trunk/epan/dissectors/packet-rpc.c
   M /trunk/epan/dissectors/packet-rpc.h
   M /trunk/epan/dissectors/packet-rpl.c
   M /trunk/epan/dissectors/packet-rquota.c
   M /trunk/epan/dissectors/packet-rquota.h
   M /trunk/epan/dissectors/packet-rrlp.c
   M /trunk/epan/dissectors/packet-rrlp.h
   M /trunk/epan/dissectors/packet-rsh.c
   M /trunk/epan/dissectors/packet-rstat.c
   M /trunk/epan/dissectors/packet-rsvp.c
   M /trunk/epan/dissectors/packet-rsvp.h
   M /trunk/epan/dissectors/packet-rsync.c
   M /trunk/epan/dissectors/packet-rtcp.c
   M /trunk/epan/dissectors/packet-rtcp.h
   M /trunk/epan/dissectors/packet-rtp-events.c
   M /trunk/epan/dissectors/packet-rtp-events.h
   M /trunk/epan/dissectors/packet-rtp.c
   M /trunk/epan/dissectors/packet-rtp.h
   M /trunk/epan/dissectors/packet-rtps.c
   M /trunk/epan/dissectors/packet-rtse.c
   M /trunk/epan/dissectors/packet-rtse.h
   M /trunk/epan/dissectors/packet-rtsp.c
   M /trunk/epan/dissectors/packet-rwall.c
   M /trunk/epan/dissectors/packet-rwall.h
   M /trunk/epan/dissectors/packet-rx.c
   M /trunk/epan/dissectors/packet-rx.h
   M /trunk/epan/dissectors/packet-s4406.c
   M /trunk/epan/dissectors/packet-s4406.h
   M /trunk/epan/dissectors/packet-s5066.c
   M /trunk/epan/dissectors/packet-sadmind.c
   M /trunk/epan/dissectors/packet-sap.c
   M /trunk/epan/dissectors/packet-sccp.c
   M /trunk/epan/dissectors/packet-sccp.h
   M /trunk/epan/dissectors/packet-sccpmg.c
   M /trunk/epan/dissectors/packet-scsi.c
   M /trunk/epan/dissectors/packet-scsi.h
   M /trunk/epan/dissectors/packet-sctp.c
   M /trunk/epan/dissectors/packet-sctp.h
   M /trunk/epan/dissectors/packet-sdlc.c
   M /trunk/epan/dissectors/packet-sdp.c
   M /trunk/epan/dissectors/packet-sdp.h
   M /trunk/epan/dissectors/packet-sebek.c
   M /trunk/epan/dissectors/packet-ses.c
   M /trunk/epan/dissectors/packet-ses.h
   M /trunk/epan/dissectors/packet-sflow.c
   M /trunk/epan/dissectors/packet-sigcomp.c
   M /trunk/epan/dissectors/packet-sip.c
   M /trunk/epan/dissectors/packet-sip.h
   M /trunk/epan/dissectors/packet-sipfrag.c
   M /trunk/epan/dissectors/packet-skinny.c
   M /trunk/epan/dissectors/packet-slimp3.c
   M /trunk/epan/dissectors/packet-sll.c
   M /trunk/epan/dissectors/packet-sll.h
   M /trunk/epan/dissectors/packet-slowprotocols.c
   M /trunk/epan/dissectors/packet-slsk.c
   M /trunk/epan/dissectors/packet-smb-browse.c
   M /trunk/epan/dissectors/packet-smb-browse.h
   M /trunk/epan/dissectors/packet-smb-common.c
   M /trunk/epan/dissectors/packet-smb-common.h
   M /trunk/epan/dissectors/packet-smb-logon.c
   M /trunk/epan/dissectors/packet-smb-mailslot.c
   M /trunk/epan/dissectors/packet-smb-mailslot.h
   M /trunk/epan/dissectors/packet-smb-pipe.c
   M /trunk/epan/dissectors/packet-smb-pipe.h
   M /trunk/epan/dissectors/packet-smb-sidsnooping.c
   M /trunk/epan/dissectors/packet-smb-sidsnooping.h
   M /trunk/epan/dissectors/packet-smb.c
   M /trunk/epan/dissectors/packet-smb.h
   M /trunk/epan/dissectors/packet-smb2.c
   M /trunk/epan/dissectors/packet-smb2.h
   M /trunk/epan/dissectors/packet-smpp.c
   M /trunk/epan/dissectors/packet-smpp.h
   M /trunk/epan/dissectors/packet-smrse.c
   M /trunk/epan/dissectors/packet-smrse.h
   M /trunk/epan/dissectors/packet-smtp.c
   M /trunk/epan/dissectors/packet-sna.c
   M /trunk/epan/dissectors/packet-snaeth.c
   M /trunk/epan/dissectors/packet-sndcp.c
   M /trunk/epan/dissectors/packet-snmp.c
   M /trunk/epan/dissectors/packet-snmp.h
   M /trunk/epan/dissectors/packet-socks.c
   M /trunk/epan/dissectors/packet-spnego.c
   M /trunk/epan/dissectors/packet-spnego.h
   M /trunk/epan/dissectors/packet-spp.c
   M /trunk/epan/dissectors/packet-spray.c
   M /trunk/epan/dissectors/packet-spray.h
   M /trunk/epan/dissectors/packet-sqloracle.c
   M /trunk/epan/dissectors/packet-sqloracle.h
   M /trunk/epan/dissectors/packet-srvloc.c
   M /trunk/epan/dissectors/packet-sscf-nni.c
   M /trunk/epan/dissectors/packet-sscop.c
   M /trunk/epan/dissectors/packet-sscop.h
   M /trunk/epan/dissectors/packet-ssh.c
   M /trunk/epan/dissectors/packet-ssl.c
   M /trunk/epan/dissectors/packet-stat-notify.c
   M /trunk/epan/dissectors/packet-stat-notify.h
   M /trunk/epan/dissectors/packet-stat.c
   M /trunk/epan/dissectors/packet-stat.h
   M /trunk/epan/dissectors/packet-stun.c
   M /trunk/epan/dissectors/packet-sua.c
   M /trunk/epan/dissectors/packet-symantec.c
   M /trunk/epan/dissectors/packet-synergy.c
   M /trunk/epan/dissectors/packet-syslog.c
   M /trunk/epan/dissectors/packet-t38.c
   M /trunk/epan/dissectors/packet-t38.h
   M /trunk/epan/dissectors/packet-tacacs.c
   M /trunk/epan/dissectors/packet-tacacs.h
   M /trunk/epan/dissectors/packet-tali.c
   M /trunk/epan/dissectors/packet-tcap.c
   M /trunk/epan/dissectors/packet-tcap.h
   M /trunk/epan/dissectors/packet-tcp.c
   M /trunk/epan/dissectors/packet-tcp.h
   M /trunk/epan/dissectors/packet-tds.c
   M /trunk/epan/dissectors/packet-teimanagement.c
   M /trunk/epan/dissectors/packet-telnet.c
   M /trunk/epan/dissectors/packet-teredo.c
   M /trunk/epan/dissectors/packet-text-media.c
   M /trunk/epan/dissectors/packet-tftp.c
   M /trunk/epan/dissectors/packet-time.c
   M /trunk/epan/dissectors/packet-tipc.c
   M /trunk/epan/dissectors/packet-tns.c
   M /trunk/epan/dissectors/packet-tns.h
   M /trunk/epan/dissectors/packet-tpkt.c
   M /trunk/epan/dissectors/packet-tpkt.h
   M /trunk/epan/dissectors/packet-tr.c
   M /trunk/epan/dissectors/packet-tr.h
   M /trunk/epan/dissectors/packet-trmac.c
   M /trunk/epan/dissectors/packet-tsp.c
   M /trunk/epan/dissectors/packet-tuxedo.c
   M /trunk/epan/dissectors/packet-tzsp.c
   M /trunk/epan/dissectors/packet-ucp.c
   M /trunk/epan/dissectors/packet-udp.c
   M /trunk/epan/dissectors/packet-udp.h
   M /trunk/epan/dissectors/packet-ulp.c
   M /trunk/epan/dissectors/packet-ulp.h
   M /trunk/epan/dissectors/packet-uma.c
   M /trunk/epan/dissectors/packet-user_encap.c
   M /trunk/epan/dissectors/packet-v120.c
   M /trunk/epan/dissectors/packet-vines.c
   M /trunk/epan/dissectors/packet-vines.h
   M /trunk/epan/dissectors/packet-vj.c
   M /trunk/epan/dissectors/packet-vlan.c
   M /trunk/epan/dissectors/packet-vlan.h
   M /trunk/epan/dissectors/packet-vnc.c
   M /trunk/epan/dissectors/packet-vrrp.c
   M /trunk/epan/dissectors/packet-vtp.c
   M /trunk/epan/dissectors/packet-wap.c
   M /trunk/epan/dissectors/packet-wap.h
   M /trunk/epan/dissectors/packet-wbxml.c
   M /trunk/epan/dissectors/packet-wccp.c
   M /trunk/epan/dissectors/packet-wccp.h
   M /trunk/epan/dissectors/packet-wcp.c
   M /trunk/epan/dissectors/packet-wfleet-hdlc.c
   M /trunk/epan/dissectors/packet-who.c
   M /trunk/epan/dissectors/packet-windows-common.c
   M /trunk/epan/dissectors/packet-windows-common.h
   M /trunk/epan/dissectors/packet-winsrepl.c
   M /trunk/epan/dissectors/packet-wlancap.c
   M /trunk/epan/dissectors/packet-wlancap.h
   M /trunk/epan/dissectors/packet-wlancertextn.c
   M /trunk/epan/dissectors/packet-wlancertextn.h
   M /trunk/epan/dissectors/packet-wsp.c
   M /trunk/epan/dissectors/packet-wsp.h
   M /trunk/epan/dissectors/packet-wtls.c
   M /trunk/epan/dissectors/packet-wtls.h
   M /trunk/epan/dissectors/packet-wtp.c
   M /trunk/epan/dissectors/packet-wtp.h
   M /trunk/epan/dissectors/packet-x11-keysymdef.h
   M /trunk/epan/dissectors/packet-x11.c
   M /trunk/epan/dissectors/packet-x25.c
   M /trunk/epan/dissectors/packet-x29.c
   M /trunk/epan/dissectors/packet-x411.c
   M /trunk/epan/dissectors/packet-x411.h
   M /trunk/epan/dissectors/packet-x420.c
   M /trunk/epan/dissectors/packet-x420.h
   M /trunk/epan/dissectors/packet-x509af.c
   M /trunk/epan/dissectors/packet-x509af.h
   M /trunk/epan/dissectors/packet-x509ce.c
   M /trunk/epan/dissectors/packet-x509ce.h
   M /trunk/epan/dissectors/packet-x509if.c
   M /trunk/epan/dissectors/packet-x509if.h
   M /trunk/epan/dissectors/packet-x509sat.c
   M /trunk/epan/dissectors/packet-x509sat.h
   M /trunk/epan/dissectors/packet-xdmcp.c
   M /trunk/epan/dissectors/packet-xml.c
   M /trunk/epan/dissectors/packet-xot.c
   M /trunk/epan/dissectors/packet-xyplex.c
   M /trunk/epan/dissectors/packet-yhoo.c
   M /trunk/epan/dissectors/packet-ymsg.c
   M /trunk/epan/dissectors/packet-ypbind.c
   M /trunk/epan/dissectors/packet-ypbind.h
   M /trunk/epan/dissectors/packet-yppasswd.c
   M /trunk/epan/dissectors/packet-yppasswd.h
   M /trunk/epan/dissectors/packet-ypserv.c
   M /trunk/epan/dissectors/packet-ypserv.h
   M /trunk/epan/dissectors/packet-ypxfr.c
   M /trunk/epan/dissectors/packet-ypxfr.h
   M /trunk/epan/dissectors/packet-zebra.c
   M /trunk/epan/dissectors/rpc_defrag.h

change a whole bunch of ethereal into wireshark


------------------------------------------------------------------------
r18197 | sahlberg | 2006-05-21 00:12:17 -0500 (Sun, 21 May 2006) | 2 lines
Changed paths:
   M /trunk/Makefile.am
   M /trunk/Makefile.common
   M /trunk/alert_box.c
   M /trunk/alert_box.h
   M /trunk/asn1/MAP_Dialogue/packet-MAP-DialoguePDU-template.c
   M /trunk/asn1/MAP_Dialogue/packet-MAP-DialoguePDU-template.h
   M /trunk/asn1/acp133/packet-acp133-template.c
   M /trunk/asn1/acp133/packet-acp133-template.h
   M /trunk/asn1/acse/packet-acse-template.c
   M /trunk/asn1/acse/packet-acse-template.h
   M /trunk/asn1/ansi_map/packet-ansi_map-template.c
   M /trunk/asn1/ansi_map/packet-ansi_map-template.h
   M /trunk/asn1/camel/packet-camel-template.c
   M /trunk/asn1/camel/packet-camel-template.h
   M /trunk/asn1/cdt/packet-cdt-template.c
   M /trunk/asn1/cdt/packet-cdt-template.h
   M /trunk/asn1/cmip/packet-cmip-template.c
   M /trunk/asn1/cmip/packet-cmip-template.h
   M /trunk/asn1/cms/packet-cms-template.c
   M /trunk/asn1/cms/packet-cms-template.h
   M /trunk/asn1/dap/packet-dap-template.c
   M /trunk/asn1/dap/packet-dap-template.h
   M /trunk/asn1/disp/packet-disp-template.c
   M /trunk/asn1/disp/packet-disp-template.h
   M /trunk/asn1/dop/packet-dop-template.c
   M /trunk/asn1/dop/packet-dop-template.h
   M /trunk/asn1/dsp/packet-dsp-template.c
   M /trunk/asn1/dsp/packet-dsp-template.h
   M /trunk/asn1/ess/packet-ess-template.c
   M /trunk/asn1/ess/packet-ess-template.h
   M /trunk/asn1/ftam/packet-ftam-template.c
   M /trunk/asn1/ftam/packet-ftam-template.h
   M /trunk/asn1/ftbp/packet-ftbp-template.c
   M /trunk/asn1/ftbp/packet-ftbp-template.h
   M /trunk/asn1/gnm/packet-gnm-template.c
   M /trunk/asn1/gnm/packet-gnm-template.h
   M /trunk/asn1/gsm_ss/packet-gsm_ss-template.c
   M /trunk/asn1/gsm_ss/packet-gsm_ss-template.h
   M /trunk/asn1/gsmmap/packet-gsm_map-template.c
   M /trunk/asn1/gsmmap/packet-gsm_map-template.h
   M /trunk/asn1/h225/packet-h225-template.c
   M /trunk/asn1/h225/packet-h225-template.h
   M /trunk/asn1/h235/packet-h235-template.c
   M /trunk/asn1/h235/packet-h235-template.h
   M /trunk/asn1/h245/packet-h245-template.c
   M /trunk/asn1/h245/packet-h245-template.h
   M /trunk/asn1/h248/packet-h248-template.c
   M /trunk/asn1/h248/packet-h248-template.h
   M /trunk/asn1/h450/packet-h450-template.c
   M /trunk/asn1/h450/packet-h450-template.h
   M /trunk/asn1/inap/packet-inap-template.c
   M /trunk/asn1/inap/packet-inap-template.h
   M /trunk/asn1/ldap/packet-ldap-template.c
   M /trunk/asn1/ldap/packet-ldap-template.h
   M /trunk/asn1/logotype-cert-extn/packet-logotype-cert-extn-template.c
   M /trunk/asn1/logotype-cert-extn/packet-logotype-cert-extn-template.h
   M /trunk/asn1/mms/packet-mms-template.c
   M /trunk/asn1/mms/packet-mms-template.h
   M /trunk/asn1/nbap/packet-nbap-template.c
   M /trunk/asn1/nbap/packet-nbap-template.h
   M /trunk/asn1/ns-cert-exts/packet-ns_cert_exts-template.c
   M /trunk/asn1/ns-cert-exts/packet-ns_cert_exts-template.h
   M /trunk/asn1/ocsp/packet-ocsp-template.c
   M /trunk/asn1/ocsp/packet-ocsp-template.h
   M /trunk/asn1/pkcs1/packet-pkcs1-template.c
   M /trunk/asn1/pkcs1/packet-pkcs1-template.h
   M /trunk/asn1/pkinit/packet-pkinit-template.c
   M /trunk/asn1/pkinit/packet-pkinit-template.h
   M /trunk/asn1/pkix1explicit/packet-pkix1explicit-template.c
   M /trunk/asn1/pkix1explicit/packet-pkix1explicit-template.h
   M /trunk/asn1/pkix1implicit/packet-pkix1implicit-template.c
   M /trunk/asn1/pkix1implicit/packet-pkix1implicit-template.h
   M /trunk/asn1/pkixcmp/packet-cmp-template.c
   M /trunk/asn1/pkixcmp/packet-cmp-template.h
   M /trunk/asn1/pkixcrmf/packet-crmf-template.c
   M /trunk/asn1/pkixcrmf/packet-crmf-template.h
   M /trunk/asn1/pkixproxy/packet-pkixproxy-template.c
   M /trunk/asn1/pkixproxy/packet-pkixproxy-template.h
   M /trunk/asn1/pkixqualified/packet-pkixqualified-template.c
   M /trunk/asn1/pkixqualified/packet-pkixqualified-template.h
   M /trunk/asn1/pkixtsp/packet-pkixtsp-template.c
   M /trunk/asn1/pkixtsp/packet-pkixtsp-template.h
   M /trunk/asn1/pres/packet-pres-template.c
   M /trunk/asn1/pres/packet-pres-template.h
   M /trunk/asn1/ranap/packet-ranap-template.c
   M /trunk/asn1/ranap/packet-ranap-template.h
   M /trunk/asn1/rnsap/packet-rnsap-template.c
   M /trunk/asn1/rnsap/packet-rnsap-template.h
   M /trunk/asn1/ros/packet-ros-template.c
   M /trunk/asn1/ros/packet-ros-template.h
   M /trunk/asn1/rrlp/packet-rrlp-template.c
   M /trunk/asn1/rrlp/packet-rrlp-template.h
   M /trunk/asn1/rtse/packet-rtse-template.c
   M /trunk/asn1/rtse/packet-rtse-template.h
   M /trunk/asn1/s4406/packet-s4406-template.c
   M /trunk/asn1/s4406/packet-s4406-template.h
   M /trunk/asn1/smrse/packet-smrse-template.c
   M /trunk/asn1/smrse/packet-smrse-template.h
   M /trunk/asn1/snmp/packet-snmp-template.c
   M /trunk/asn1/snmp/packet-snmp-template.h
   M /trunk/asn1/spnego/packet-spnego-template.c
   M /trunk/asn1/spnego/packet-spnego-template.h
   M /trunk/asn1/tcap/packet-tcap-template.c
   M /trunk/asn1/tcap/packet-tcap-template.h
   M /trunk/asn1/ulp/packet-ulp-template.c
   M /trunk/asn1/ulp/packet-ulp-template.h
   M /trunk/asn1/wlancertextn/packet-wlancertextn-template.c
   M /trunk/asn1/wlancertextn/packet-wlancertextn-template.h
   M /trunk/asn1/x411/packet-x411-template.c
   M /trunk/asn1/x411/packet-x411-template.h
   M /trunk/asn1/x420/packet-x420-template.c
   M /trunk/asn1/x420/packet-x420-template.h
   M /trunk/asn1/x509af/packet-x509af-template.c
   M /trunk/asn1/x509af/packet-x509af-template.h
   M /trunk/asn1/x509ce/packet-x509ce-template.c
   M /trunk/asn1/x509ce/packet-x509ce-template.h
   M /trunk/asn1/x509if/packet-x509if-template.c
   M /trunk/asn1/x509if/packet-x509if-template.h
   M /trunk/asn1/x509sat/packet-x509sat-template.c
   M /trunk/asn1/x509sat/packet-x509sat-template.h
   M /trunk/capinfos.c
   M /trunk/capture-pcap-util-int.h
   M /trunk/capture-pcap-util-unix.c
   M /trunk/capture-pcap-util.c
   M /trunk/capture-pcap-util.h
   M /trunk/capture-wpcap.c
   M /trunk/capture-wpcap.h
   M /trunk/capture.c
   M /trunk/capture.h
   M /trunk/capture_errs.c
   M /trunk/capture_errs.h
   M /trunk/capture_info.c
   M /trunk/capture_info.h
   M /trunk/capture_opts.c
   M /trunk/capture_opts.h
   M /trunk/capture_stop_conditions.c
   M /trunk/capture_stop_conditions.h
   M /trunk/capture_sync.c
   M /trunk/capture_sync.h
   M /trunk/capture_ui_utils.c
   M /trunk/capture_ui_utils.h
   M /trunk/capture_wpcap_packet.c
   M /trunk/capture_wpcap_packet.h
   M /trunk/cfile.c
   M /trunk/cfile.h
   M /trunk/clopts_common.c
   M /trunk/clopts_common.h
   M /trunk/cmdarg_err.h
   M /trunk/color.h
   M /trunk/color_filters.c
   M /trunk/color_filters.h
   M /trunk/conditions.c
   M /trunk/conditions.h
   M /trunk/debian/copyright
   M /trunk/debian/patches/01_idl2deb.dpatch
   M /trunk/debian/patches/02_asn2deb.dpatch
   M /trunk/dftest.c
   M /trunk/disabled_protos.c
   M /trunk/disabled_protos.h
   M /trunk/doc/Makefile.am
   M /trunk/doc/Makefile.nmake
   M /trunk/doc/README.developer
   M /trunk/doc/README.stats_tree
   M /trunk/docbook/eug_src/EUG_chapter_customize.xml
   M /trunk/dumpcap.c
   M /trunk/epan/Makefile.am
   M /trunk/epan/Makefile.common
   M /trunk/epan/addr_and_mask.c
   M /trunk/epan/addr_and_mask.h
   M /trunk/epan/addr_resolv.c
   M /trunk/epan/addr_resolv.h
   M /trunk/epan/address.h
   M /trunk/epan/adler32.c
   M /trunk/epan/adler32.h
   M /trunk/epan/afn.c
   M /trunk/epan/afn.h
   M /trunk/epan/aftypes.h
   M /trunk/epan/arcnet_pids.h
   M /trunk/epan/arptypes.h
   M /trunk/epan/asn1.c
   M /trunk/epan/asn1.h
   M /trunk/epan/base64.c
   M /trunk/epan/base64.h
   M /trunk/epan/bitswap.c
   M /trunk/epan/bitswap.h
   M /trunk/epan/bridged_pids.h
   M /trunk/epan/charsets.c
   M /trunk/epan/charsets.h
   M /trunk/epan/chdlctypes.h
   M /trunk/epan/circuit.c
   M /trunk/epan/circuit.h
   M /trunk/epan/column-utils.c
   M /trunk/epan/column-utils.h
   M /trunk/epan/column.c
   M /trunk/epan/column.h
   M /trunk/epan/column_info.h
   M /trunk/epan/conversation.c
   M /trunk/epan/conversation.h
   M /trunk/epan/crc16.c
   M /trunk/epan/crc16.h
   M /trunk/epan/crc32.c
   M /trunk/epan/crc32.h
   M /trunk/epan/dfilter/Makefile.am
   M /trunk/epan/dfilter/dfilter-int.h
   M /trunk/epan/dfilter/dfilter.c
   M /trunk/epan/dfilter/dfilter.h
   M /trunk/epan/dfilter/dfunctions.c
   M /trunk/epan/dfilter/dfunctions.h
   M /trunk/epan/dfilter/dfvm.c
   M /trunk/epan/dfilter/dfvm.h
   M /trunk/epan/dfilter/drange.c
   M /trunk/epan/dfilter/drange.h
   M /trunk/epan/dfilter/gencode.c
   M /trunk/epan/dfilter/scanner.l
   M /trunk/epan/dfilter/semcheck.c
   M /trunk/epan/dfilter/semcheck.h
   M /trunk/epan/dfilter/sttype-function.c
   M /trunk/epan/dfilter/sttype-function.h
   M /trunk/epan/dfilter/sttype-integer.c
   M /trunk/epan/dfilter/sttype-pointer.c
   M /trunk/epan/dfilter/sttype-range.c
   M /trunk/epan/dfilter/sttype-range.h
   M /trunk/epan/dfilter/sttype-string.c
   M /trunk/epan/dfilter/sttype-test.c
   M /trunk/epan/dfilter/sttype-test.h
   M /trunk/epan/dfilter/syntax-tree.c
   M /trunk/epan/dfilter/syntax-tree.h
   M /trunk/epan/dissectors/Makefile.am
   M /trunk/epan/dissectors/Makefile.common
   M /trunk/epan/dissectors/dcerpc/budb/template.c
   M /trunk/epan/dissectors/dcerpc/budb/template.h
   M /trunk/epan/dissectors/dcerpc/butc/template.c
   M /trunk/epan/dissectors/dcerpc/butc/template.h
   M /trunk/epan/dissectors/dcerpc/drsuapi/template.c
   M /trunk/epan/dissectors/dcerpc/drsuapi/template.h
   M /trunk/epan/dissectors/dcerpc/efs/template.c
   M /trunk/epan/dissectors/dcerpc/efs/template.h
   M /trunk/epan/dissectors/packet-ncp2222.inc
   M /trunk/epan/dissectors/process-x11-fields.pl
   M /trunk/epan/dissectors/x11-fields
   M /trunk/epan/dtd.h
   M /trunk/epan/dtd_grammar.lemon
   M /trunk/epan/dtd_parse.h
   M /trunk/epan/dtd_parse.l
   M /trunk/epan/dtd_preparse.l
   M /trunk/epan/emem.c
   M /trunk/epan/emem.h
   M /trunk/epan/epan.c
   M /trunk/epan/epan.h
   M /trunk/epan/epan_dissect.h
   M /trunk/epan/etypes.h
   M /trunk/epan/ex-opt.c
   M /trunk/epan/ex-opt.h
   M /trunk/epan/expert.c
   M /trunk/epan/expert.h
   M /trunk/epan/filesystem.c
   M /trunk/epan/filesystem.h
   M /trunk/epan/follow.c
   M /trunk/epan/follow.h
   M /trunk/epan/frame_data.c
   M /trunk/epan/frame_data.h
   M /trunk/epan/ftypes/Makefile.am
   M /trunk/epan/ftypes/ftype-bytes.c
   M /trunk/epan/ftypes/ftype-double.c
   M /trunk/epan/ftypes/ftype-guid.c
   M /trunk/epan/ftypes/ftype-integer.c
   M /trunk/epan/ftypes/ftype-ipv4.c
   M /trunk/epan/ftypes/ftype-none.c
   M /trunk/epan/ftypes/ftype-pcre.c
   M /trunk/epan/ftypes/ftype-string.c
   M /trunk/epan/ftypes/ftype-time.c
   M /trunk/epan/ftypes/ftype-tvbuff.c
   M /trunk/epan/ftypes/ftypes-int.h
   M /trunk/epan/ftypes/ftypes.c
   M /trunk/epan/ftypes/ftypes.h
   M /trunk/epan/funnel.c
   M /trunk/epan/funnel.h
   M /trunk/epan/gnuc_format_check.h
   M /trunk/epan/greproto.h
   M /trunk/epan/guid-utils.h
   M /trunk/epan/h225-persistentdata.c
   M /trunk/epan/h225-persistentdata.h
   M /trunk/epan/iax2_codec_type.h
   M /trunk/epan/inet_aton.h
   M /trunk/epan/inet_v6defs.h
   M /trunk/epan/ip_opts.h
   M /trunk/epan/ipproto.c
   M /trunk/epan/ipproto.h
   M /trunk/epan/ipv4.c
   M /trunk/epan/ipv4.h
   M /trunk/epan/ipv6-utils.h
   M /trunk/epan/lapd_sapi.h
   M /trunk/epan/llcsaps.h
   M /trunk/epan/make-sminmpec.pl
   M /trunk/epan/nlpid.h
   M /trunk/epan/nstime.c
   M /trunk/epan/nstime.h
   M /trunk/epan/oid_resolv.c
   M /trunk/epan/oid_resolv.h
   M /trunk/epan/osi-utils.c
   M /trunk/epan/osi-utils.h
   M /trunk/epan/oui.h
   M /trunk/epan/packet.c
   M /trunk/epan/packet.h
   M /trunk/epan/packet_info.h
   M /trunk/epan/pint.h
   M /trunk/epan/plugins.c
   M /trunk/epan/plugins.h
   M /trunk/epan/ppptypes.h
   M /trunk/epan/prefs-int.h
   M /trunk/epan/prefs.c
   M /trunk/epan/prefs.h
   M /trunk/epan/privileges.c
   M /trunk/epan/privileges.h
   M /trunk/epan/proto.c
   M /trunk/epan/proto.h
   M /trunk/epan/ptvcursor.h
   M /trunk/epan/radius_dict.l
   M /trunk/epan/range.c
   M /trunk/epan/range.h
   M /trunk/epan/reassemble.c
   M /trunk/epan/reassemble.h
   M /trunk/epan/report_err.h
   M /trunk/epan/req_resp_hdrs.c
   M /trunk/epan/req_resp_hdrs.h
   M /trunk/epan/rtp_pt.h
   M /trunk/epan/sctpppids.h
   M /trunk/epan/sigcomp-udvm.c
   M /trunk/epan/sigcomp-udvm.h
   M /trunk/epan/sigcomp_state_hdlr.c
   M /trunk/epan/sigcomp_state_hdlr.h
   M /trunk/epan/slab.h
   M /trunk/epan/sminmpec.h
   M /trunk/epan/sna-utils.c
   M /trunk/epan/stat_cmd_args.c
   M /trunk/epan/stat_cmd_args.h
   M /trunk/epan/stats_tree.c
   M /trunk/epan/stats_tree.h
   M /trunk/epan/stats_tree_priv.h
   M /trunk/epan/stream.c
   M /trunk/epan/stream.h
   M /trunk/epan/strutil.c
   M /trunk/epan/strutil.h
   M /trunk/epan/t35.c
   M /trunk/epan/t35.h
   M /trunk/epan/tap.c
   M /trunk/epan/tap.h
   M /trunk/epan/timestamp.c
   M /trunk/epan/timestamp.h
   M /trunk/epan/to_str.c
   M /trunk/epan/to_str.h
   M /trunk/epan/tpg.c
   M /trunk/epan/tpg.h
   M /trunk/epan/tvbparse.c
   M /trunk/epan/tvbparse.h
   M /trunk/epan/tvbuff.c
   M /trunk/epan/tvbuff.h
   M /trunk/epan/value_string.c
   M /trunk/epan/value_string.h
   M /trunk/epan/x264_prt_id.h
   M /trunk/epan/xdlc.c
   M /trunk/epan/xdlc.h
   M /trunk/epan/xmlstub.c
   M /trunk/ethereal_gen.py
   M /trunk/file.c
   M /trunk/file.h
   M /trunk/fileset.c
   M /trunk/fileset.h
   M /trunk/filters.c
   M /trunk/filters.h
   M /trunk/g711.h
   M /trunk/globals.h
   M /trunk/gtk/Makefile.am
   M /trunk/gtk/Makefile.common
   M /trunk/gtk/about_dlg.c
   M /trunk/gtk/about_dlg.h
   M /trunk/gtk/afp_stat.c
   M /trunk/gtk/ansi_a_stat.c
   M /trunk/gtk/ansi_map_stat.c
   M /trunk/gtk/bootp_stat.c
   M /trunk/gtk/capture_dlg.c
   M /trunk/gtk/capture_dlg.h
   M /trunk/gtk/capture_file_dlg.c
   M /trunk/gtk/capture_file_dlg.h
   M /trunk/gtk/capture_if_details_dlg.c
   M /trunk/gtk/capture_if_details_dlg.h
   M /trunk/gtk/capture_if_dlg.c
   M /trunk/gtk/capture_info_dlg.c
   M /trunk/gtk/capture_prefs.c
   M /trunk/gtk/capture_prefs.h
   M /trunk/gtk/cfilter_combo_utils.c
   M /trunk/gtk/cfilter_combo_utils.h
   M /trunk/gtk/color_dlg.c
   M /trunk/gtk/color_dlg.h
   M /trunk/gtk/color_utils.c
   M /trunk/gtk/colors.c
   M /trunk/gtk/colors.h
   M /trunk/gtk/column_prefs.c
   M /trunk/gtk/column_prefs.h
   M /trunk/gtk/compat_macros.h
   M /trunk/gtk/conversations_eth.c
   M /trunk/gtk/conversations_fc.c
   M /trunk/gtk/conversations_fddi.c
   M /trunk/gtk/conversations_ip.c
   M /trunk/gtk/conversations_ipx.c
   M /trunk/gtk/conversations_jxta.c
   M /trunk/gtk/conversations_ncp.c
   M /trunk/gtk/conversations_rsvp.c
   M /trunk/gtk/conversations_sctp.c
   M /trunk/gtk/conversations_table.c
   M /trunk/gtk/conversations_table.h
   M /trunk/gtk/conversations_tcpip.c
   M /trunk/gtk/conversations_tr.c
   M /trunk/gtk/conversations_udpip.c
   M /trunk/gtk/conversations_wlan.c
   M /trunk/gtk/dcerpc_stat.c
   M /trunk/gtk/dfilter_expr_dlg.c
   M /trunk/gtk/dfilter_expr_dlg.h
   M /trunk/gtk/dlg_utils.c
   M /trunk/gtk/dlg_utils.h
   M /trunk/gtk/drag_and_drop.c
   M /trunk/gtk/expert_comp_dlg.c
   M /trunk/gtk/expert_comp_table.c
   M /trunk/gtk/expert_comp_table.h
   M /trunk/gtk/expert_dlg.c
   M /trunk/gtk/fc_stat.c
   M /trunk/gtk/file_dlg.c
   M /trunk/gtk/file_dlg.h
   M /trunk/gtk/fileset_dlg.c
   M /trunk/gtk/fileset_dlg.h
   M /trunk/gtk/filter_dlg.c
   M /trunk/gtk/filter_dlg.h
   M /trunk/gtk/find_dlg.c
   M /trunk/gtk/find_dlg.h
   M /trunk/gtk/flow_graph.c
   M /trunk/gtk/follow_dlg.c
   M /trunk/gtk/follow_dlg.h
   M /trunk/gtk/font_utils.c
   M /trunk/gtk/font_utils.h
   M /trunk/gtk/funnel_stat.c
   M /trunk/gtk/goto_dlg.c
   M /trunk/gtk/goto_dlg.h
   M /trunk/gtk/graph_analysis.c
   M /trunk/gtk/graph_analysis.h
   M /trunk/gtk/gsm_a_stat.c
   M /trunk/gtk/gsm_map_stat.c
   M /trunk/gtk/gsm_map_stat.h
   M /trunk/gtk/gsm_map_summary.c
   M /trunk/gtk/gtkglobals.h
   M /trunk/gtk/gui_prefs.c
   M /trunk/gtk/gui_prefs.h
   M /trunk/gtk/gui_stat_menu.h
   M /trunk/gtk/gui_stat_util.c
   M /trunk/gtk/gui_stat_util.h
   M /trunk/gtk/gui_utils.c
   M /trunk/gtk/gui_utils.h
   M /trunk/gtk/h225_counter.c
   M /trunk/gtk/h225_ras_srt.c
   M /trunk/gtk/help_dlg.c
   M /trunk/gtk/help_dlg.h
   M /trunk/gtk/hostlist_eth.c
   M /trunk/gtk/hostlist_fc.c
   M /trunk/gtk/hostlist_fddi.c
   M /trunk/gtk/hostlist_ip.c
   M /trunk/gtk/hostlist_ipx.c
   M /trunk/gtk/hostlist_jxta.c
   M /trunk/gtk/hostlist_ncp.c
   M /trunk/gtk/hostlist_rsvp.c
   M /trunk/gtk/hostlist_table.c
   M /trunk/gtk/hostlist_table.h
   M /trunk/gtk/hostlist_tcpip.c
   M /trunk/gtk/hostlist_tr.c
   M /trunk/gtk/hostlist_udpip.c
   M /trunk/gtk/hostlist_wlan.c
   M /trunk/gtk/io_stat.c
   M /trunk/gtk/isprint.h
   M /trunk/gtk/keys.h
   M /trunk/gtk/layout_prefs.c
   M /trunk/gtk/layout_prefs.h
   M /trunk/gtk/ldap_stat.c
   M /trunk/gtk/main.c
   M /trunk/gtk/main.h
   M /trunk/gtk/mcast_stream.c
   M /trunk/gtk/mcast_stream.h
   M /trunk/gtk/mcast_stream_dlg.c
   M /trunk/gtk/mcast_stream_dlg.h
   M /trunk/gtk/menu.c
   M /trunk/gtk/menu.h
   M /trunk/gtk/mgcp_stat.c
   M /trunk/gtk/mtp3_stat.c
   M /trunk/gtk/mtp3_stat.h
   M /trunk/gtk/mtp3_summary.c
   M /trunk/gtk/nameres_prefs.c
   M /trunk/gtk/nameres_prefs.h
   M /trunk/gtk/ncp_stat.c
   M /trunk/gtk/packet_history.c
   M /trunk/gtk/packet_history.h
   M /trunk/gtk/packet_list.c
   M /trunk/gtk/packet_list.h
   M /trunk/gtk/packet_win.c
   M /trunk/gtk/packet_win.h
   M /trunk/gtk/plugins_dlg.c
   M /trunk/gtk/plugins_dlg.h
   M /trunk/gtk/prefs_dlg.c
   M /trunk/gtk/prefs_dlg.h
   M /trunk/gtk/print_dlg.c
   M /trunk/gtk/print_mswin.c
   M /trunk/gtk/print_mswin.h
   M /trunk/gtk/print_prefs.c
   M /trunk/gtk/print_prefs.h
   M /trunk/gtk/progress_dlg.c
   M /trunk/gtk/proto_dlg.c
   M /trunk/gtk/proto_dlg.h
   M /trunk/gtk/proto_draw.c
   M /trunk/gtk/proto_draw.h
   M /trunk/gtk/proto_hier_stats_dlg.c
   M /trunk/gtk/proto_hier_stats_dlg.h
   M /trunk/gtk/range_utils.c
   M /trunk/gtk/range_utils.h
   M /trunk/gtk/recent.c
   M /trunk/gtk/recent.h
   M /trunk/gtk/rpc_progs.c
   M /trunk/gtk/rpc_stat.c
   M /trunk/gtk/rtp_analysis.c
   M /trunk/gtk/rtp_analysis.h
   M /trunk/gtk/rtp_stream.c
   M /trunk/gtk/rtp_stream.h
   M /trunk/gtk/rtp_stream_dlg.c
   M /trunk/gtk/rtp_stream_dlg.h
   M /trunk/gtk/sat.h
   M /trunk/gtk/scsi_stat.c
   M /trunk/gtk/sctp_assoc_analyse.c
   M /trunk/gtk/sctp_byte_graph_dlg.c
   M /trunk/gtk/sctp_chunk_stat.c
   M /trunk/gtk/sctp_chunk_stat_dlg.c
   M /trunk/gtk/sctp_error_dlg.c
   M /trunk/gtk/sctp_graph_dlg.c
   M /trunk/gtk/sctp_stat.c
   M /trunk/gtk/sctp_stat.h
   M /trunk/gtk/sctp_stat_dlg.c
   M /trunk/gtk/service_response_time_table.c
   M /trunk/gtk/service_response_time_table.h
   M /trunk/gtk/simple_dialog.c
   M /trunk/gtk/sip_stat.c
   M /trunk/gtk/smb2_stat.c
   M /trunk/gtk/smb_stat.c
   M /trunk/gtk/ssl-dlg.h
   M /trunk/gtk/stats_tree_stat.c
   M /trunk/gtk/stream_prefs.c
   M /trunk/gtk/stream_prefs.h
   M /trunk/gtk/summary_dlg.c
   M /trunk/gtk/summary_dlg.h
   M /trunk/gtk/supported_protos_dlg.c
   M /trunk/gtk/supported_protos_dlg.h
   M /trunk/gtk/t38_analysis.c
   M /trunk/gtk/tap_dfilter_dlg.c
   M /trunk/gtk/tcp_graph.c
   M /trunk/gtk/text_page.c
   M /trunk/gtk/text_page.h
   M /trunk/gtk/toolbar.c
   M /trunk/gtk/toolbar.h
   M /trunk/gtk/voip_calls.c
   M /trunk/gtk/voip_calls.h
   M /trunk/gtk/voip_calls_dlg.c
   M /trunk/gtk/voip_calls_dlg.h
   M /trunk/gtk/webbrowser.h
   M /trunk/gtk/win32-file-dlg.c
   M /trunk/gtk/wsp_stat.c
   M /trunk/help/Makefile.am
   M /trunk/image/capinfos.rc.in
   M /trunk/image/dumpcap.rc.in
   M /trunk/image/editcap.rc.in
   M /trunk/image/ethereal.rc.in
   M /trunk/image/libethereal.rc.in
   M /trunk/image/mergecap.rc.in
   M /trunk/image/tethereal.rc.in
   M /trunk/image/wiretap.rc.in
   M /trunk/isprint.h
   M /trunk/log.h
   M /trunk/main_window.h
   M /trunk/make-version.pl
   M /trunk/manuf
   M /trunk/manuf.tmpl
   M /trunk/menu.h
   M /trunk/merge.h
   M /trunk/packaging/svr4/pkginfo.in
   M /trunk/packet-range.c
   M /trunk/packet-range.h
   M /trunk/pcapio.c
   M /trunk/pcapio.h
   M /trunk/plugins/Makefile.am
   M /trunk/plugins/acn/Makefile.am
   M /trunk/plugins/acn/Makefile.common
   M /trunk/plugins/acn/packet-acn.c
   M /trunk/plugins/agentx/Makefile.am
   M /trunk/plugins/agentx/Makefile.common
   M /trunk/plugins/agentx/packet-agentx.c
   M /trunk/plugins/artnet/Makefile.am
   M /trunk/plugins/artnet/Makefile.common
   M /trunk/plugins/artnet/packet-artnet.c
   M /trunk/plugins/asn1/Makefile.am
   M /trunk/plugins/asn1/Makefile.common
   M /trunk/plugins/asn1/packet-asn1.c
   M /trunk/plugins/ciscosm/Makefile.am
   M /trunk/plugins/ciscosm/Makefile.common
   M /trunk/plugins/ciscosm/packet-sm.c
   M /trunk/plugins/docsis/Makefile.am
   M /trunk/plugins/docsis/Makefile.common
   M /trunk/plugins/docsis/packet-bpkmattr.c
   M /trunk/plugins/docsis/packet-bpkmreq.c
   M /trunk/plugins/docsis/packet-bpkmrsp.c
   M /trunk/plugins/docsis/packet-dccack.c
   M /trunk/plugins/docsis/packet-dccreq.c
   M /trunk/plugins/docsis/packet-dccrsp.c
   M /trunk/plugins/docsis/packet-dcd.c
   M /trunk/plugins/docsis/packet-docsis.c
   M /trunk/plugins/docsis/packet-docsis.h
   M /trunk/plugins/docsis/packet-dsaack.c
   M /trunk/plugins/docsis/packet-dsareq.c
   M /trunk/plugins/docsis/packet-dsarsp.c
   M /trunk/plugins/docsis/packet-dscack.c
   M /trunk/plugins/docsis/packet-dscreq.c
   M /trunk/plugins/docsis/packet-dscrsp.c
   M /trunk/plugins/docsis/packet-dsdreq.c
   M /trunk/plugins/docsis/packet-dsdrsp.c
   M /trunk/plugins/docsis/packet-intrngreq.c
   M /trunk/plugins/docsis/packet-macmgmt.c
   M /trunk/plugins/docsis/packet-map.c
   M /trunk/plugins/docsis/packet-regack.c
   M /trunk/plugins/docsis/packet-regreq.c
   M /trunk/plugins/docsis/packet-regrsp.c
   M /trunk/plugins/docsis/packet-rngreq.c
   M /trunk/plugins/docsis/packet-rngrsp.c
   M /trunk/plugins/docsis/packet-tlv.c
   M /trunk/plugins/docsis/packet-tlv.h
   M /trunk/plugins/docsis/packet-type29ucd.c
   M /trunk/plugins/docsis/packet-uccreq.c
   M /trunk/plugins/docsis/packet-uccrsp.c
   M /trunk/plugins/docsis/packet-ucd.c
   M /trunk/plugins/docsis/packet-vendor.c
   M /trunk/plugins/enttec/Makefile.am
   M /trunk/plugins/enttec/Makefile.common
   M /trunk/plugins/enttec/packet-enttec.c
   M /trunk/plugins/giop/Makefile.am
   M /trunk/plugins/giop/packet-coseventcomm.c
   M /trunk/plugins/giop/packet-cosnaming.c
   M /trunk/plugins/giop/packet-parlay.c
   M /trunk/plugins/giop/packet-tango.c
   M /trunk/plugins/gryphon/Makefile.am
   M /trunk/plugins/gryphon/Makefile.common
   M /trunk/plugins/gryphon/packet-gryphon.c
   M /trunk/plugins/gryphon/packet-gryphon.h
   M /trunk/plugins/h223/Makefile.am
   M /trunk/plugins/h223/Makefile.common
   M /trunk/plugins/h223/golay.c
   M /trunk/plugins/h223/golay.h
   M /trunk/plugins/h223/packet-h223.c
   M /trunk/plugins/h223/packet-h223.h
   M /trunk/plugins/h223/packet-srp.c
   M /trunk/plugins/h223/packet-srp.h
   M /trunk/plugins/irda/Makefile.am
   M /trunk/plugins/irda/Makefile.common
   M /trunk/plugins/irda/irda-appl.h
   M /trunk/plugins/irda/packet-ircomm.c
   M /trunk/plugins/irda/packet-irda.c
   M /trunk/plugins/lua/Makefile.am
   M /trunk/plugins/lua/elua.c
   M /trunk/plugins/lua/elua.h
   M /trunk/plugins/lua/elua_dumper.c
   M /trunk/plugins/lua/elua_field.c
   M /trunk/plugins/lua/elua_gui.c
   M /trunk/plugins/lua/elua_makedoc.pl
   M /trunk/plugins/lua/elua_makereg.pl
   M /trunk/plugins/lua/elua_pinfo.c
   M /trunk/plugins/lua/elua_plugin.c
   M /trunk/plugins/lua/elua_proto.c
   M /trunk/plugins/lua/elua_tap.c
   M /trunk/plugins/lua/elua_tree.c
   M /trunk/plugins/lua/elua_tvb.c
   M /trunk/plugins/lua/elua_util.c
   M /trunk/plugins/lua/make-init-lua.pl
   M /trunk/plugins/lua/template-init.lua
   M /trunk/plugins/lwres/Makefile.am
   M /trunk/plugins/lwres/Makefile.common
   M /trunk/plugins/lwres/packet-lwres.c
   M /trunk/plugins/mate/Makefile.am
   M /trunk/plugins/mate/mate.h
   M /trunk/plugins/mate/mate_grammar.lemon
   M /trunk/plugins/mate/mate_parser.l
   M /trunk/plugins/mate/mate_plugin.c
   M /trunk/plugins/mate/mate_runtime.c
   M /trunk/plugins/mate/mate_setup.c
   M /trunk/plugins/mate/mate_util.c
   M /trunk/plugins/mate/mate_util.h
   M /trunk/plugins/mate/packet-mate.c
   M /trunk/plugins/megaco/Makefile.am
   M /trunk/plugins/megaco/Makefile.common
   M /trunk/plugins/megaco/packet-megaco.c
   M /trunk/plugins/mgcp/Makefile.am
   M /trunk/plugins/mgcp/Makefile.common
   M /trunk/plugins/mgcp/packet-mgcp.c
   M /trunk/plugins/mgcp/packet-mgcp.h
   M /trunk/plugins/opsi/Makefile.am
   M /trunk/plugins/opsi/Makefile.common
   M /trunk/plugins/opsi/packet-opsi.c
   M /trunk/plugins/opsi/packet-opsi.h
   M /trunk/plugins/pcli/Makefile.am
   M /trunk/plugins/pcli/Makefile.common
   M /trunk/plugins/pcli/packet-pcli.c
   M /trunk/plugins/profinet/Makefile.am
   M /trunk/plugins/profinet/Makefile.common
   M /trunk/plugins/profinet/packet-dcerpc-pn-io.c
   M /trunk/plugins/profinet/packet-pn-dcp.c
   M /trunk/plugins/profinet/packet-pn-ptcp.c
   M /trunk/plugins/rdm/Makefile.am
   M /trunk/plugins/rdm/Makefile.common
   M /trunk/plugins/rdm/packet-rdm.c
   M /trunk/plugins/rlm/Makefile.am
   M /trunk/plugins/rlm/Makefile.common
   M /trunk/plugins/rlm/packet-rlm.c
   M /trunk/plugins/rtnet/Makefile.am
   M /trunk/plugins/rtnet/Makefile.common
   M /trunk/plugins/rtnet/packet-rtnet.c
   M /trunk/plugins/rudp/Makefile.am
   M /trunk/plugins/rudp/Makefile.common
   M /trunk/plugins/rudp/packet-rudp.c
   M /trunk/plugins/stats_tree/Makefile.am
   M /trunk/plugins/stats_tree/pinfo_stats_tree.c
   M /trunk/plugins/stats_tree/pinfo_stats_tree.h
   M /trunk/plugins/stats_tree/stats_tree_plugin.c
   M /trunk/plugins/tpg/Makefile.am
   M /trunk/plugins/tpg/http.tpg
   M /trunk/plugins/v5ua/Makefile.am
   M /trunk/plugins/v5ua/Makefile.common
   M /trunk/plugins/v5ua/packet-v5ua.c
   M /trunk/print.c
   M /trunk/print.h
   M /trunk/print.ps
   M /trunk/progress_dlg.h
   M /trunk/proto_hier_stats.c
   M /trunk/proto_hier_stats.h
   M /trunk/ps.h
   M /trunk/rdps.c
   M /trunk/register.h
   M /trunk/ringbuffer.c
   M /trunk/ringbuffer.h
   M /trunk/simple_dialog.h
   M /trunk/stat_menu.h
   M /trunk/statusbar.h
   M /trunk/strerror.c
   M /trunk/strerror.h
   M /trunk/strptime.h
   M /trunk/summary.c
   M /trunk/summary.h
   M /trunk/sync_pipe.h
   M /trunk/sync_pipe_write.c
   M /trunk/tap-afpstat.c
   M /trunk/tap-ansi_astat.c
   M /trunk/tap-bootpstat.c
   M /trunk/tap-dcerpcstat.c
   M /trunk/tap-gsm_astat.c
   M /trunk/tap-h225counter.c
   M /trunk/tap-h225rassrt.c
   M /trunk/tap-httpstat.c
   M /trunk/tap-iostat.c
   M /trunk/tap-iousers.c
   M /trunk/tap-mgcpstat.c
   M /trunk/tap-protocolinfo.c
   M /trunk/tap-protohierstat.c
   M /trunk/tap-rpcprogs.c
   M /trunk/tap-rpcstat.c
   M /trunk/tap-sctpchunkstat.c
   M /trunk/tap-sipstat.c
   M /trunk/tap-smbsids.c
   M /trunk/tap-smbstat.c
   M /trunk/tap-stats_tree.c
   M /trunk/tap-wspstat.c
   M /trunk/tap_dfilter_dlg.h
   M /trunk/tempfile.c
   M /trunk/tempfile.h
   M /trunk/test/config.sh
   M /trunk/test/suite-capture.sh
   M /trunk/test/suite-clopts.sh
   M /trunk/test/suite-io.sh
   M /trunk/test/test-backend.sh
   M /trunk/test/test.sh
   M /trunk/tethereal.c
   M /trunk/text2pcap-scanner.l
   M /trunk/text2pcap.c
   M /trunk/text2pcap.h
   M /trunk/timestats.c
   M /trunk/timestats.h
   M /trunk/tools/Makefile.am
   M /trunk/tools/checkhf.pl
   M /trunk/tools/lemon/Makefile.am
   M /trunk/tools/tpg/Makefile.am
   M /trunk/tools/tpg/V2P.pm
   M /trunk/tools/tpg/tpg.pl
   M /trunk/tools/tpg/tpg.yp
   M /trunk/tools/unix2dos.pl
   M /trunk/ui_util.h
   M /trunk/util.c
   M /trunk/util.h
   M /trunk/version_info.c
   M /trunk/version_info.h
   M /trunk/wiretap/Makefile.am
   M /trunk/wiretap/Makefile.common
   M /trunk/wiretap/ascend-int.h
   M /trunk/wiretap/file_util.h
   M /trunk/wka.tmpl

name change

------------------------------------------------------------------------
r18198 | kukosa | 2006-05-21 03:48:00 -0500 (Sun, 21 May 2006) | 2 lines
Changed paths:
   M /trunk/tools/asn2eth.py

- update to Wireshark
- prepare renaming asn2eth to asn2wrs
------------------------------------------------------------------------
r18199 | kukosa | 2006-05-21 09:36:05 -0500 (Sun, 21 May 2006) | 5 lines
Changed paths:
   M /trunk/asn1/MAP_Dialogue/Makefile
   M /trunk/asn1/MAP_Dialogue/Makefile.nmake
   M /trunk/asn1/acp133/Makefile
   M /trunk/asn1/acp133/Makefile.nmake
   M /trunk/asn1/acse/Makefile
   M /trunk/asn1/acse/Makefile.nmake
   M /trunk/asn1/ansi_map/Makefile.nmake
   M /trunk/asn1/camel/Makefile
   M /trunk/asn1/camel/Makefile.nmake
   M /trunk/asn1/cdt/Makefile
   M /trunk/asn1/cdt/Makefile.nmake
   M /trunk/asn1/cmip/Makefile
   M /trunk/asn1/cmip/Makefile.nmake
   M /trunk/asn1/cms/Makefile
   M /trunk/asn1/cms/Makefile.nmake
   M /trunk/asn1/dap/Makefile
   M /trunk/asn1/dap/Makefile.nmake
   M /trunk/asn1/disp/Makefile
   M /trunk/asn1/disp/Makefile.nmake
   M /trunk/asn1/dop/Makefile
   M /trunk/asn1/dop/Makefile.nmake
   M /trunk/asn1/dsp/Makefile
   M /trunk/asn1/dsp/Makefile.nmake
   M /trunk/asn1/ess/Makefile
   M /trunk/asn1/ess/Makefile.nmake
   M /trunk/asn1/ftam/Makefile
   M /trunk/asn1/ftam/Makefile.nmake
   M /trunk/asn1/ftbp/Makefile
   M /trunk/asn1/ftbp/Makefile.nmake
   M /trunk/asn1/gnm/Makefile
   M /trunk/asn1/gnm/Makefile.nmake
   M /trunk/asn1/gsm_ss/Makefile
   M /trunk/asn1/gsm_ss/Makefile.nmake
   M /trunk/asn1/gsmmap/Makefile
   M /trunk/asn1/gsmmap/Makefile.nmake
   M /trunk/asn1/h225/Makefile
   M /trunk/asn1/h225/Makefile.nmake
   M /trunk/asn1/h235/Makefile
   M /trunk/asn1/h235/Makefile.nmake
   M /trunk/asn1/h245/Makefile
   M /trunk/asn1/h245/Makefile.nmake
   M /trunk/asn1/h248/Makefile
   M /trunk/asn1/h248/Makefile.nmake
   M /trunk/asn1/h450/Makefile
   M /trunk/asn1/h450/Makefile.nmake
   M /trunk/asn1/inap/Makefile
   M /trunk/asn1/inap/Makefile.nmake
   M /trunk/asn1/ldap/Makefile
   M /trunk/asn1/ldap/Makefile.nmake
   M /trunk/asn1/logotype-cert-extn/Makefile
   M /trunk/asn1/logotype-cert-extn/Makefile.nmake
   M /trunk/asn1/mms/Makefile
   M /trunk/asn1/mms/Makefile.nmake
   M /trunk/asn1/nbap/Makefile
   M /trunk/asn1/nbap/Makefile.nmake
   M /trunk/asn1/ns-cert-exts/Makefile
   M /trunk/asn1/ns-cert-exts/Makefile.nmake
   M /trunk/asn1/ocsp/Makefile
   M /trunk/asn1/ocsp/Makefile.nmake
   M /trunk/asn1/pkcs1/Makefile
   M /trunk/asn1/pkcs1/Makefile.nmake
   M /trunk/asn1/pkinit/Makefile
   M /trunk/asn1/pkinit/Makefile.nmake
   M /trunk/asn1/pkix1explicit/Makefile
   M /trunk/asn1/pkix1explicit/Makefile.nmake
   M /trunk/asn1/pkix1implicit/Makefile
   M /trunk/asn1/pkix1implicit/Makefile.nmake
   M /trunk/asn1/pkixcmp/Makefile
   M /trunk/asn1/pkixcmp/Makefile.nmake
   M /trunk/asn1/pkixcrmf/Makefile
   M /trunk/asn1/pkixcrmf/Makefile.nmake
   M /trunk/asn1/pkixproxy/Makefile
   M /trunk/asn1/pkixproxy/Makefile.nmake
   M /trunk/asn1/pkixqualified/Makefile
   M /trunk/asn1/pkixqualified/Makefile.nmake
   M /trunk/asn1/pkixtsp/Makefile
   M /trunk/asn1/pkixtsp/Makefile.nmake
   M /trunk/asn1/pres/Makefile
   M /trunk/asn1/pres/Makefile.nmake
   M /trunk/asn1/ranap/Makefile
   M /trunk/asn1/ranap/Makefile.nmake
   M /trunk/asn1/rnsap/Makefile
   M /trunk/asn1/rnsap/Makefile.nmake
   M /trunk/asn1/ros/Makefile
   M /trunk/asn1/ros/Makefile.nmake
   M /trunk/asn1/rrlp/Makefile
   M /trunk/asn1/rrlp/Makefile.nmake
   M /trunk/asn1/rtse/Makefile
   M /trunk/asn1/rtse/Makefile.nmake
   M /trunk/asn1/s4406/Makefile
   M /trunk/asn1/s4406/Makefile.nmake
   M /trunk/asn1/smrse/Makefile
   M /trunk/asn1/smrse/Makefile.nmake
   M /trunk/asn1/snmp/Makefile
   M /trunk/asn1/snmp/Makefile.nmake
   M /trunk/asn1/spnego/Makefile
   M /trunk/asn1/spnego/Makefile.nmake
   M /trunk/asn1/tcap/Makefile
   M /trunk/asn1/tcap/Makefile.nmake
   M /trunk/asn1/ulp/Makefile
   M /trunk/asn1/ulp/Makefile.nmake
   M /trunk/asn1/wlancertextn/Makefile
   M /trunk/asn1/wlancertextn/Makefile.nmake
   M /trunk/asn1/x411/Makefile
   M /trunk/asn1/x411/Makefile.nmake
   M /trunk/asn1/x420/Makefile
   M /trunk/asn1/x420/Makefile.nmake
   M /trunk/asn1/x509af/Makefile
   M /trunk/asn1/x509af/Makefile.nmake
   M /trunk/asn1/x509ce/Makefile
   M /trunk/asn1/x509ce/Makefile.nmake
   M /trunk/asn1/x509if/Makefile
   M /trunk/asn1/x509if/Makefile.nmake
   M /trunk/asn1/x509sat/Makefile
   M /trunk/asn1/x509sat/Makefile.nmake
   M /trunk/tools/Makefile.am
   D /trunk/tools/asn2eth.py
   A /trunk/tools/asn2wrs.py (from /trunk/tools/asn2eth.py:18198)

- asn2eth renamed to asn2wrs
- remove obsolete -X option from makefiles
- not generate enumerated map table for BER

dissector will be regenerated later
------------------------------------------------------------------------
r18200 | gerald | 2006-05-21 10:59:46 -0500 (Sun, 21 May 2006) | 2 lines
Changed paths:
   M /trunk/tools/win32-setup.sh

Update the Win32 libs URL.

------------------------------------------------------------------------
r18201 | guy | 2006-05-21 16:32:04 -0500 (Sun, 21 May 2006) | 15 lines
Changed paths:
   M /trunk/Makefile.nmake
   M /trunk/acinclude.m4
   M /trunk/capture-wpcap.c
   M /trunk/capture_loop.c
   M /trunk/capture_loop.h
   M /trunk/config.h.win32
   M /trunk/config.nmake

If we have pcap_breakloop(), at least on UN*X we can stop the capture
with a pcap_breakloop() call - we don't need to call select() before
calling pcap_dispatch().

Even if we do need to call select(), we don't need to supply it with a
timeout - it's OK if we block indefinitely, as the signal will interrupt
select().

That also means we can pass -1 as the count to pcap_dispatch(), as
pcap_breakloop() will terminate the loop in pcap_dispatch().

Use sigaction() to catch SIGUSR1, so we can make sure that the signal
handler doesn't get reset when the signal is delivered, and that system
calls don't restart when we return from the signal handler.

------------------------------------------------------------------------
r18202 | guy | 2006-05-21 16:49:19 -0500 (Sun, 21 May 2006) | 2 lines
Changed paths:
   M /trunk/doc/README.stats_tree

Update Gerald's e-mail address.

------------------------------------------------------------------------
r18203 | guy | 2006-05-21 16:52:33 -0500 (Sun, 21 May 2006) | 2 lines
Changed paths:
   M /trunk/capture_loop.c
   M /trunk/capture_loop.h

Fix the only gerald@ethereal.com references left.

------------------------------------------------------------------------
r18204 | kukosa | 2006-05-22 00:55:59 -0500 (Mon, 22 May 2006) | 1 line
Changed paths:
   M /trunk/tools/asn2wrs.py

bug fix, one space missing
------------------------------------------------------------------------
r18205 | guy | 2006-05-22 02:29:40 -0500 (Mon, 22 May 2006) | 3 lines
Changed paths:
   M /trunk/gtk/about_dlg.c
   M /trunk/gtk/about_dlg.h
   M /trunk/gtk/capture_dlg.c
   M /trunk/gtk/capture_file_dlg.c
   M /trunk/gtk/capture_if_details_dlg.c
   M /trunk/gtk/capture_if_dlg.c
   M /trunk/gtk/capture_info_dlg.c
   M /trunk/gtk/capture_prefs.c
   M /trunk/gtk/color_dlg.c
   M /trunk/gtk/column_prefs.c
   M /trunk/gtk/compat_macros.h
   M /trunk/gtk/dcerpc_stat.c
   M /trunk/gtk/decode_as_dlg.c
   M /trunk/gtk/dfilter_expr_dlg.c
   M /trunk/gtk/dlg_utils.c
   M /trunk/gtk/dlg_utils.h
   M /trunk/gtk/expert_comp_table.c
   M /trunk/gtk/expert_dlg.c
   M /trunk/gtk/file_dlg.c
   M /trunk/gtk/file_dlg.h
   M /trunk/gtk/fileset_dlg.c
   M /trunk/gtk/filter_dlg.c
   M /trunk/gtk/find_dlg.c
   M /trunk/gtk/flow_graph.c
   M /trunk/gtk/follow_dlg.c
   M /trunk/gtk/funnel_stat.c
   M /trunk/gtk/goto_dlg.c
   M /trunk/gtk/graph_analysis.c
   M /trunk/gtk/graph_analysis.h
   M /trunk/gtk/gtkglobals.h
   M /trunk/gtk/gui_utils.c
   M /trunk/gtk/gui_utils.h
   M /trunk/gtk/h225_counter.c
   M /trunk/gtk/h225_ras_srt.c
   M /trunk/gtk/help_dlg.c
   M /trunk/gtk/help_dlg.h
   M /trunk/gtk/io_stat.c
   M /trunk/gtk/isprint.h
   M /trunk/gtk/layout_prefs.c
   M /trunk/gtk/main.c
   M /trunk/gtk/mcast_stream_dlg.c
   M /trunk/gtk/menu.c
   M /trunk/gtk/mgcp_stat.c
   M /trunk/gtk/packet_list.c
   M /trunk/gtk/prefs_dlg.c
   M /trunk/gtk/print_dlg.c
   M /trunk/gtk/print_prefs.c
   M /trunk/gtk/proto_dlg.c
   M /trunk/gtk/proto_draw.c
   M /trunk/gtk/proto_hier_stats_dlg.c
   M /trunk/gtk/recent.c
   M /trunk/gtk/rpc_progs.c
   M /trunk/gtk/rpc_stat.c
   M /trunk/gtk/rtp_analysis.c
   M /trunk/gtk/rtp_analysis.h
   M /trunk/gtk/rtp_stream.c
   M /trunk/gtk/rtp_stream.h
   M /trunk/gtk/rtp_stream_dlg.c
   M /trunk/gtk/rtp_stream_dlg.h
   M /trunk/gtk/scsi_stat.c
   M /trunk/gtk/sctp_chunk_stat.c
   M /trunk/gtk/sctp_error_dlg.c
   M /trunk/gtk/sctp_stat_dlg.c
   M /trunk/gtk/simple_dialog.c
   M /trunk/gtk/ssl-dlg.c
   M /trunk/gtk/summary_dlg.c
   M /trunk/gtk/supported_protos_dlg.c
   M /trunk/gtk/t38_analysis.c
   M /trunk/gtk/tap_dfilter_dlg.c
   M /trunk/gtk/tcp_graph.c
   M /trunk/gtk/toolbar.c
   M /trunk/gtk/voip_calls.c
   M /trunk/gtk/voip_calls.h
   M /trunk/gtk/voip_calls_dlg.c
   M /trunk/gtk/voip_calls_dlg.h
   M /trunk/gtk/webbrowser.c
   M /trunk/gtk/win32-file-dlg.c
   M /trunk/gtk/wsp_stat.c

Get rid of a bunch of "Ethereal"s and "ethereal"s in comments, GUI
strings, and function names.

------------------------------------------------------------------------
r18206 | sahlberg | 2006-05-22 03:14:01 -0500 (Mon, 22 May 2006) | 2 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/ChangeLog
   M /trunk/FAQ
   M /trunk/INSTALL
   M /trunk/Makefile.am
   M /trunk/Makefile.nmake
   M /trunk/NEWS
   M /trunk/README.hpux
   M /trunk/README.win32
   M /trunk/acinclude.m4
   M /trunk/asn1/snmp/packet-snmp-template.c
   M /trunk/asn1/snmp/snmp.asn
   M /trunk/color_filters.c
   M /trunk/colorfilters
   M /trunk/debian/changelog
   M /trunk/debian/control
   M /trunk/debian/patches/01_idl2deb.dpatch
   M /trunk/debian/patches/02_asn2deb.dpatch
   M /trunk/debian/patches/09_idl2eth.dpatch
   M /trunk/doc/Makefile.am
   M /trunk/doc/Makefile.nmake
   M /trunk/doc/README.binarytrees
   M /trunk/doc/README.developer
   M /trunk/doc/README.packaging
   M /trunk/doc/README.tapping
   M /trunk/doc/README.xml-output
   M /trunk/doc/ethereal.pod
   M /trunk/docbook/developer-guide.xml
   M /trunk/docbook/edg_src/EDG_chapter_build_intro.xml
   M /trunk/docbook/edg_src/EDG_chapter_env_intro.xml
   M /trunk/docbook/edg_src/EDG_chapter_libraries.xml
   M /trunk/docbook/edg_src/EDG_chapter_sources.xml
   M /trunk/docbook/edg_src/EDG_chapter_tools.xml
   M /trunk/docbook/edg_src/EDG_chapter_userinterface.xml
   M /trunk/docbook/edg_src/EDG_chapter_works.xml
   M /trunk/docbook/eug_src/EUG_app_files.xml
   M /trunk/docbook/eug_src/EUG_app_messages.xml
   M /trunk/docbook/eug_src/EUG_app_tools.xml
   M /trunk/docbook/eug_src/EUG_chapter_advanced.xml
   M /trunk/docbook/eug_src/EUG_chapter_build_install.xml
   M /trunk/docbook/eug_src/EUG_chapter_capture.xml
   M /trunk/docbook/eug_src/EUG_chapter_customize.xml
   M /trunk/docbook/eug_src/EUG_chapter_introduction.xml
   M /trunk/docbook/eug_src/EUG_chapter_troubleshoot.xml
   M /trunk/docbook/eug_src/EUG_chapter_use.xml
   M /trunk/docbook/eug_src/EUG_chapter_work.xml
   M /trunk/docbook/eug_src/EUG_preface.xml
   M /trunk/docbook/release-notes.xml
   M /trunk/docbook/user-guide.xml
   M /trunk/epan/NEWS
   M /trunk/epan/addr_resolv.h
   M /trunk/epan/dfilter/README.dfilter
   M /trunk/epan/dissectors/packet-ncp2222.inc
   M /trunk/epan/dtd_parse.l
   M /trunk/epan/h225-persistentdata.h
   M /trunk/epan/plugins.c
   M /trunk/epan/timestamp.h
   M /trunk/ethereal_be.py
   M /trunk/ethereal_gen.py
   M /trunk/help/Makefile.am
   M /trunk/help/faq.txt
   M /trunk/help/overview.txt
   M /trunk/idl2eth.sh
   M /trunk/image/Makefile.nmake
   M /trunk/image/capinfos.rc.in
   M /trunk/image/dumpcap.rc.in
   M /trunk/image/editcap.rc.in
   M /trunk/image/ethereal.rc.in
   M /trunk/image/libethereal.rc.in
   M /trunk/image/mergecap.rc.in
   M /trunk/image/tethereal.rc.in
   M /trunk/image/text2pcap.rc.in
   M /trunk/image/wiretap.rc.in
   M /trunk/make-faq
   M /trunk/manuf
   M /trunk/manuf.tmpl
   M /trunk/packaging/nsis/WinPcapPage.ini
   M /trunk/packaging/nsis/ethereal.nsi
   M /trunk/packaging/rpm/SPECS/ethereal.spec.in
   M /trunk/plugins/Makefile.am
   M /trunk/plugins/docsis/ChangeLog
   M /trunk/plugins/giop/Makefile.am
   M /trunk/plugins/gryphon/README
   M /trunk/plugins/lua/README
   M /trunk/plugins/lua/elua_proto.c
   M /trunk/plugins/mgcp/ChangeLog
   M /trunk/print.c
   M /trunk/sync_pipe.h
   M /trunk/tap-dcerpcstat.c
   M /trunk/tap-rpcstat.c
   M /trunk/tap-smbsids.c
   M /trunk/tap-wspstat.c
   M /trunk/tethereal.c
   M /trunk/tools/Makefile.am
   M /trunk/tools/dfilter-test.py
   M /trunk/tools/ftsanity.py
   M /trunk/tools/pidl/lib/Parse/Pidl/Ethereal/Conformance.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Ethereal/NDR.pm
   M /trunk/version_info.c
   M /trunk/version_info.h
   M /trunk/wiretap/NEWS
   M /trunk/wiretap/README
   M /trunk/wiretap/acinclude.m4
   M /trunk/wiretap/file_access.c
   M /trunk/wiretap/libpcap.c

ethereal->wireshark updates

------------------------------------------------------------------------
r18207 | sahlberg | 2006-05-22 03:21:22 -0500 (Mon, 22 May 2006) | 2 lines
Changed paths:
   M /trunk/ChangeLog
   M /trunk/FAQ
   M /trunk/INSTALL
   M /trunk/NEWS
   M /trunk/README.aix
   M /trunk/README.irix
   M /trunk/README.win32
   M /trunk/asn1/ess/ExtendedSecurityServices.asn
   M /trunk/capture_loop.c
   M /trunk/debian/patches/01_idl2deb.dpatch
   M /trunk/doc/README.developer
   M /trunk/doc/README.packaging
   M /trunk/doc/capinfos.pod
   M /trunk/doc/dumpcap.pod
   M /trunk/doc/editcap.pod
   M /trunk/doc/ethereal.pod
   M /trunk/doc/mergecap.pod
   M /trunk/doc/tethereal.pod
   M /trunk/docbook/developer-guide.xml
   M /trunk/docbook/edg_src/EDG_chapter_env_intro.xml
   M /trunk/docbook/edg_src/EDG_chapter_sources.xml
   M /trunk/docbook/edg_src/EDG_chapter_tools.xml
   M /trunk/docbook/edg_src/EDG_chapter_userinterface.xml
   M /trunk/docbook/edg_src/EDG_chapter_works.xml
   M /trunk/docbook/edg_src/EDG_preface.xml
   M /trunk/docbook/eug_src/EUG_app_files.xml
   M /trunk/docbook/eug_src/EUG_app_tools.xml
   M /trunk/docbook/eug_src/EUG_chapter_advanced.xml
   M /trunk/docbook/eug_src/EUG_chapter_build_install.xml
   M /trunk/docbook/eug_src/EUG_chapter_capture.xml
   M /trunk/docbook/eug_src/EUG_chapter_introduction.xml
   M /trunk/docbook/eug_src/EUG_chapter_io.xml
   M /trunk/docbook/eug_src/EUG_chapter_use.xml
   M /trunk/docbook/eug_src/EUG_chapter_work.xml
   M /trunk/docbook/eug_src/EUG_preface.xml
   M /trunk/docbook/release-notes.xml
   M /trunk/epan/dissectors/pidl/README
   M /trunk/epan/dissectors/pidl/packet-dcerpc-atsvc.c
   M /trunk/epan/dissectors/pidl/packet-dcerpc-atsvc.h
   M /trunk/epan/dissectors/pidl/packet-dcerpc-initshutdown.c
   M /trunk/epan/dissectors/pidl/packet-dcerpc-initshutdown.h
   M /trunk/epan/dissectors/pidl/packet-dcerpc-winreg.c
   M /trunk/epan/dissectors/pidl/packet-dcerpc-winreg.h
   M /trunk/epan/filesystem.c
   M /trunk/epan/plugins.c
   M /trunk/gtk/main.c
   M /trunk/help/capture_filters.txt
   M /trunk/help/display_filters.txt
   M /trunk/help/faq.txt
   M /trunk/image/README.image
   M /trunk/make-faq
   M /trunk/manuf
   M /trunk/manuf.tmpl
   M /trunk/test/config.sh
   M /trunk/test/suite-capture.sh
   M /trunk/test/suite-clopts.sh
   M /trunk/test/suite-io.sh
   M /trunk/test/test.sh
   M /trunk/tethereal.c
   M /trunk/tools/pidl/lib/Parse/Pidl/Ethereal/NDR.pm

ethereal->wireshark

------------------------------------------------------------------------
r18208 | sahlberg | 2006-05-22 04:05:24 -0500 (Mon, 22 May 2006) | 2 lines
Changed paths:
   M /trunk/Makefile.am
   M /trunk/configure.in
   M /trunk/debian/changelog
   M /trunk/debian/patches/04_drop-capabilities.dpatch
   M /trunk/doc/README.plugins
   M /trunk/doc/README.xml-output
   M /trunk/dtds/rss.dtd

ethereal->wireshark

------------------------------------------------------------------------
r18209 | kukosa | 2006-05-22 06:49:50 -0500 (Mon, 22 May 2006) | 8 lines
Changed paths:
   M /trunk/asn1/Makefile.nmake
   M /trunk/asn1/h225/h225-exp.cnf
   M /trunk/asn1/h225/h225.cnf
   M /trunk/asn1/h225/packet-h225-template.c
   M /trunk/asn1/h225/packet-h225-template.h
   M /trunk/asn1/h235/h235-exp.cnf
   M /trunk/asn1/h235/packet-h235-template.c
   M /trunk/asn1/h245/h245-exp.cnf
   M /trunk/asn1/h245/h245.cnf
   M /trunk/asn1/h245/packet-h245-template.c
   M /trunk/asn1/h245/packet-h245-template.h
   M /trunk/asn1/h450/packet-h450-template.c
   M /trunk/asn1/nbap/nbap.cnf
   M /trunk/asn1/nbap/packet-nbap-template.c
   M /trunk/asn1/ranap/packet-ranap-template.c
   M /trunk/asn1/ranap/ranap.cnf
   M /trunk/asn1/rnsap/packet-rnsap-template.c
   M /trunk/asn1/rnsap/rnsap.cnf
   M /trunk/asn1/rrlp/rrlp.cnf
   M /trunk/asn1/ulp/ulp.cnf
   M /trunk/epan/dissectors/packet-h225.c
   M /trunk/epan/dissectors/packet-h225.h
   M /trunk/epan/dissectors/packet-h235.c
   M /trunk/epan/dissectors/packet-h235.h
   M /trunk/epan/dissectors/packet-h245.c
   M /trunk/epan/dissectors/packet-h245.h
   M /trunk/epan/dissectors/packet-h450.c
   M /trunk/epan/dissectors/packet-h450.h
   M /trunk/epan/dissectors/packet-nbap.c
   M /trunk/epan/dissectors/packet-nbap.h
   M /trunk/epan/dissectors/packet-per.c
   M /trunk/epan/dissectors/packet-per.h
   M /trunk/epan/dissectors/packet-ranap.c
   M /trunk/epan/dissectors/packet-ranap.h
   M /trunk/epan/dissectors/packet-rnsap.c
   M /trunk/epan/dissectors/packet-rnsap.h
   M /trunk/epan/dissectors/packet-rrlp.c
   M /trunk/epan/dissectors/packet-rrlp.h
   M /trunk/epan/dissectors/packet-t38.c
   M /trunk/epan/dissectors/packet-ulp.c
   M /trunk/epan/dissectors/packet-ulp.h
   M /trunk/epan/libethereal.def
   M /trunk/tools/asn2wrs.py

- fix bugs in dissect_per_octet_string() introduced with unaligned variant
- step to new ASN.1 API - pass asn_ctx_t* through PER dissectors instead of packet_info*
- PER ALIGNED/UNALIGNED flag moved to asn_ctx_t
- PER created tree item pointer moved to asn_ctx_t
- add nbap into PER dissectors in asn1/Makefile.nmake
- use add_oid_str_name() instead of register_ber_oid_name() in H.225 and H.245
- export asn_ctx_init from library
- PER dissectors regenerated
------------------------------------------------------------------------
r18210 | etxrab | 2006-05-23 00:20:33 -0500 (Tue, 23 May 2006) | 1 line
Changed paths:
   M /trunk/image/Makefile.nmake
   M /trunk/image/ethereal.rc.in

Make it compile again.
------------------------------------------------------------------------
r18211 | etxrab | 2006-05-23 00:35:20 -0500 (Tue, 23 May 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-bssap.c
   M /trunk/epan/dissectors/packet-gprs-llc.c

Dissect rrlp payload.
------------------------------------------------------------------------
r18212 | etxrab | 2006-05-23 00:48:00 -0500 (Tue, 23 May 2006) | 11 lines
Changed paths:
   M /trunk/epan/dissectors/packet-catapult-dct2000.c
   M /trunk/epan/dissectors/packet-diameter.c
   M /trunk/epan/dissectors/packet-http.c
   M /trunk/plugins/mgcp/packet-mgcp.c
   M /trunk/wiretap/catapult_dct2000.c
   M /trunk/wiretap/catapult_dct2000.h

From Martin Mathieson:

- Many DCT2000 protocols can be embedded within an IP primitive 
message.  Add a heuristic to see if we can find the protocol payload 
within in IP primitive message, and look for an ethereal dissector 
matching the DCT2000 protocol name (this is useful for simple protocol 
testing where no physical links are involved)
- Make some more of these protocols (diameter, http, mgcp) findable by name
- Adds protocol 'variant' number to stub and dissector
- Break the duplicated writing of the stub header out into a separate 
function
------------------------------------------------------------------------
r18213 | kukosa | 2006-05-23 09:30:05 -0500 (Tue, 23 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/Makefile.nmake

change rules so as not to have each dissector twice in 'all:' and 'per:'/'ber:'
------------------------------------------------------------------------
r18214 | kukosa | 2006-05-23 10:17:14 -0500 (Tue, 23 May 2006) | 2 lines
Changed paths:
   M /trunk/asn1/acse/acse-exp.cnf
   M /trunk/asn1/acse/acse.asn
   M /trunk/asn1/acse/acse.cnf
   M /trunk/asn1/acse/packet-acse-template.c
   M /trunk/asn1/ansi_map/README
   M /trunk/asn1/ansi_map/packet-ansi_map-template.c
   M /trunk/asn1/ansi_map/packet-ansi_map-template.h
   M /trunk/asn1/cdt/cdt-exp.cnf
   M /trunk/asn1/cmip/cmip-exp.cnf
   M /trunk/asn1/cms/CryptographicMessageSyntax.asn
   M /trunk/asn1/cms/cms-exp.cnf
   M /trunk/asn1/cms/packet-cms-template.c
   M /trunk/asn1/dap/dap-exp.cnf
   M /trunk/asn1/disp/disp-exp.cnf
   M /trunk/asn1/dop/dop-exp.cnf
   M /trunk/asn1/dsp/dsp-exp.cnf
   M /trunk/asn1/ess/ExtendedSecurityServices.asn
   M /trunk/asn1/ftam/ISO8571-FTAM.asn
   M /trunk/asn1/ftam/ftam-exp.cnf
   M /trunk/asn1/ftam/ftam.cnf
   M /trunk/asn1/gsmmap/GSMMAP.asn
   M /trunk/asn1/gsmmap/gsm_map-exp.cnf
   M /trunk/asn1/gsmmap/packet-gsm_map-template.c
   M /trunk/asn1/h225/h225.asn
   M /trunk/asn1/h225/packet-h225-template.c
   M /trunk/asn1/h225/packet-h225-template.h
   M /trunk/asn1/h235/H235-SECURITY-MESSAGES.asn
   M /trunk/asn1/h235/H235-SRTP.asn
   M /trunk/asn1/h245/packet-h245-template.c
   M /trunk/asn1/h248/MEGACO.asn
   M /trunk/asn1/h450/h4501.asn
   M /trunk/asn1/h450/packet-h450-template.c
   M /trunk/asn1/ldap/README
   M /trunk/asn1/ldap/ldap.cnf
   M /trunk/asn1/ldap/packet-ldap-template.c
   M /trunk/asn1/logotype-cert-extn/LogotypeCertExtn.asn
   M /trunk/asn1/mms/mms-exp.cnf
   M /trunk/asn1/mms/mms.asn
   M /trunk/asn1/ocsp/OCSP.asn
   M /trunk/asn1/pkinit/PKINIT.asn
   M /trunk/asn1/pkix1explicit/PKIX1EXPLICIT93.asn
   M /trunk/asn1/pkix1explicit/packet-pkix1explicit-template.c
   M /trunk/asn1/pkix1explicit/pkix1explicit-exp.cnf
   M /trunk/asn1/pkix1implicit/PKIX1IMPLICIT93.asn
   M /trunk/asn1/pkix1implicit/pkix1implicit-exp.cnf
   M /trunk/asn1/pkixcmp/CMP.asn
   M /trunk/asn1/pkixcmp/cmp-exp.cnf
   M /trunk/asn1/pkixcrmf/CRMF.asn
   M /trunk/asn1/pkixcrmf/crmf-exp.cnf
   M /trunk/asn1/pkixproxy/PKIXProxy.asn
   M /trunk/asn1/pkixqualified/PKIXqualified.asn
   M /trunk/asn1/pkixtsp/PKIXTSP.asn
   M /trunk/asn1/ranap/ranap.asn
   M /trunk/asn1/ros/packet-ros-template.c
   M /trunk/asn1/ros/ros-exp.cnf
   M /trunk/asn1/rtse/packet-rtse-template.c
   M /trunk/asn1/rtse/rtse-exp.cnf
   M /trunk/asn1/rtse/rtse.asn
   M /trunk/asn1/rtse/rtse.cnf
   M /trunk/asn1/snmp/README.txt
   M /trunk/asn1/snmp/packet-snmp-template.c
   M /trunk/asn1/snmp/snmp.cnf
   M /trunk/asn1/spnego/packet-spnego-template.c
   M /trunk/asn1/x411/x411-exp.cnf
   M /trunk/asn1/x411/x411.asn
   M /trunk/asn1/x411/x411.cnf
   M /trunk/asn1/x420/x420-exp.cnf
   M /trunk/asn1/x420/x420.asn
   M /trunk/asn1/x509af/x509af-exp.cnf
   M /trunk/asn1/x509ce/x509ce-exp.cnf
   M /trunk/asn1/x509if/x509if-exp.cnf
   M /trunk/asn1/x509sat/SelectedAttributeTypes.asn
   M /trunk/asn1/x509sat/x509sat-exp.cnf

Ethereal -> Wireshark
asn2eth -> asn2wrs
------------------------------------------------------------------------
r18215 | etxrab | 2006-05-23 14:02:05 -0500 (Tue, 23 May 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-uma.c

From Markus Meier:
The UMA-message Handover From UMAN Command includes the complete L3-message (and header) and not only the handover-IE's.
------------------------------------------------------------------------
r18216 | etxrab | 2006-05-23 15:36:49 -0500 (Tue, 23 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/snmp/packet-snmp-template.c
   M /trunk/epan/dissectors/packet-snmp.c
   M /trunk/epan/dissectors/packet-snmp.h

Atempt to fix bug 967 crash on fuzzed SNMP capture. I can't reproduce the Bug.
------------------------------------------------------------------------
r18217 | kukosa | 2006-05-24 07:24:54 -0500 (Wed, 24 May 2006) | 2 lines
Changed paths:
   M /trunk/asn1/acp133/acp133.cnf
   M /trunk/asn1/acse/acse.cnf
   M /trunk/asn1/cmip/cmip.cnf
   M /trunk/asn1/cms/cms.cnf
   M /trunk/asn1/dap/dap.cnf
   M /trunk/asn1/disp/disp.cnf
   M /trunk/asn1/dop/dop.cnf
   M /trunk/asn1/dsp/dsp.cnf
   M /trunk/asn1/ess/ess.cnf
   M /trunk/asn1/ftam/ftam.cnf
   M /trunk/asn1/ftbp/ftbp.cnf
   M /trunk/asn1/gsm_ss/gsm_ss.cnf
   M /trunk/asn1/logotype-cert-extn/logotype-cert-extn.cnf
   M /trunk/asn1/ocsp/ocsp.cnf
   M /trunk/asn1/pkcs1/pkcs1.cnf
   M /trunk/asn1/pkinit/pkinit.cnf
   M /trunk/asn1/pkix1implicit/pkix1implicit.cnf
   M /trunk/asn1/pkixcrmf/crmf.cnf
   M /trunk/asn1/pkixqualified/pkixqualified.cnf
   M /trunk/asn1/pkixtsp/pkixtsp.cnf
   M /trunk/asn1/pres/pres.cnf
   M /trunk/asn1/s4406/s4406.cnf
   M /trunk/asn1/x411/x411.cnf
   M /trunk/asn1/x420/x420.cnf
   M /trunk/asn1/x509af/x509af.cnf
   M /trunk/asn1/x509ce/x509ce.cnf
   M /trunk/asn1/x509if/x509if.cnf
   M /trunk/asn1/x509sat/x509sat.cnf
   M /trunk/epan/dissectors/packet-MAP_DialoguePDU.c
   M /trunk/epan/dissectors/packet-MAP_DialoguePDU.h
   M /trunk/epan/dissectors/packet-acp133.c
   M /trunk/epan/dissectors/packet-acp133.h
   M /trunk/epan/dissectors/packet-acse.c
   M /trunk/epan/dissectors/packet-acse.h
   M /trunk/epan/dissectors/packet-camel.c
   M /trunk/epan/dissectors/packet-camel.h
   M /trunk/epan/dissectors/packet-cdt.c
   M /trunk/epan/dissectors/packet-cdt.h
   M /trunk/epan/dissectors/packet-cmip.c
   M /trunk/epan/dissectors/packet-cmip.h
   M /trunk/epan/dissectors/packet-cmp.c
   M /trunk/epan/dissectors/packet-cmp.h
   M /trunk/epan/dissectors/packet-cms.c
   M /trunk/epan/dissectors/packet-cms.h
   M /trunk/epan/dissectors/packet-crmf.c
   M /trunk/epan/dissectors/packet-crmf.h
   M /trunk/epan/dissectors/packet-dap.c
   M /trunk/epan/dissectors/packet-dap.h
   M /trunk/epan/dissectors/packet-disp.c
   M /trunk/epan/dissectors/packet-disp.h
   M /trunk/epan/dissectors/packet-dop.c
   M /trunk/epan/dissectors/packet-dop.h
   M /trunk/epan/dissectors/packet-dsp.c
   M /trunk/epan/dissectors/packet-dsp.h
   M /trunk/epan/dissectors/packet-ess.c
   M /trunk/epan/dissectors/packet-ess.h
   M /trunk/epan/dissectors/packet-ftam.c
   M /trunk/epan/dissectors/packet-ftam.h
   M /trunk/epan/dissectors/packet-ftbp.c
   M /trunk/epan/dissectors/packet-ftbp.h
   M /trunk/epan/dissectors/packet-gnm.c
   M /trunk/epan/dissectors/packet-gnm.h
   M /trunk/epan/dissectors/packet-gsm_map.c
   M /trunk/epan/dissectors/packet-gsm_map.h
   M /trunk/epan/dissectors/packet-gsm_ss.c
   M /trunk/epan/dissectors/packet-gsm_ss.h
   M /trunk/epan/dissectors/packet-h248.c
   M /trunk/epan/dissectors/packet-h248.h
   M /trunk/epan/dissectors/packet-inap.c
   M /trunk/epan/dissectors/packet-inap.h
   M /trunk/epan/dissectors/packet-ldap.c
   M /trunk/epan/dissectors/packet-ldap.h
   M /trunk/epan/dissectors/packet-logotypecertextn.c
   M /trunk/epan/dissectors/packet-logotypecertextn.h
   M /trunk/epan/dissectors/packet-mms.c
   M /trunk/epan/dissectors/packet-mms.h
   M /trunk/epan/dissectors/packet-ns_cert_exts.c
   M /trunk/epan/dissectors/packet-ocsp.c
   M /trunk/epan/dissectors/packet-ocsp.h
   M /trunk/epan/dissectors/packet-pkcs1.c
   M /trunk/epan/dissectors/packet-pkcs1.h
   M /trunk/epan/dissectors/packet-pkinit.c
   M /trunk/epan/dissectors/packet-pkinit.h
   M /trunk/epan/dissectors/packet-pkix1explicit.c
   M /trunk/epan/dissectors/packet-pkix1explicit.h
   M /trunk/epan/dissectors/packet-pkix1implicit.c
   M /trunk/epan/dissectors/packet-pkix1implicit.h
   M /trunk/epan/dissectors/packet-pkixproxy.c
   M /trunk/epan/dissectors/packet-pkixproxy.h
   M /trunk/epan/dissectors/packet-pkixqualified.c
   M /trunk/epan/dissectors/packet-pkixqualified.h
   M /trunk/epan/dissectors/packet-pkixtsp.c
   M /trunk/epan/dissectors/packet-pkixtsp.h
   M /trunk/epan/dissectors/packet-pres.c
   M /trunk/epan/dissectors/packet-pres.h
   M /trunk/epan/dissectors/packet-ros.c
   M /trunk/epan/dissectors/packet-ros.h
   M /trunk/epan/dissectors/packet-rtse.c
   M /trunk/epan/dissectors/packet-rtse.h
   M /trunk/epan/dissectors/packet-s4406.c
   M /trunk/epan/dissectors/packet-s4406.h
   M /trunk/epan/dissectors/packet-smrse.c
   M /trunk/epan/dissectors/packet-smrse.h
   M /trunk/epan/dissectors/packet-spnego.c
   M /trunk/epan/dissectors/packet-spnego.h
   M /trunk/epan/dissectors/packet-tcap.c
   M /trunk/epan/dissectors/packet-tcap.h
   M /trunk/epan/dissectors/packet-wlancertextn.c
   M /trunk/epan/dissectors/packet-wlancertextn.h
   M /trunk/epan/dissectors/packet-x411.c
   M /trunk/epan/dissectors/packet-x411.h
   M /trunk/epan/dissectors/packet-x420.c
   M /trunk/epan/dissectors/packet-x420.h
   M /trunk/epan/dissectors/packet-x509af.c
   M /trunk/epan/dissectors/packet-x509af.h
   M /trunk/epan/dissectors/packet-x509ce.c
   M /trunk/epan/dissectors/packet-x509ce.h
   M /trunk/epan/dissectors/packet-x509if.c
   M /trunk/epan/dissectors/packet-x509if.h
   M /trunk/epan/dissectors/packet-x509sat.c
   M /trunk/epan/dissectors/packet-x509sat.h

- remove some #.MODULE_IMPORT from .cng files
- regenerate BER dissectors so as to change rest of Ethereal->Wireshark and asn2eth -> asn2wrs
------------------------------------------------------------------------
r18218 | sahlberg | 2006-05-26 03:30:56 -0500 (Fri, 26 May 2006) | 17 lines
Changed paths:
   M /trunk/epan/dissectors/Makefile.common
   M /trunk/epan/dissectors/packet-bthci_acl.c
   A /trunk/epan/dissectors/packet-bthci_acl.h

protocols running atop ACL/L2CAP needs to be able to track pdus based on
acl chandle + direction + l2cap-CID    to uniquely identify a single specific
flow of PDU packets.

So we need to pass the chandle upp from acl to l2cap at least.



It would have been nice to handle this using "conversations" but the bluetooth
stack does not eaily map to the idiom host:port<->host:port

instead in bluetooth you have unidirectional flows that are identified by ACL-chandle:L2CAP-CID:direction     and additional state held inside l2cap  would attach two such flows together into a "conversation".
Bluetooth packets themself    only indentify "half" of the two way conversation.




------------------------------------------------------------------------
r18219 | sahlberg | 2006-05-26 03:32:17 -0500 (Fri, 26 May 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-bthci_acl.h

set properties for acl.h


------------------------------------------------------------------------
r18220 | sahlberg | 2006-05-26 17:34:33 -0500 (Fri, 26 May 2006) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-btl2cap.c
   M /trunk/epan/dissectors/packet-btl2cap.h

pass both chandle and cid  from l2cap to higher layer protocols.

higher layer protocols need the chandle, cid and direction (from pinfo) in order to identify packets for the same "conversation"

(it is not a conversation per se in bluetooth butn one unidirectional flow that we track)


------------------------------------------------------------------------
r18221 | sahlberg | 2006-05-26 20:52:02 -0500 (Fri, 26 May 2006) | 10 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/Makefile.common
   A /trunk/epan/dissectors/packet-btrfcomm.c

initial bluetooth rfcomm dissector.

this dissector will not yet detect when ppp is passed over the rfcomm link
but the old code to detect and deescapt the ppp data is still in the dissector, though ifdeffed out   to serve as inspiration when ppp over rfcomm captures are made available.


the only captures i have with rfcomm are for raw serial communications so they dont contain any ppp frames. :-(



------------------------------------------------------------------------
r18222 | gerald | 2006-05-26 21:11:19 -0500 (Fri, 26 May 2006) | 2 lines
Changed paths:
   M /trunk/config.nmake

Use GTK-Wimp 0.7.0.

------------------------------------------------------------------------
r18223 | sahlberg | 2006-05-27 01:10:52 -0500 (Sat, 27 May 2006) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-bthci_acl.c
   M /trunk/epan/dissectors/packet-btl2cap.c

add reassembly of bluetooth ACL packets


doing the reassembly internally in acl instead of calling reassembly.c since the fragmentation is so simple and packets are so small anyway so full reassembly.c support would be overkill.



------------------------------------------------------------------------
r18224 | sahlberg | 2006-05-27 01:45:46 -0500 (Sat, 27 May 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/Makefile.common
   A /trunk/epan/dissectors/packet-bthci_sco.c

the bluetooth SCO transport layer from the affix bluetooth patch


------------------------------------------------------------------------
r18225 | etxrab | 2006-05-27 13:24:29 -0500 (Sat, 27 May 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-uma.c

Dissect RTP Redundancy Support correctly.
------------------------------------------------------------------------
r18226 | etxrab | 2006-05-27 13:25:08 -0500 (Sat, 27 May 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-amr.c

Handle the case with only one speech sample.
------------------------------------------------------------------------
r18227 | etxrab | 2006-05-27 13:26:04 -0500 (Sat, 27 May 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-gsm_a.c

From Markus Meier:
Better dissection of chanel descriptions.
------------------------------------------------------------------------
r18228 | etxrab | 2006-05-27 17:09:07 -0500 (Sat, 27 May 2006) | 6 lines
Changed paths:
   M /trunk/asn1/ranap/packet-ranap-template.h
   M /trunk/asn1/ranap/ranap.cnf
   M /trunk/epan/dissectors/packet-gtp.c
   M /trunk/epan/dissectors/packet-ranap.c
   M /trunk/epan/dissectors/packet-ranap.h

Fix bug 973:
While in 3GPP spec, the last two (Down/up nextPDCP-PDU seq. no.) would be 2 
BYTES. So ethreal could not read the message correctly. We have to modify the 
log to make Ethreal analysis it.

Add disection of TargetID.
------------------------------------------------------------------------
r18229 | sahlberg | 2006-05-28 01:14:20 -0500 (Sun, 28 May 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/Makefile.common
   A /trunk/epan/dissectors/packet-btsdp.c

basic sdp dissector for the bluetooth stack


------------------------------------------------------------------------
r18230 | etxrab | 2006-05-28 10:56:15 -0500 (Sun, 28 May 2006) | 1 line
Changed paths:
   M /trunk/wiretap/csids.c
   M /trunk/wiretap/dbs-etherwatch.c
   M /trunk/wiretap/libpcap.c
   M /trunk/wiretap/network_instruments.c
   M /trunk/wiretap/visual.c

Ethareal->Wireshark
------------------------------------------------------------------------
r18231 | etxrab | 2006-05-28 11:32:49 -0500 (Sun, 28 May 2006) | 1 line
Changed paths:
   M /trunk/plugins/Makefile.nmake
   M /trunk/plugins/asn1/packet-asn1.c
   M /trunk/plugins/docsis/packet-bpkmattr.c
   M /trunk/plugins/docsis/packet-bpkmreq.c
   M /trunk/plugins/docsis/packet-bpkmrsp.c
   M /trunk/plugins/docsis/packet-dccack.c
   M /trunk/plugins/docsis/packet-dccreq.c
   M /trunk/plugins/docsis/packet-dccrsp.c
   M /trunk/plugins/docsis/packet-dcd.c
   M /trunk/plugins/docsis/packet-docsis.c
   M /trunk/plugins/docsis/packet-dsaack.c
   M /trunk/plugins/docsis/packet-dsareq.c
   M /trunk/plugins/docsis/packet-dsarsp.c
   M /trunk/plugins/docsis/packet-dscack.c
   M /trunk/plugins/docsis/packet-dscreq.c
   M /trunk/plugins/docsis/packet-dscrsp.c
   M /trunk/plugins/docsis/packet-dsdreq.c
   M /trunk/plugins/docsis/packet-dsdrsp.c
   M /trunk/plugins/docsis/packet-intrngreq.c
   M /trunk/plugins/docsis/packet-macmgmt.c
   M /trunk/plugins/docsis/packet-map.c
   M /trunk/plugins/docsis/packet-regack.c
   M /trunk/plugins/docsis/packet-regreq.c
   M /trunk/plugins/docsis/packet-regrsp.c
   M /trunk/plugins/docsis/packet-rngreq.c
   M /trunk/plugins/docsis/packet-rngrsp.c
   M /trunk/plugins/docsis/packet-tlv.c
   M /trunk/plugins/docsis/packet-type29ucd.c
   M /trunk/plugins/docsis/packet-uccreq.c
   M /trunk/plugins/docsis/packet-uccrsp.c
   M /trunk/plugins/docsis/packet-ucd.c
   M /trunk/plugins/docsis/packet-vendor.c
   M /trunk/plugins/giop/packet-coseventcomm.c
   M /trunk/plugins/h223/packet-h223.c
   M /trunk/plugins/h223/packet-srp.c
   M /trunk/plugins/irda/packet-irda.c
   M /trunk/plugins/lua/elua.c
   M /trunk/plugins/lua/elua.h
   M /trunk/plugins/lua/elua_dumper.c
   M /trunk/plugins/lua/elua_field.c
   M /trunk/plugins/lua/elua_gui.c
   M /trunk/plugins/lua/elua_pinfo.c
   M /trunk/plugins/lua/elua_plugin.c
   M /trunk/plugins/lua/elua_proto.c
   M /trunk/plugins/lua/elua_tap.c
   M /trunk/plugins/lua/elua_tree.c
   M /trunk/plugins/lua/elua_tvb.c
   M /trunk/plugins/mate/mate_setup.c
   M /trunk/plugins/mate/packet-mate.c
   M /trunk/plugins/rlm/packet-rlm.c
   M /trunk/plugins/v5ua/packet-v5ua.c

Ethereal->Wireshark
------------------------------------------------------------------------
r18232 | etxrab | 2006-05-28 12:19:08 -0500 (Sun, 28 May 2006) | 1 line
Changed paths:
   M /trunk/gtk/about_dlg.c
   M /trunk/gtk/capture_dlg.c
   M /trunk/gtk/capture_file_dlg.c
   M /trunk/gtk/capture_prefs.c
   M /trunk/gtk/color_dlg.c
   M /trunk/gtk/compat_macros.h
   M /trunk/gtk/dcerpc_stat.c
   M /trunk/gtk/dlg_utils.c
   M /trunk/gtk/filter_dlg.c
   M /trunk/gtk/find_dlg.c
   M /trunk/gtk/follow_dlg.c
   M /trunk/gtk/font_utils.c
   M /trunk/gtk/help_dlg.c
   M /trunk/gtk/help_dlg.h
   M /trunk/gtk/io_stat.c
   M /trunk/gtk/main.c
   M /trunk/gtk/mcast_stream.h
   M /trunk/gtk/menu.c
   M /trunk/gtk/packet_list.c
   M /trunk/gtk/print_dlg.c
   M /trunk/gtk/print_prefs.c
   M /trunk/gtk/rpc_progs.c
   M /trunk/gtk/rpc_stat.c
   M /trunk/gtk/rtp_stream.h
   M /trunk/gtk/scsi_stat.c
   M /trunk/gtk/simple_dialog.c
   M /trunk/gtk/tap_dfilter_dlg.c
   M /trunk/gtk/tcp_graph.c
   M /trunk/gtk/toolbar.c
   M /trunk/gtk/voip_calls.h

Ethereal->Wireshark
------------------------------------------------------------------------
r18233 | etxrab | 2006-05-28 12:23:23 -0500 (Sun, 28 May 2006) | 1 line
Changed paths:
   D /trunk/ethereal_be.py
   D /trunk/ethereal_gen.py
   A /trunk/tools/ethereal_be.py (from /trunk/ethereal_be.py:18230)
   A /trunk/tools/ethereal_gen.py (from /trunk/ethereal_gen.py:18230)

Move to tools
------------------------------------------------------------------------
r18234 | etxrab | 2006-05-28 14:49:07 -0500 (Sun, 28 May 2006) | 1 line
Changed paths:
   M /trunk/epan/addr_resolv.c
   M /trunk/epan/addr_resolv.h
   M /trunk/epan/address.h
   M /trunk/epan/dfilter/semcheck.c
   M /trunk/epan/dissectors/packet-ajp13.c
   M /trunk/epan/dissectors/packet-armagetronad.c
   M /trunk/epan/dissectors/packet-bssap.c
   M /trunk/epan/dissectors/packet-btrfcomm.c
   M /trunk/epan/dissectors/packet-catapult-dct2000.c
   M /trunk/epan/dissectors/packet-diameter.c
   M /trunk/epan/dissectors/packet-gprs-llc.c
   M /trunk/epan/dissectors/packet-gsm_a.c
   M /trunk/epan/dissectors/packet-http.c
   M /trunk/epan/dissectors/packet-ieee80211.c
   M /trunk/epan/dissectors/packet-ripng.h
   M /trunk/epan/dissectors/packet-smb-sidsnooping.c
   M /trunk/epan/dissectors/packet-xml.c
   M /trunk/epan/dtd.h
   M /trunk/epan/dtd_parse.h
   M /trunk/epan/emem.c
   M /trunk/epan/emem.h
   M /trunk/epan/exceptions.h
   M /trunk/epan/expert.h
   M /trunk/epan/filesystem.c
   M /trunk/epan/filesystem.h
   M /trunk/epan/g_ascii_strtoull.h
   M /trunk/epan/plugins.c
   M /trunk/epan/prefs.c
   M /trunk/epan/privileges.c
   M /trunk/epan/proto.c
   M /trunk/epan/proto.h
   M /trunk/epan/sigcomp-udvm.c
   M /trunk/epan/stats_tree.c
   M /trunk/epan/stats_tree.h
   M /trunk/epan/strutil.c
   M /trunk/epan/tap.c
   M /trunk/epan/xmlstub.c
   M /trunk/epan/xmlstub.h
   M /trunk/gtk/menu.c
   M /trunk/tools/checkhf.pl

Ethereal->Wireshark
------------------------------------------------------------------------
r18235 | etxrab | 2006-05-28 15:28:20 -0500 (Sun, 28 May 2006) | 1 line
Changed paths:
   M /trunk/alert_box.c
   M /trunk/capinfos.c
   M /trunk/capture-pcap-util.c
   M /trunk/capture-wpcap.c
   M /trunk/capture.c
   M /trunk/capture_errs.c
   M /trunk/capture_info.c
   M /trunk/capture_loop.c
   M /trunk/capture_loop.h
   M /trunk/capture_opts.c
   M /trunk/capture_sync.c
   M /trunk/capture_sync.h
   M /trunk/capture_wpcap_packet.c
   M /trunk/clopts_common.c
   M /trunk/clopts_common.h
   M /trunk/dumpcap.c
   M /trunk/editcap.c
   M /trunk/file.c
   M /trunk/isprint.h
   M /trunk/mergecap.c
   M /trunk/print.c
   M /trunk/rdps.c
   M /trunk/snprintf.h
   M /trunk/tap-afpstat.c
   M /trunk/tap-bootpstat.c
   M /trunk/tap-dcerpcstat.c
   M /trunk/tap-h225counter.c
   M /trunk/tap-h225rassrt.c
   M /trunk/tap-httpstat.c
   M /trunk/tap-iostat.c
   M /trunk/tap-iousers.c
   M /trunk/tap-mgcpstat.c
   M /trunk/tap-protocolinfo.c
   M /trunk/tap-protohierstat.c
   M /trunk/tap-rpcprogs.c
   M /trunk/tap-rpcstat.c
   M /trunk/tap-sctpchunkstat.c
   M /trunk/tap-sipstat.c
   M /trunk/tap-smbsids.c
   M /trunk/tap-smbstat.c
   M /trunk/tap-stats_tree.c
   M /trunk/tap-wspstat.c
   M /trunk/tethereal.c
   M /trunk/text2pcap.c
   M /trunk/version_info.c

Ethereal->Wireshark
------------------------------------------------------------------------
r18236 | etxrab | 2006-05-29 00:38:10 -0500 (Mon, 29 May 2006) | 1 line
Changed paths:
   M /trunk/print.ps

Ethereal->Wireshark
------------------------------------------------------------------------
r18237 | kukosa | 2006-05-29 07:59:33 -0500 (Mon, 29 May 2006) | 6 lines
Changed paths:
   M /trunk/tools/asn2wrs.py

- new directive #.VIRTUAL_ASSGN - making assign from type of any filed
- new directive #.SET_TYPE - enforce type for field
- T_... name is based on renamed field (if present) instead of original one
- report unused #.FN_HDR, #.FN_BODY, #.FN_FTR
- new directive #.TF_RENAME - renames type and field together
(example of usage will follow in H225 and H245 dissectors)
------------------------------------------------------------------------
r18238 | kukosa | 2006-05-29 08:06:44 -0500 (Mon, 29 May 2006) | 4 lines
Changed paths:
   A /trunk/asn1/h225/H323-MESSAGES.asn (from /trunk/asn1/h225/h225.asn:18236)
   M /trunk/asn1/h225/Makefile.nmake
   M /trunk/asn1/h225/h225-exp.cnf
   D /trunk/asn1/h225/h225.asn
   M /trunk/asn1/h225/h225.cnf
   M /trunk/asn1/h235/H235-SRTP.asn
   A /trunk/asn1/h245/MULTIMEDIA-SYSTEM-CONTROL.asn (from /trunk/asn1/h245/h245.asn:18236)
   M /trunk/asn1/h245/Makefile.nmake
   M /trunk/asn1/h245/h245-exp.cnf
   D /trunk/asn1/h245/h245.asn
   M /trunk/asn1/h245/h245.cnf
   M /trunk/epan/dissectors/packet-h225.c
   M /trunk/epan/dissectors/packet-h225.h
   M /trunk/epan/dissectors/packet-h245.c
   M /trunk/epan/dissectors/packet-h245.h
   M /trunk/epan/dissectors/packet-h450.c

- h225.asn renamed to H323-MESSAGES.asn
- h245.asn renamed to MULTIMEDIA-SYSTEM-CONTROL.asn
- rollback changes in .asn sources to keep them in original ITU-T form and put necessary changes into .cnf files
- PER dissectors regenerated
------------------------------------------------------------------------
r18239 | etxrab | 2006-05-29 11:32:08 -0500 (Mon, 29 May 2006) | 1 line
Changed paths:
   M /trunk/plugins/giop/packet-coseventcomm.c
   M /trunk/plugins/giop/packet-parlay.c
   M /trunk/plugins/giop/packet-tango.c
   M /trunk/tools/ethereal_be.py
   M /trunk/tools/ethereal_gen.py

Ethereal->Wireshark
------------------------------------------------------------------------
r18240 | etxrab | 2006-05-29 11:34:21 -0500 (Mon, 29 May 2006) | 1 line
Changed paths:
   D /trunk/tools/ethereal_be.py
   D /trunk/tools/ethereal_gen.py
   A /trunk/tools/wireshark_be.py (from /trunk/tools/ethereal_be.py:18239)
   A /trunk/tools/wireshark_gen.py (from /trunk/tools/ethereal_gen.py:18239)

Ethereal->Wireshark
------------------------------------------------------------------------
r18241 | etxrab | 2006-05-29 11:36:56 -0500 (Mon, 29 May 2006) | 1 line
Changed paths:
   D /trunk/idl2eth.sh
   A /trunk/tools/idl2eth.sh (from /trunk/idl2eth.sh:18238)

Move to tools
------------------------------------------------------------------------
r18242 | etxrab | 2006-05-29 11:44:25 -0500 (Mon, 29 May 2006) | 1 line
Changed paths:
   M /trunk/tools/idl2eth.sh

Ethereal->Wireshark
------------------------------------------------------------------------
r18243 | etxrab | 2006-05-29 11:45:34 -0500 (Mon, 29 May 2006) | 1 line
Changed paths:
   D /trunk/tools/idl2eth.sh
   A /trunk/tools/idl2wrs.sh (from /trunk/tools/idl2eth.sh:18242)

Ethereal->Wireshark
------------------------------------------------------------------------
r18244 | etxrab | 2006-05-29 13:13:55 -0500 (Mon, 29 May 2006) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-sip.c

From Martin Mathieson:
This version of the patch won't look for the authentication scheme (it 
just skips that part for Authentication-Info headers).  I tested it 
using the enclosed file (pasted from the RFC and fed through 
od/text2pcap, then messed around with so I could test the other new 
parameters, even if they don't really belong in that header...).
------------------------------------------------------------------------
r18245 | etxrab | 2006-05-29 13:16:23 -0500 (Mon, 29 May 2006) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-rtcp.c

From Martin Mathieson:
- shows profile-specific extension data at the end of SR/RR reports (if 
packet length has not yet been reached after parsing normal data) and 
advances offset (further packets were not recognised+dissected as this 
data wasn't being skipped).
------------------------------------------------------------------------
r18246 | etxrab | 2006-05-29 13:44:53 -0500 (Mon, 29 May 2006) | 1 line
Changed paths:
   M /trunk/config.nmake
   M /trunk/gtk/help_dlg.c
   M /trunk/gtk/menu.c

Ethereal->Wireshark
------------------------------------------------------------------------
r18248 | etxrab | 2006-05-29 15:44:06 -0500 (Mon, 29 May 2006) | 1 line
Changed paths:
   M /trunk/dtds/dc.dtd
   M /trunk/dtds/itunes.dtd
   M /trunk/dtds/reginfo.dtd
   M /trunk/dtds/rss.dtd
   M /trunk/dtds/smil.dtd
   M /trunk/epan/dtd_parse.l
   M /trunk/epan/dtd_preparse.l

Ethereal->Wireshark
------------------------------------------------------------------------
r18249 | gerald | 2006-05-29 16:10:23 -0500 (Mon, 29 May 2006) | 2 lines
Changed paths:
   A /trunk/image/wsicon.svg
   A /trunk/image/wsicon200.png

Add quick-and-dirty icons.

------------------------------------------------------------------------
r18250 | gerald | 2006-05-29 20:26:47 -0500 (Mon, 29 May 2006) | 2 lines
Changed paths:
   M /trunk/Makefile.nmake
   M /trunk/README.win32
   M /trunk/docbook/edg_src/EDG_chapter_libraries.xml

ETHEREAL_LIBS -> WIRESHARK_LIBS

------------------------------------------------------------------------
r18251 | gerald | 2006-05-29 21:49:36 -0500 (Mon, 29 May 2006) | 2 lines
Changed paths:
   A /trunk/image/wsicon16.png
   A /trunk/image/wsicon32.png
   A /trunk/image/wsicon48.png
   A /trunk/image/wsicon64.png

Add icons in common sizes.

------------------------------------------------------------------------
r18252 | gerald | 2006-05-29 21:55:56 -0500 (Mon, 29 May 2006) | 2 lines
Changed paths:
   M /trunk/image/ethereal.ico

Use the Wireshark icon.

------------------------------------------------------------------------
r18253 | gerald | 2006-05-30 08:19:30 -0500 (Tue, 30 May 2006) | 6 lines
Changed paths:
   M /trunk/image/capinfos.rc.in
   M /trunk/image/dumpcap.rc.in
   M /trunk/image/editcap.rc.in
   D /trunk/image/ethereal.ico
   M /trunk/image/ethereal.rc.in
   M /trunk/image/libethereal.rc.in
   M /trunk/image/mergecap.rc.in
   M /trunk/image/tethereal.rc.in
   M /trunk/image/text2pcap.rc.in
   A /trunk/image/wireshark.ico (from /trunk/image/ethereal.ico:18252)
   M /trunk/image/wiretap.rc.in
   M /trunk/packaging/nsis/Makefile.nmake
   M /trunk/packaging/nsis/ethereal.nsi

Transform ethereal.ico to wireshark.ico.  Update references accordingly.
Change the name of the Windows package to "wireshark-setup-..."  Other
Ethereal -> Wireshark updates.

We _really_ need a better Wireshark icon.

------------------------------------------------------------------------
r18254 | gerald | 2006-05-30 09:28:20 -0500 (Tue, 30 May 2006) | 2 lines
Changed paths:
   M /trunk/config.nmake
   M /trunk/docbook/edg_src/EDG_chapter_sources.xml
   M /trunk/gtk/win32-file-dlg.c
   M /trunk/packaging/nsis/Makefile.am
   M /trunk/packaging/nsis/Makefile.nmake
   D /trunk/packaging/nsis/ethereal.nsi
   A /trunk/packaging/nsis/wireshark.nsi (from /trunk/packaging/nsis/ethereal.nsi:18253)

ethereal.nsi -> wireshark.nsi

------------------------------------------------------------------------
r18255 | gerald | 2006-05-30 14:38:24 -0500 (Tue, 30 May 2006) | 2 lines
Changed paths:
   M /trunk/docbook/Makefile
   D /trunk/docbook/eth.css
   D /trunk/docbook/eug_src
   M /trunk/docbook/user-guide.xml
   A /trunk/docbook/ws.css (from /trunk/docbook/eth.css:18254)
   A /trunk/docbook/wsug_src (from /trunk/docbook/eug_src:18254)

Ethereal -> Wireshark

------------------------------------------------------------------------
r18256 | gerald | 2006-05-30 14:45:12 -0500 (Tue, 30 May 2006) | 2 lines
Changed paths:
   M /trunk/docbook/Makefile
   M /trunk/docbook/edg_src/EDG_chapter_build_intro.xml
   M /trunk/docbook/edg_src/EDG_chapter_capture.xml
   M /trunk/docbook/edg_src/EDG_chapter_dissection.xml
   M /trunk/docbook/edg_src/EDG_chapter_env_intro.xml
   M /trunk/docbook/edg_src/EDG_chapter_libraries.xml
   M /trunk/docbook/edg_src/EDG_chapter_sources.xml
   M /trunk/docbook/edg_src/EDG_chapter_tools.xml
   M /trunk/docbook/edg_src/EDG_chapter_userinterface.xml
   M /trunk/docbook/edg_src/EDG_chapter_works.xml
   M /trunk/docbook/user-guide.xml
   D /trunk/docbook/wsug_src/EUG_app_files.xml
   D /trunk/docbook/wsug_src/EUG_app_howitworks.xml
   D /trunk/docbook/wsug_src/EUG_app_messages.xml
   D /trunk/docbook/wsug_src/EUG_app_protocols.xml
   D /trunk/docbook/wsug_src/EUG_app_tools.xml
   D /trunk/docbook/wsug_src/EUG_chapter_advanced.xml
   D /trunk/docbook/wsug_src/EUG_chapter_build_install.xml
   D /trunk/docbook/wsug_src/EUG_chapter_capture.xml
   D /trunk/docbook/wsug_src/EUG_chapter_customize.xml
   D /trunk/docbook/wsug_src/EUG_chapter_introduction.xml
   D /trunk/docbook/wsug_src/EUG_chapter_io.xml
   D /trunk/docbook/wsug_src/EUG_chapter_statistics.xml
   D /trunk/docbook/wsug_src/EUG_chapter_troubleshoot.xml
   D /trunk/docbook/wsug_src/EUG_chapter_use.xml
   D /trunk/docbook/wsug_src/EUG_chapter_work.xml
   D /trunk/docbook/wsug_src/EUG_meta_info.xml
   D /trunk/docbook/wsug_src/EUG_preface.xml
   A /trunk/docbook/wsug_src/WSUG_app_files.xml (from /trunk/docbook/wsug_src/EUG_app_files.xml:18255)
   A /trunk/docbook/wsug_src/WSUG_app_howitworks.xml (from /trunk/docbook/wsug_src/EUG_app_howitworks.xml:18255)
   A /trunk/docbook/wsug_src/WSUG_app_messages.xml (from /trunk/docbook/wsug_src/EUG_app_messages.xml:18255)
   A /trunk/docbook/wsug_src/WSUG_app_protocols.xml (from /trunk/docbook/wsug_src/EUG_app_protocols.xml:18255)
   A /trunk/docbook/wsug_src/WSUG_app_tools.xml (from /trunk/docbook/wsug_src/EUG_app_tools.xml:18255)
   A /trunk/docbook/wsug_src/WSUG_chapter_advanced.xml (from /trunk/docbook/wsug_src/EUG_chapter_advanced.xml:18255)
   A /trunk/docbook/wsug_src/WSUG_chapter_build_install.xml (from /trunk/docbook/wsug_src/EUG_chapter_build_install.xml:18255)
   A /trunk/docbook/wsug_src/WSUG_chapter_capture.xml (from /trunk/docbook/wsug_src/EUG_chapter_capture.xml:18255)
   A /trunk/docbook/wsug_src/WSUG_chapter_customize.xml (from /trunk/docbook/wsug_src/EUG_chapter_customize.xml:18255)
   A /trunk/docbook/wsug_src/WSUG_chapter_introduction.xml (from /trunk/docbook/wsug_src/EUG_chapter_introduction.xml:18255)
   A /trunk/docbook/wsug_src/WSUG_chapter_io.xml (from /trunk/docbook/wsug_src/EUG_chapter_io.xml:18255)
   A /trunk/docbook/wsug_src/WSUG_chapter_statistics.xml (from /trunk/docbook/wsug_src/EUG_chapter_statistics.xml:18255)
   A /trunk/docbook/wsug_src/WSUG_chapter_troubleshoot.xml (from /trunk/docbook/wsug_src/EUG_chapter_troubleshoot.xml:18255)
   A /trunk/docbook/wsug_src/WSUG_chapter_use.xml (from /trunk/docbook/wsug_src/EUG_chapter_use.xml:18255)
   A /trunk/docbook/wsug_src/WSUG_chapter_work.xml (from /trunk/docbook/wsug_src/EUG_chapter_work.xml:18255)
   A /trunk/docbook/wsug_src/WSUG_meta_info.xml (from /trunk/docbook/wsug_src/EUG_meta_info.xml:18255)
   A /trunk/docbook/wsug_src/WSUG_preface.xml (from /trunk/docbook/wsug_src/EUG_preface.xml:18255)

EUG -> WSUG

------------------------------------------------------------------------
r18257 | gerald | 2006-05-30 15:49:45 -0500 (Tue, 30 May 2006) | 4 lines
Changed paths:
   M /trunk/docbook/Makefile
   M /trunk/docbook/developer-guide.xml
   D /trunk/docbook/edg_graphics/ethereal-logo.png
   A /trunk/docbook/edg_graphics/wireshark-logo.png (from /trunk/docbook/edg_graphics/ethereal-logo.png:18254)
   D /trunk/docbook/graphics/ethereal-logo.png
   D /trunk/docbook/graphics/ethereal-main.png
   A /trunk/docbook/graphics/wireshark-logo.png (from /trunk/docbook/graphics/ethereal-logo.png:18254)
   A /trunk/docbook/graphics/wireshark-main.png (from /trunk/docbook/graphics/ethereal-main.png:18254)
   M /trunk/docbook/user-guide.xml
   M /trunk/docbook/wsug_src/WSUG_app_files.xml
   M /trunk/docbook/wsug_src/WSUG_app_howitworks.xml
   M /trunk/docbook/wsug_src/WSUG_app_messages.xml
   M /trunk/docbook/wsug_src/WSUG_app_protocols.xml
   M /trunk/docbook/wsug_src/WSUG_app_tools.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_advanced.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_build_install.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_capture.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_customize.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_introduction.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_io.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_statistics.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_troubleshoot.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_use.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_work.xml
   M /trunk/docbook/wsug_src/WSUG_meta_info.xml
   M /trunk/docbook/wsug_src/WSUG_preface.xml

Ethereal -> Wireshark in the User's Guide.  Switch over to the new logo.  
We'll probably want to use a vectorized version of the logo (e.g. EPS or 
SVG) at some point.

------------------------------------------------------------------------
r18258 | etxrab | 2006-05-30 15:52:43 -0500 (Tue, 30 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/ulp/packet-ulp-template.c
   M /trunk/epan/dissectors/packet-ulp.c

Preparations for reassembly. Currently there is a problem with the rrlp dissector...
------------------------------------------------------------------------
r18259 | gerald | 2006-05-30 16:34:56 -0500 (Tue, 30 May 2006) | 2 lines
Changed paths:
   M /trunk/docbook/Makefile
   M /trunk/docbook/Makefile.auto.am
   M /trunk/docbook/README.txt

eug -> wsug

------------------------------------------------------------------------
r18260 | gerald | 2006-05-30 19:23:01 -0500 (Tue, 30 May 2006) | 3 lines
Changed paths:
   M /trunk/INSTALL
   M /trunk/Makefile.am
   M /trunk/Makefile.nmake
   M /trunk/README.macos
   M /trunk/config.h.win32
   M /trunk/config.nmake
   M /trunk/configure.in
   M /trunk/debian/ethereal-common.files
   M /trunk/debian/ethereal-dev.docs
   M /trunk/debian/ethereal-dev.files
   M /trunk/debian/ethereal-dev.manpages
   M /trunk/debian/patches/00list
   M /trunk/doc/Makefile.am
   M /trunk/doc/Makefile.nmake
   D /trunk/doc/README.idl2eth
   A /trunk/doc/README.idl2wrs (from /trunk/doc/README.idl2eth:18259)
   D /trunk/doc/idl2eth.pod
   A /trunk/doc/idl2wrs.pod (from /trunk/doc/idl2eth.pod:18259)
   M /trunk/docbook/edg_src/EDG_chapter_dissection.xml
   M /trunk/docbook/wsug_src/WSUG_app_tools.xml
   M /trunk/docbook/wsug_src/WSUG_preface.xml
   M /trunk/epan/Makefile.am
   M /trunk/epan/Makefile.common
   M /trunk/epan/Makefile.nmake
   M /trunk/epan/dfilter/dfilter.h
   M /trunk/epan/dissectors/Makefile.am
   M /trunk/epan/dissectors/Makefile.nmake
   M /trunk/epan/dissectors/dcerpc/budb/Makefile
   M /trunk/epan/dissectors/dcerpc/budb/budb.idl
   M /trunk/epan/dissectors/dcerpc/butc/Makefile
   M /trunk/epan/dissectors/dcerpc/butc/butc.idl
   M /trunk/epan/dissectors/dcerpc/drsuapi/Makefile
   M /trunk/epan/dissectors/dcerpc/efs/Makefile
   M /trunk/epan/dissectors/dcerpc/efs/efs.idl
   D /trunk/epan/dissectors/dcerpc/idl2eth.c
   A /trunk/epan/dissectors/dcerpc/idl2wrs.c (from /trunk/epan/dissectors/dcerpc/idl2eth.c:18259)
   M /trunk/epan/dissectors/packet-giop.h
   M /trunk/epan/dissectors/packet-icep.c
   M /trunk/epan/dissectors/packet-ncp2222.inc
   M /trunk/epan/epan.c
   M /trunk/epan/filesystem.c
   M /trunk/epan/ftypes/ftypes.h
   D /trunk/epan/libethereal.def
   A /trunk/epan/libwireshark.def (from /trunk/epan/libethereal.def:18254)
   M /trunk/gtk/follow_dlg.c
   M /trunk/image/Makefile.nmake
   D /trunk/image/libethereal.rc.in
   A /trunk/image/libwireshark.rc.in (from /trunk/image/libethereal.rc.in:18254)
   M /trunk/packaging/nsis/Makefile.nmake
   M /trunk/packaging/nsis/wireshark.nsi
   M /trunk/plugins/Makefile.nmake
   M /trunk/plugins/acn/Makefile.nmake
   M /trunk/plugins/agentx/Makefile.nmake
   M /trunk/plugins/artnet/Makefile.nmake
   M /trunk/plugins/asn1/Makefile.nmake
   M /trunk/plugins/ciscosm/Makefile.nmake
   M /trunk/plugins/docsis/Makefile.nmake
   M /trunk/plugins/enttec/Makefile.nmake
   M /trunk/plugins/giop/Makefile.nmake
   M /trunk/plugins/giop/README
   M /trunk/plugins/giop/packet-coseventcomm.c
   M /trunk/plugins/giop/packet-cosnaming.c
   M /trunk/plugins/giop/packet-parlay.c
   M /trunk/plugins/giop/packet-tango.c
   M /trunk/plugins/gryphon/Makefile.nmake
   M /trunk/plugins/h223/Makefile.nmake
   M /trunk/plugins/irda/Makefile.nmake
   M /trunk/plugins/lua/Makefile.nmake
   M /trunk/plugins/lwres/Makefile.nmake
   M /trunk/plugins/mate/Makefile.nmake
   M /trunk/plugins/megaco/Makefile.nmake
   M /trunk/plugins/mgcp/Makefile.nmake
   M /trunk/plugins/opsi/Makefile.nmake
   M /trunk/plugins/pcli/Makefile.nmake
   M /trunk/plugins/profinet/Makefile.nmake
   M /trunk/plugins/rdm/Makefile.nmake
   M /trunk/plugins/rlm/Makefile.nmake
   M /trunk/plugins/rtnet/Makefile.nmake
   M /trunk/plugins/rudp/Makefile.nmake
   M /trunk/plugins/stats_tree/Makefile.nmake
   M /trunk/plugins/tpg/Makefile.nmake
   M /trunk/plugins/v5ua/Makefile.nmake
   M /trunk/tools/Makefile.am
   M /trunk/tools/lemon/Makefile.am
   M /trunk/tools/make-dissector-reg
   M /trunk/tools/make-dissector-reg.py
   M /trunk/tools/pidl/lib/Parse/Pidl/Ethereal/NDR.pm
   M /trunk/tools/tpg/Makefile.am
   M /trunk/tools/wireshark_gen.py

libethereal -> libwireshark.  idl2eth -> idl2wrs.  There are a _lot_ of
changes here.  It compiles OK on OS X, but hasn't been tested anywhere else.

------------------------------------------------------------------------
r18261 | etxrab | 2006-05-30 23:52:33 -0500 (Tue, 30 May 2006) | 1 line
Changed paths:
   A /trunk/asn1/ranap/ranap-exp.cnf
   A /trunk/asn1/snmp/snmp-exp.cnf
   A /trunk/asn1/ulp/ulp-exp.cnf

Add some missing *-exp-cnf files
------------------------------------------------------------------------
r18262 | kukosa | 2006-05-31 02:33:47 -0500 (Wed, 31 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/h245/MULTIMEDIA-SYSTEM-CONTROL.asn
   M /trunk/asn1/h245/h245.cnf
   M /trunk/epan/dissectors/packet-h245.c

H.245 update to version 12 (10/2005)
------------------------------------------------------------------------
r18263 | sahlberg | 2006-05-31 06:15:45 -0500 (Wed, 31 May 2006) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-tcp.c

improve the tcp retransmission vs outoforder heuristics to address the issue in PeterBruno's email of may18


dont reply to mailinglist that issue has been resolved since "ethereal" is still in limbo


------------------------------------------------------------------------
r18264 | kukosa | 2006-05-31 08:38:10 -0500 (Wed, 31 May 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-per.c

get rid of few warnings in packet-per.c
------------------------------------------------------------------------
r18265 | tuexen | 2006-05-31 08:41:35 -0500 (Wed, 31 May 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-asap.c
   M /trunk/epan/dissectors/packet-enrp.c

Editorial fixes from Thomas Dreibholz.

------------------------------------------------------------------------
r18266 | gerald | 2006-05-31 10:00:02 -0500 (Wed, 31 May 2006) | 3 lines
Changed paths:
   M /trunk/Makefile.am

Fix building idl2wrs (after looking through previous versions of Makefile.am
it's not apparent how it was working before).

------------------------------------------------------------------------
r18267 | tuexen | 2006-05-31 10:26:41 -0500 (Wed, 31 May 2006) | 2 lines
Changed paths:
   M /trunk/gtk/sctp_byte_graph_dlg.c
   M /trunk/gtk/sctp_graph_dlg.c
   M /trunk/gtk/sctp_stat.h

Fixes the handling of long term captures from a simulation tool.

------------------------------------------------------------------------
r18268 | gerald | 2006-05-31 12:38:42 -0500 (Wed, 31 May 2006) | 2 lines
Changed paths:
   M /trunk/FAQ
   M /trunk/INSTALL
   M /trunk/Makefile.am
   M /trunk/Makefile.common
   M /trunk/Makefile.nmake
   M /trunk/README.bsd
   M /trunk/README.hpux
   M /trunk/README.linux
   M /trunk/README.macos
   M /trunk/README.win32
   M /trunk/capture-wpcap.c
   M /trunk/capture_info.c
   M /trunk/capture_loop.c
   M /trunk/capture_loop.h
   M /trunk/capture_opts.c
   M /trunk/capture_wpcap_packet.c
   M /trunk/clopts_common.c
   M /trunk/clopts_common.h
   M /trunk/configure.in
   M /trunk/debian/rules
   D /trunk/debian/tethereal.files
   D /trunk/debian/tethereal.manpages
   A /trunk/debian/tshark.files (from /trunk/debian/tethereal.files:18267)
   A /trunk/debian/tshark.manpages (from /trunk/debian/tethereal.manpages:18267)
   M /trunk/doc/Makefile.am
   M /trunk/doc/Makefile.nmake
   M /trunk/doc/README.developer
   M /trunk/doc/README.regression
   M /trunk/doc/README.stats_tree
   M /trunk/doc/README.tapping
   M /trunk/doc/README.xml-output
   M /trunk/doc/capinfos.pod
   M /trunk/doc/dumpcap.pod
   M /trunk/doc/ethereal-filter.pod.template
   M /trunk/doc/ethereal.pod
   D /trunk/doc/tethereal.pod
   A /trunk/doc/tshark.pod (from /trunk/doc/tethereal.pod:18267)
   M /trunk/docbook/edg_src/EDG_chapter_userinterface.xml
   M /trunk/docbook/release-notes.xml
   M /trunk/docbook/wsug_src/WSUG_app_tools.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_build_install.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_customize.xml
   M /trunk/epan/addr_resolv.h
   M /trunk/epan/dissectors/packet-http.c
   M /trunk/epan/dissectors/packet-mdshdr.c
   M /trunk/epan/dissectors/packet-smb-sidsnooping.c
   M /trunk/epan/emem.c
   M /trunk/epan/filesystem.c
   M /trunk/epan/privileges.c
   M /trunk/epan/stats_tree.c
   M /trunk/gtk/dcerpc_stat.c
   M /trunk/gtk/help_dlg.c
   M /trunk/gtk/help_dlg.h
   M /trunk/gtk/main.c
   M /trunk/gtk/menu.c
   M /trunk/gtk/rpc_progs.c
   M /trunk/help/capturing.txt
   M /trunk/help/faq.txt
   M /trunk/image/Makefile.nmake
   M /trunk/image/README.image
   D /trunk/image/tethereal.rc.in
   A /trunk/image/tshark.rc.in (from /trunk/image/tethereal.rc.in:18267)
   M /trunk/packaging/nsis/Makefile.nmake
   M /trunk/packaging/nsis/wireshark.nsi
   M /trunk/plugins/asn1/packet-asn1.c
   M /trunk/plugins/lua/elua_gui.c
   M /trunk/plugins/lua/elua_tap.c
   M /trunk/tap-afpstat.c
   M /trunk/tap-bootpstat.c
   M /trunk/tap-dcerpcstat.c
   M /trunk/tap-h225counter.c
   M /trunk/tap-h225rassrt.c
   M /trunk/tap-httpstat.c
   M /trunk/tap-iostat.c
   M /trunk/tap-iousers.c
   M /trunk/tap-mgcpstat.c
   M /trunk/tap-protocolinfo.c
   M /trunk/tap-protohierstat.c
   M /trunk/tap-rpcprogs.c
   M /trunk/tap-rpcstat.c
   M /trunk/tap-sctpchunkstat.c
   M /trunk/tap-sipstat.c
   M /trunk/tap-smbsids.c
   M /trunk/tap-smbstat.c
   M /trunk/tap-stats_tree.c
   M /trunk/tap-wspstat.c
   M /trunk/test/README.test
   M /trunk/test/config.sh
   M /trunk/test/suite-capture.sh
   M /trunk/test/suite-clopts.sh
   M /trunk/test/suite-io.sh
   M /trunk/test/test.sh
   D /trunk/tethereal.c
   M /trunk/tools/EtherealXML.py
   M /trunk/tools/dfilter-test.py
   M /trunk/tools/ftsanity.py
   M /trunk/tools/fuzz-test.sh
   M /trunk/tools/msnchat
   M /trunk/tools/pkt-from-core.py
   A /trunk/tshark.c (from /trunk/tethereal.c:18267)
   M /trunk/wiretap/nettl.c

Tethereal/tethereal -> TShark/tshark.

------------------------------------------------------------------------
r18270 | etxrab | 2006-05-31 14:03:35 -0500 (Wed, 31 May 2006) | 1 line
Changed paths:
   M /trunk/diameter/dictionary.xml

Update 3GPP AVP:s
------------------------------------------------------------------------
r18271 | gerald | 2006-05-31 14:12:15 -0500 (Wed, 31 May 2006) | 9 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/FAQ
   M /trunk/INSTALL
   M /trunk/Makefile.am
   M /trunk/Makefile.common
   M /trunk/Makefile.nmake
   M /trunk/README.win32
   M /trunk/acinclude.m4
   M /trunk/cfilters
   M /trunk/configure.in
   M /trunk/debian/ethereal-common.manpages
   M /trunk/debian/rules
   M /trunk/doc/Makefile.am
   M /trunk/doc/Makefile.nmake
   M /trunk/doc/README.binarytrees
   M /trunk/doc/README.capture
   M /trunk/doc/README.design
   M /trunk/doc/README.developer
   M /trunk/doc/README.idl2wrs
   M /trunk/doc/README.malloc
   M /trunk/doc/README.packaging
   M /trunk/doc/README.plugins
   M /trunk/doc/README.regression
   M /trunk/doc/README.stats_tree
   M /trunk/doc/README.tapping
   M /trunk/doc/README.xml-output
   M /trunk/doc/capinfos.pod
   M /trunk/doc/dfilter2pod.pl
   M /trunk/doc/dumpcap.pod
   M /trunk/doc/editcap.pod
   M /trunk/doc/eproto2sgml
   D /trunk/doc/ethereal-filter.pod.template
   D /trunk/doc/ethereal.pod
   M /trunk/doc/idl2wrs.pod
   M /trunk/doc/mergecap.pod
   M /trunk/doc/randpkt.txt
   M /trunk/doc/text2pcap.pod
   M /trunk/doc/tshark.pod
   A /trunk/doc/wireshark-filter.pod.template (from /trunk/doc/ethereal-filter.pod.template:18268)
   A /trunk/doc/wireshark.pod (from /trunk/doc/ethereal.pod:18268)
   M /trunk/docbook/catalog.xml
   M /trunk/docbook/developer-guide.xml
   M /trunk/docbook/edg_src/EDG_chapter_env_intro.xml
   M /trunk/docbook/edg_src/EDG_chapter_libraries.xml
   M /trunk/docbook/edg_src/EDG_chapter_sources.xml
   M /trunk/docbook/edg_src/EDG_chapter_tools.xml
   M /trunk/docbook/release-notes.xml
   M /trunk/docbook/wsug_src/WSUG_app_files.xml
   M /trunk/docbook/wsug_src/WSUG_app_tools.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_advanced.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_build_install.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_capture.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_introduction.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_statistics.xml
   M /trunk/doxygen.cfg.in
   M /trunk/epan/dfilter/README.dfilter
   M /trunk/epan/dissectors/pidl/packet-dcerpc-atsvc.c
   M /trunk/epan/dissectors/pidl/packet-dcerpc-atsvc.h
   M /trunk/epan/dissectors/pidl/packet-dcerpc-initshutdown.c
   M /trunk/epan/dissectors/pidl/packet-dcerpc-initshutdown.h
   M /trunk/epan/dissectors/pidl/packet-dcerpc-winreg.c
   M /trunk/epan/dissectors/pidl/packet-dcerpc-winreg.h
   M /trunk/epan/doxygen.cfg.in
   D /trunk/ethereal.desktop
   M /trunk/gtk/Makefile.am
   M /trunk/gtk/Makefile.common
   M /trunk/gtk/Makefile.nmake
   M /trunk/gtk/doxygen.cfg.in
   M /trunk/gtk/gui_utils.c
   M /trunk/gtk/win32-file-dlg.c
   M /trunk/help/faq.txt
   M /trunk/help/getting_started.txt
   M /trunk/help/overview.txt
   M /trunk/image/win32-file-dlg.rc
   M /trunk/make-faq
   M /trunk/manuf
   M /trunk/manuf.tmpl
   M /trunk/packaging/nsis/Makefile.nmake
   M /trunk/packaging/nsis/WinPcapPage.ini
   M /trunk/packaging/nsis/wireshark.nsi
   D /trunk/packaging/rpm/SPECS/ethereal.spec.in
   A /trunk/packaging/rpm/SPECS/wireshark.spec.in (from /trunk/packaging/rpm/SPECS/ethereal.spec.in:18267)
   M /trunk/test/config.sh
   M /trunk/test/suite-capture.sh
   M /trunk/test/suite-io.sh
   M /trunk/test/test.sh
   D /trunk/tools/EtherealXML.py
   A /trunk/tools/WiresharkXML.py (from /trunk/tools/EtherealXML.py:18268)
   M /trunk/tools/fuzz-test.sh
   M /trunk/tools/idl2wrs.sh
   D /trunk/tools/pidl/lib/Parse/Pidl/Ethereal
   A /trunk/tools/pidl/lib/Parse/Pidl/Wireshark (from /trunk/tools/pidl/lib/Parse/Pidl/Ethereal:18267)
   M /trunk/tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm
   M /trunk/tools/pidl/pidl
   A /trunk/wireshark.desktop (from /trunk/ethereal.desktop:18267)
   M /trunk/wiretap/AUTHORS
   M /trunk/wiretap/README
   M /trunk/wka.tmpl

Rename the main executable to "wireshark", along with more conversions:

  ethereal.com -> wireshark.org
  mailing lists and addresses
  ETHEREAL -> WIRESHARK
  Man pages
  Automake/Autoconf names


------------------------------------------------------------------------
r18277 | gerald | 2006-05-31 15:05:54 -0500 (Wed, 31 May 2006) | 2 lines
Changed paths:
   M /trunk/Makefile.am
   M /trunk/image/README.image
   D /trunk/image/eexcl3d64.xpm
   D /trunk/image/ethereal.exe.manifest.in
   D /trunk/image/ethereal.rc.in
   D /trunk/image/icon-ethereal.xpm
   D /trunk/image/icon-excl.xpm
   A /trunk/image/wireshark.exe.manifest.in (from /trunk/image/ethereal.exe.manifest.in:18270)
   A /trunk/image/wireshark.rc.in (from /trunk/image/ethereal.rc.in:18270)

Rename the manifest file.  Remove some unused images.

------------------------------------------------------------------------
r18278 | tuexen | 2006-05-31 15:21:45 -0500 (Wed, 31 May 2006) | 2 lines
Changed paths:
   M /trunk/autogen.sh

Ethereal->wireshark

------------------------------------------------------------------------
r18279 | etxrab | 2006-05-31 15:22:51 -0500 (Wed, 31 May 2006) | 1 line
Changed paths:
   M /trunk/asn1/rrlp/rrlp.cnf
   M /trunk/asn1/ulp/packet-ulp-template.c
   M /trunk/epan/dissectors/packet-rrlp.c
   M /trunk/epan/dissectors/packet-ulp.c

Complete reasembly code.
------------------------------------------------------------------------
r18281 | gerald | 2006-05-31 15:28:29 -0500 (Wed, 31 May 2006) | 2 lines
Changed paths:
   D /trunk/debian/ethereal-common.files
   D /trunk/debian/ethereal-common.manpages
   D /trunk/debian/ethereal-dev.docs
   D /trunk/debian/ethereal-dev.files
   D /trunk/debian/ethereal-dev.header-files
   D /trunk/debian/ethereal-dev.manpages
   D /trunk/debian/ethereal-dev.postinst
   D /trunk/debian/ethereal-dev.prerm
   D /trunk/debian/ethereal-root.desktop
   D /trunk/debian/ethereal.files
   D /trunk/debian/ethereal.manpages
   D /trunk/debian/ethereal.menu
   A /trunk/debian/wireshark-common.files (from /trunk/debian/ethereal-common.files:18270)
   A /trunk/debian/wireshark-common.manpages (from /trunk/debian/ethereal-common.manpages:18271)
   A /trunk/debian/wireshark-dev.docs (from /trunk/debian/ethereal-dev.docs:18270)
   A /trunk/debian/wireshark-dev.files (from /trunk/debian/ethereal-dev.files:18270)
   A /trunk/debian/wireshark-dev.header-files (from /trunk/debian/ethereal-dev.header-files:18270)
   A /trunk/debian/wireshark-dev.manpages (from /trunk/debian/ethereal-dev.manpages:18270)
   A /trunk/debian/wireshark-dev.postinst (from /trunk/debian/ethereal-dev.postinst:18270)
   A /trunk/debian/wireshark-dev.prerm (from /trunk/debian/ethereal-dev.prerm:18270)
   A /trunk/debian/wireshark-root.desktop (from /trunk/debian/ethereal-root.desktop:18270)
   A /trunk/debian/wireshark.files (from /trunk/debian/ethereal.files:18270)
   A /trunk/debian/wireshark.manpages (from /trunk/debian/ethereal.manpages:18270)
   A /trunk/debian/wireshark.menu (from /trunk/debian/ethereal.menu:18270)

Rename the Debian packaging files.

------------------------------------------------------------------------
r18283 | gerald | 2006-05-31 15:32:52 -0500 (Wed, 31 May 2006) | 2 lines
Changed paths:
   M /trunk/Makefile.am
   M /trunk/README.win32
   M /trunk/image/Makefile.nmake

ethereal.rc -> wireshark.rc

------------------------------------------------------------------------
r18285 | gerald | 2006-05-31 15:39:01 -0500 (Wed, 31 May 2006) | 2 lines
Changed paths:
   M /trunk/image/Makefile.nmake

Fix manifest name.

------------------------------------------------------------------------
r18290 | jake | 2006-05-31 16:49:26 -0500 (Wed, 31 May 2006) | 1 line
Changed paths:
   M /trunk/docbook/user-guide.xml
   M /trunk/docbook/wsug_src/WSUG_app_tools.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_advanced.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_build_install.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_capture.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_customize.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_introduction.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_statistics.xml
   M /trunk/docbook/wsug_src/WSUG_preface.xml

Further cleanup of Wireshark User Guide
------------------------------------------------------------------------
r18292 | gerald | 2006-05-31 17:34:21 -0500 (Wed, 31 May 2006) | 2 lines
Changed paths:
   M /trunk/INSTALL
   M /trunk/Makefile.am
   M /trunk/Makefile.common
   M /trunk/README.win32
   M /trunk/config.h.win32
   M /trunk/config.nmake
   M /trunk/configure.in
   M /trunk/make-version.pl
   M /trunk/wireshark.desktop

More ethereal -> wireshark.

------------------------------------------------------------------------
r18294 | gerald | 2006-05-31 17:51:38 -0500 (Wed, 31 May 2006) | 2 lines
Changed paths:
   M /trunk/gtk/about_dlg.c
   A /trunk/image/wssplash.xpm

Add a new splash image.

------------------------------------------------------------------------
r18298 | gerald | 2006-05-31 18:20:27 -0500 (Wed, 31 May 2006) | 2 lines
Changed paths:
   M /trunk/Makefile.am

Add the Wireshark logos and icons to the distribution.

------------------------------------------------------------------------
r18299 | sahlberg | 2006-06-01 05:16:43 -0500 (Thu, 01 Jun 2006) | 13 lines
Changed paths:
   M /trunk/epan/dissectors/packet-per.c

the very recently added unaligned-per support and the ulp dissector could cause an infinite loop in dissect_per_constrained_integer()
if the interval spans the entire 32 bit range.


special case the two common cases when this may happen  until a real fix is included.

if the range variable becomes 0 due to 32bit overflow   do a g_assert_not_reached to prevent an infinite loop.



this function should be enhanced to work with 64 bit integers.


------------------------------------------------------------------------
r18300 | tuexen | 2006-06-01 05:41:29 -0500 (Thu, 01 Jun 2006) | 2 lines
Changed paths:
   M /trunk/configure.in

Ethereal->Wireshark

------------------------------------------------------------------------
r18302 | gerald | 2006-06-01 09:28:13 -0500 (Thu, 01 Jun 2006) | 2 lines
Changed paths:
   M /trunk/Makefile.am
   M /trunk/packaging/rpm/SPECS/Makefile.am
   M /trunk/tools/Makefile.am

Fix dist/distcheck.

------------------------------------------------------------------------
r18304 | etxrab | 2006-06-01 15:19:51 -0500 (Thu, 01 Jun 2006) | 9 lines
Changed paths:
   M /trunk/asn1/h225/h225.cnf
   M /trunk/epan/dissectors/packet-h225.c
   M /trunk/gtk/voip_calls.c

From Cvetan Ivanov: 
H225.cnf
I noticed is that the voip call flow graph does not have a label for the setupAck packet. I traced this to the empty frame_label.

voip_calls.c
It seems to me that in gtk/voip_calls.c tmp_h323info->guid is pointer itself, therefore: 
memcmp(&tmp_h323info->guid 
should in fact read: 
memcmp(tmp_h323info->guid
------------------------------------------------------------------------
r18305 | jake | 2006-06-01 15:40:22 -0500 (Thu, 01 Jun 2006) | 2 lines
Changed paths:
   M /trunk/doc/wireshark.pod

Document option to hide the capture info dialog

------------------------------------------------------------------------
r18306 | gerald | 2006-06-01 22:10:55 -0500 (Thu, 01 Jun 2006) | 2 lines
Changed paths:
   M /trunk/docbook/wsug_src/WSUG_app_files.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_build_install.xml

More ethereal->wireshark

------------------------------------------------------------------------
r18307 | etxrab | 2006-06-02 00:02:54 -0500 (Fri, 02 Jun 2006) | 1 line
Changed paths:
   M /trunk/asn1/gsmmap/packet-gsm_map-template.c
   M /trunk/epan/dissectors/packet-gsm_map.c

Correct dissect_geographical_description.
------------------------------------------------------------------------
r18308 | etxrab | 2006-06-02 00:31:41 -0500 (Fri, 02 Jun 2006) | 2 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/Makefile.common

From Kees Cook:
A dissector for "TiVoConnect Beacon" traffic.
------------------------------------------------------------------------
r18309 | kukosa | 2006-06-02 00:43:38 -0500 (Fri, 02 Jun 2006) | 1 line
Changed paths:
   M /trunk/Makefile.am
   M /trunk/debian/rules
   M /trunk/debian/wireshark.menu
   M /trunk/gtk/gui_utils.c
   M /trunk/gtk/main.c
   M /trunk/gtk/toolbar.c
   M /trunk/image/README.image
   D /trunk/image/eicon3d16.xpm
   D /trunk/image/eicon3d32.xpm
   D /trunk/image/eicon3d48.xpm
   D /trunk/image/eicon3d64.xpm
   A /trunk/image/wsicon16.xpm
   A /trunk/image/wsicon32.xpm
   A /trunk/image/wsicon48.xpm
   A /trunk/image/wsicon64.xpm

eicon3d*.xpm -> wsicon*.xpm
------------------------------------------------------------------------
r18310 | jmayer | 2006-06-02 01:50:57 -0500 (Fri, 02 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/plugins.c
   M /trunk/tshark.c

image/wireshark.rc.in
------------------------------------------------------------------------
r18311 | jmayer | 2006-06-02 01:51:26 -0500 (Fri, 02 Jun 2006) | 1 line
Changed paths:
   M /trunk/image/wireshark.rc.in

It's wireshark.org, not wireshark.com
------------------------------------------------------------------------
r18312 | jmayer | 2006-06-02 01:53:30 -0500 (Fri, 02 Jun 2006) | 1 line
Changed paths:
   M /trunk/plugins/acn/Makefile.am
   M /trunk/plugins/agentx/Makefile.am
   M /trunk/plugins/artnet/Makefile.am
   M /trunk/plugins/asn1/Makefile.am
   M /trunk/plugins/ciscosm/Makefile.am
   M /trunk/plugins/docsis/Makefile.am
   M /trunk/plugins/enttec/Makefile.am
   M /trunk/plugins/giop/Makefile.am
   M /trunk/plugins/gryphon/Makefile.am
   M /trunk/plugins/h223/Makefile.am
   M /trunk/plugins/irda/Makefile.am
   M /trunk/plugins/lua/Makefile.am
   M /trunk/plugins/lwres/Makefile.am
   M /trunk/plugins/mate/Makefile.am
   M /trunk/plugins/megaco/Makefile.am
   M /trunk/plugins/mgcp/Makefile.am
   M /trunk/plugins/opsi/Makefile.am
   M /trunk/plugins/pcli/Makefile.am
   M /trunk/plugins/profinet/Makefile.am
   M /trunk/plugins/rdm/Makefile.am
   M /trunk/plugins/rlm/Makefile.am
   M /trunk/plugins/rtnet/Makefile.am
   M /trunk/plugins/rudp/Makefile.am
   M /trunk/plugins/stats_tree/Makefile.am
   M /trunk/plugins/tpg/Makefile.am
   M /trunk/plugins/v5ua/Makefile.am

remove plugin.c in distlclean
------------------------------------------------------------------------
r18313 | jmayer | 2006-06-02 01:55:32 -0500 (Fri, 02 Jun 2006) | 1 line
Changed paths:
   M /trunk
   M /trunk/doc
   M /trunk/gtk
   M /trunk/packaging/rpm/SPECS

update svn:ignore ethereal->wireshark
------------------------------------------------------------------------
r18314 | jmayer | 2006-06-02 02:11:11 -0500 (Fri, 02 Jun 2006) | 1 line
Changed paths:
   A /trunk/epan/dissectors/packet-tivoconnect.c

The actual file packet-tivoconnect.c was missing
------------------------------------------------------------------------
r18315 | ulfl | 2006-06-02 03:44:40 -0500 (Fri, 02 Jun 2006) | 1 line
Changed paths:
   M /trunk/COPYING

eth->ws
------------------------------------------------------------------------
r18316 | ulfl | 2006-06-02 03:48:07 -0500 (Fri, 02 Jun 2006) | 1 line
Changed paths:
   M /trunk/packaging/nsis/AdditionalTasksPage.ini

eth -> ws
------------------------------------------------------------------------
r18317 | gerald | 2006-06-02 08:15:40 -0500 (Fri, 02 Jun 2006) | 3 lines
Changed paths:
   M /trunk/docbook/Makefile

Adjust the value of "FOP" to make the new buildbot happy.  Tweak some
comments.

------------------------------------------------------------------------
r18318 | etxrab | 2006-06-02 11:58:22 -0500 (Fri, 02 Jun 2006) | 1 line
Changed paths:
   M /trunk/asn1/gsmmap/packet-gsm_map-template.c
   M /trunk/epan/dissectors/packet-gsm_map.c

dissect_geographical_description updates.
------------------------------------------------------------------------
r18319 | ulfl | 2006-06-02 12:19:13 -0500 (Fri, 02 Jun 2006) | 1 line
Changed paths:
   M /trunk/docbook/GPL_appendix.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_introduction.xml

Ethereal -> Wireshark
------------------------------------------------------------------------
r18320 | ulfl | 2006-06-02 12:19:54 -0500 (Fri, 02 Jun 2006) | 1 line
Changed paths:
   M /trunk/docbook/wsug_src/WSUG_app_tools.xml

add dumpcap to the section of command line tools
------------------------------------------------------------------------
r18321 | ulfl | 2006-06-02 12:21:24 -0500 (Fri, 02 Jun 2006) | 1 line
Changed paths:
   M /trunk/gtk/help_dlg.c

eug_html_chunked -> wsug_html_chunked
------------------------------------------------------------------------
r18322 | ulfl | 2006-06-02 12:23:31 -0500 (Fri, 02 Jun 2006) | 1 line
Changed paths:
   M /trunk/gtk/about_dlg.c

"Wireshark - Network Protocol Analyzer" -> "Network Protocol Analyzer", as the name Wireshark is already in the logo (it wasn't in the former "E" logo)
------------------------------------------------------------------------
r18323 | etxrab | 2006-06-02 15:29:05 -0500 (Fri, 02 Jun 2006) | 10 lines
Changed paths:
   M /trunk/epan/dissectors/packet-h263.c
   M /trunk/epan/dissectors/packet-q931.c

From Richard van der Hoff:

Q.931:I
mprovesthe dissection of Q.931 Channel 
Identification information elements, by using proper (filterable) header 
fields rather than text tree items.

H253:
make the h.263 dissector dissect the group-of-block 
number which comes after a GOB start code.
------------------------------------------------------------------------
r18325 | guy | 2006-06-02 16:19:50 -0500 (Fri, 02 Jun 2006) | 2 lines
Changed paths:
   M /trunk/AUTHORS

Re-UTF-8ify.

------------------------------------------------------------------------
r18326 | guy | 2006-06-02 19:42:04 -0500 (Fri, 02 Jun 2006) | 2 lines
Changed paths:
   M /trunk/image/wsicon16.xpm

Constify in the hopes of reducing compiler warnings.

------------------------------------------------------------------------
r18327 | guy | 2006-06-02 19:43:02 -0500 (Fri, 02 Jun 2006) | 2 lines
Changed paths:
   M /trunk/image/wsicon32.xpm
   M /trunk/image/wsicon48.xpm
   M /trunk/image/wsicon64.xpm

More constification in the hopes of reducing compiler warnings.

------------------------------------------------------------------------
r18328 | guy | 2006-06-02 19:44:02 -0500 (Fri, 02 Jun 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-btsdp.c

Get rid of unused variable.

------------------------------------------------------------------------
r18329 | guy | 2006-06-02 19:47:24 -0500 (Fri, 02 Jun 2006) | 2 lines
Changed paths:
   M /trunk/image/wssplash.xpm

Still more constification to try to get rid of compiler warnings.

------------------------------------------------------------------------
r18330 | guy | 2006-06-02 19:58:36 -0500 (Fri, 02 Jun 2006) | 3 lines
Changed paths:
   M /trunk/gtk/gui_utils.c

Throw in a cast to work around the lack of a "const" in the signature
for gdk_pixmap_create_from_xpm_d().

------------------------------------------------------------------------
r18331 | sahlberg | 2006-06-02 21:03:52 -0500 (Fri, 02 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-dcerpc-netlogon.c

some functions return dos error codes and not nt status codes


------------------------------------------------------------------------
r18332 | etxrab | 2006-06-03 06:48:27 -0500 (Sat, 03 Jun 2006) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-sdp.c

From Martin Mathieson:

- while parsing fmtp lines, the dissector looks for the MPEG4 'profile-level-id' parameter.  If there is no '=' present, it was throwing an exception and the frame marked as malformed (see e.g. the attached
capture)
- I've added a few comments where the code wasn't obvious to me...
------------------------------------------------------------------------
r18333 | jmayer | 2006-06-04 08:07:13 -0500 (Sun, 04 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/Makefile.common
   M /trunk/epan/dissectors/packet-ethertype.c
   A /trunk/epan/dissectors/packet-telkonet.c
   M /trunk/epan/etypes.h

Add some rudimentary dissector for what seems to be 
Telkonets ethernet over powerline communication protocol.

------------------------------------------------------------------------
r18334 | jmayer | 2006-06-04 12:48:18 -0500 (Sun, 04 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-btl2cap.c

warning fix: guint16 is always <= 0xFFFF
------------------------------------------------------------------------
r18335 | jmayer | 2006-06-04 13:22:03 -0500 (Sun, 04 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-bthci_cmd.c

warning fix: declare some functions static
------------------------------------------------------------------------
r18336 | gerald | 2006-06-04 17:33:46 -0500 (Sun, 04 Jun 2006) | 2 lines
Changed paths:
   A /trunk/image/wsicon.png
   D /trunk/image/wsicon.svg
   M /trunk/image/wsicon16.png
   M /trunk/image/wsicon16.xpm
   D /trunk/image/wsicon200.png
   M /trunk/image/wsicon32.png
   M /trunk/image/wsicon32.xpm
   M /trunk/image/wsicon48.png
   M /trunk/image/wsicon48.xpm
   M /trunk/image/wsicon64.png
   M /trunk/image/wsicon64.xpm

Update the icon set.

------------------------------------------------------------------------
r18337 | gerald | 2006-06-04 20:40:49 -0500 (Sun, 04 Jun 2006) | 2 lines
Changed paths:
   M /trunk/Makefile.am

Remove recently-deleted images.

------------------------------------------------------------------------
r18338 | kukosa | 2006-06-05 01:49:52 -0500 (Mon, 05 Jun 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-per.c
   M /trunk/epan/dissectors/packet-per.h
   M /trunk/tools/asn2wrs.py

- packet-per.[ch]: Open Type support
- asn2wrs.py: TYPE-IDENTIFIER and ABSTRACT-SYNTAX information object classes support
------------------------------------------------------------------------
r18339 | kukosa | 2006-06-05 01:52:50 -0500 (Mon, 05 Jun 2006) | 1 line
Changed paths:
   M /trunk/asn1/h225/H323-MESSAGES.asn
   M /trunk/asn1/h235/H235-SECURITY-MESSAGES.asn
   M /trunk/asn1/h235/H235-SRTP.asn
   M /trunk/asn1/h235/h235.cnf
   M /trunk/asn1/h245/MULTIMEDIA-SYSTEM-CONTROL.asn
   M /trunk/epan/dissectors/packet-h225.c
   M /trunk/epan/dissectors/packet-h235.c

uncomment newly supported TYPE-IDENTIFIER usage and per regeneration
------------------------------------------------------------------------
r18347 | gerald | 2006-06-05 13:24:43 -0500 (Mon, 05 Jun 2006) | 2 lines
Changed paths:
   M /trunk/image/wireshark.ico

Update the icon.

------------------------------------------------------------------------
r18350 | gerald | 2006-06-05 14:32:44 -0500 (Mon, 05 Jun 2006) | 2 lines
Changed paths:
   M /trunk/Makefile.am
   M /trunk/image/README.image
   M /trunk/image/eiconcap48.xpm
   D /trunk/image/elogo3d48x48.png
   D /trunk/image/elogo3d64x64.png
   M /trunk/packaging/rpm/SPECS/wireshark.spec.in

Icon cleanup.

------------------------------------------------------------------------
r18356 | gerald | 2006-06-06 08:04:30 -0500 (Tue, 06 Jun 2006) | 2 lines
Changed paths:
   M /trunk/docbook/release-notes.xml

Convert to wireshark.

------------------------------------------------------------------------
r18357 | etxrab | 2006-06-06 13:26:57 -0500 (Tue, 06 Jun 2006) | 11 lines
Changed paths:
   M /trunk/epan/dissectors/packet-rtcp.c

From Martin Mathieson:
- shows profile-specific extension data at the end of SR/RR reports (if 
packet length has not yet been reached after parsing normal data) and 
advances offset (further packets were not recognised+dissected as this 
data wasn't being skipped).
- checks that the length of the RTCP data in the whole frame matches the 
combined length from the length fields (the last check in RFC 3550, "A.2 
RTCP Header Validity Checks") with a generated field and expert info 
when wrong.
- reports the length field in all of the message types consistently (the 
length was confusingly shown multiplied by 4 only in APP packets...)
------------------------------------------------------------------------
r18358 | etxrab | 2006-06-06 13:39:49 -0500 (Tue, 06 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ansi_map.c

From Michail Koreshkov:

Added option "ANSI MAP" in Preferences menu, that ansi_map protocol dissector can parse packets with non-standart SSN.
------------------------------------------------------------------------
r18359 | etxrab | 2006-06-06 14:30:57 -0500 (Tue, 06 Jun 2006) | 1 line
Changed paths:
   M /trunk/packaging/nsis/wireshark.nsi

Add a missing dtd.
------------------------------------------------------------------------
r18365 | gerald | 2006-06-06 17:30:46 -0500 (Tue, 06 Jun 2006) | 2 lines
Changed paths:
   M /trunk/Makefile.am
   M /trunk/image/README.image

Remove more unused icons.

------------------------------------------------------------------------
r18368 | jake | 2006-06-06 18:08:58 -0500 (Tue, 06 Jun 2006) | 34 lines
Changed paths:
   M /trunk/docbook/Makefile
   M /trunk/docbook/Makefile.auto.am
   M /trunk/docbook/README.txt
   M /trunk/docbook/developer-guide.xml
   D /trunk/docbook/edg_graphics
   D /trunk/docbook/edg_src
   A /trunk/docbook/wsdg_graphics (from /trunk/docbook/edg_graphics:18364)
   A /trunk/docbook/wsdg_src (from /trunk/docbook/edg_src:18364)
   D /trunk/docbook/wsdg_src/EDG_chapter_build_intro.xml
   D /trunk/docbook/wsdg_src/EDG_chapter_capture.xml
   D /trunk/docbook/wsdg_src/EDG_chapter_dissection.xml
   D /trunk/docbook/wsdg_src/EDG_chapter_env_intro.xml
   D /trunk/docbook/wsdg_src/EDG_chapter_libraries.xml
   D /trunk/docbook/wsdg_src/EDG_chapter_sources.xml
   D /trunk/docbook/wsdg_src/EDG_chapter_tools.xml
   D /trunk/docbook/wsdg_src/EDG_chapter_userinterface.xml
   D /trunk/docbook/wsdg_src/EDG_chapter_works.xml
   D /trunk/docbook/wsdg_src/EDG_meta_info.xml
   D /trunk/docbook/wsdg_src/EDG_preface.xml
   A /trunk/docbook/wsdg_src/WSDG_chapter_build_intro.xml (from /trunk/docbook/edg_src/EDG_chapter_build_intro.xml:18364)
   A /trunk/docbook/wsdg_src/WSDG_chapter_capture.xml (from /trunk/docbook/edg_src/EDG_chapter_capture.xml:18364)
   A /trunk/docbook/wsdg_src/WSDG_chapter_dissection.xml (from /trunk/docbook/edg_src/EDG_chapter_dissection.xml:18364)
   A /trunk/docbook/wsdg_src/WSDG_chapter_env_intro.xml (from /trunk/docbook/edg_src/EDG_chapter_env_intro.xml:18364)
   A /trunk/docbook/wsdg_src/WSDG_chapter_libraries.xml (from /trunk/docbook/edg_src/EDG_chapter_libraries.xml:18364)
   A /trunk/docbook/wsdg_src/WSDG_chapter_sources.xml (from /trunk/docbook/edg_src/EDG_chapter_sources.xml:18364)
   A /trunk/docbook/wsdg_src/WSDG_chapter_tools.xml (from /trunk/docbook/edg_src/EDG_chapter_tools.xml:18364)
   A /trunk/docbook/wsdg_src/WSDG_meta_info.xml (from /trunk/docbook/edg_src/EDG_meta_info.xml:18364)
   A /trunk/docbook/wsdg_src/WSDG_preface.xml (from /trunk/docbook/edg_src/EDG_preface.xml:18364)
   A /trunk/docbook/wsdg_src/WSDG_userinterface.xml (from /trunk/docbook/edg_src/EDG_chapter_userinterface.xml:18364)
   A /trunk/docbook/wsdg_src/WSDG_works.xml (from /trunk/docbook/edg_src/EDG_chapter_works.xml:18364)

edg -> wsdg
-This line, and those below, will be ignored--

D    docbook/edg_graphics
M    docbook/developer-guide.xml
M    docbook/Makefile.auto.am
A    docbook/wsdg_graphics
D    docbook/edg_src
M    docbook/README.txt
A    docbook/wsdg_src
D    docbook/wsdg_src/EDG_meta_info.xml
A    docbook/wsdg_src/WSDG_userinterface.xml
D    docbook/wsdg_src/EDG_preface.xml
D    docbook/wsdg_src/EDG_chapter_userinterface.xml
D    docbook/wsdg_src/EDG_chapter_tools.xml
A    docbook/wsdg_src/WSDG_meta_info.xml
D    docbook/wsdg_src/EDG_chapter_env_intro.xml
D    docbook/wsdg_src/EDG_chapter_capture.xml
A    docbook/wsdg_src/WSDG_preface.xml
A    docbook/wsdg_src/WSDG_works.xml
D    docbook/wsdg_src/EDG_chapter_dissection.xml
A    docbook/wsdg_src/WSDG_chapter_tools.xml
D    docbook/wsdg_src/EDG_chapter_works.xml
A    docbook/wsdg_src/WSDG_chapter_env_intro.xml
A    docbook/wsdg_src/WSDG_chapter_capture.xml
A    docbook/wsdg_src/WSDG_chapter_dissection.xml
D    docbook/wsdg_src/EDG_chapter_build_intro.xml
D    docbook/wsdg_src/EDG_chapter_libraries.xml
A    docbook/wsdg_src/WSDG_chapter_build_intro.xml
A    docbook/wsdg_src/WSDG_chapter_libraries.xml
D    docbook/wsdg_src/EDG_chapter_sources.xml
A    docbook/wsdg_src/WSDG_chapter_sources.xml
M    docbook/Makefile

------------------------------------------------------------------------
r18369 | gerald | 2006-06-06 18:09:20 -0500 (Tue, 06 Jun 2006) | 2 lines
Changed paths:
   M /trunk/wiretap/INSTALL
   M /trunk/wiretap/README
   M /trunk/wiretap/acinclude.m4
   M /trunk/wiretap/configure.in
   M /trunk/wiretap/file_access.c
   M /trunk/wiretap/nettl.c

Ethereal -> Wireshark

------------------------------------------------------------------------
r18370 | gerald | 2006-06-06 18:11:31 -0500 (Tue, 06 Jun 2006) | 2 lines
Changed paths:
   M /trunk/gtk/gui_utils.c
   M /trunk/packaging/rpm/SPECS/wireshark.spec.in
   M /trunk/packaging/svr4/checkinstall.in
   M /trunk/packaging/svr4/pkginfo.in

Ethereal -> Wireshark

------------------------------------------------------------------------
r18373 | jake | 2006-06-06 18:23:26 -0500 (Tue, 06 Jun 2006) | 2 lines
Changed paths:
   M /trunk/docbook/Makefile
   M /trunk/docbook/catalog.xml
   M /trunk/docbook/developer-guide.xml
   A /trunk/docbook/wsdg_src/WSDG_chapter_userinterface.xml (from /trunk/docbook/wsdg_src/WSDG_userinterface.xml:18368)
   A /trunk/docbook/wsdg_src/WSDG_chapter_works.xml (from /trunk/docbook/wsdg_src/WSDG_works.xml:18368)
   D /trunk/docbook/wsdg_src/WSDG_userinterface.xml
   D /trunk/docbook/wsdg_src/WSDG_works.xml

Fixup edg -> wsdg

------------------------------------------------------------------------
r18374 | gerald | 2006-06-06 18:27:21 -0500 (Tue, 06 Jun 2006) | 2 lines
Changed paths:
   M /trunk/tools/Makefile.nmake
   M /trunk/tools/dfilter-test.py
   M /trunk/tools/lemon/Makefile.nmake
   M /trunk/tools/msnchat
   M /trunk/tools/pidl/MANIFEST
   M /trunk/tools/pidl/README
   M /trunk/tools/pidl/lib/Parse/Pidl/Wireshark/Conformance.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm
   M /trunk/tools/pidl/pidl
   M /trunk/tools/pkt-from-core.py
   M /trunk/tools/tpg/Makefile.nmake
   M /trunk/tools/wireshark_be.py
   M /trunk/tools/wireshark_gen.py

Ethereal -> Wireshark

------------------------------------------------------------------------
r18376 | gerald | 2006-06-06 21:49:58 -0500 (Tue, 06 Jun 2006) | 5 lines
Changed paths:
   M /trunk/Makefile.am
   D /trunk/image/Ethereal.icns
   M /trunk/image/README.image
   D /trunk/image/eiconcap16.xpm
   D /trunk/image/eiconcap32.xpm
   D /trunk/image/eiconcap48.xpm
   D /trunk/image/ethereal48x48-trans.png
   D /trunk/image/ethereal48x48.png
   D /trunk/image/hi16-app-ethereal.png
   A /trunk/image/hi16-app-wireshark.png (from /trunk/image/hi16-app-ethereal.png:18374)
   D /trunk/image/hi32-app-ethereal.png
   A /trunk/image/hi32-app-wireshark.png (from /trunk/image/hi32-app-ethereal.png:18374)
   D /trunk/image/hi48-app-ethereal.png
   A /trunk/image/hi48-app-wireshark.png (from /trunk/image/hi48-app-ethereal.png:18374)
   D /trunk/image/lo16-app-ethereal.png
   A /trunk/image/lo16-app-wireshark.png (from /trunk/image/lo16-app-ethereal.png:18374)
   D /trunk/image/lo32-app-ethereal.png
   A /trunk/image/lo32-app-wireshark.png (from /trunk/image/lo32-app-ethereal.png:18374)
   D /trunk/image/lo48-app-ethereal.png
   A /trunk/image/lo48-app-wireshark.png (from /trunk/image/lo48-app-ethereal.png:18374)
   A /trunk/image/wsiconcap16.xpm (from /trunk/image/eiconcap16.xpm:18374)
   A /trunk/image/wsiconcap32.xpm (from /trunk/image/eiconcap32.xpm:18374)
   A /trunk/image/wsiconcap48.xpm (from /trunk/image/eiconcap48.xpm:18374)
   A /trunk/image/wslogo.eps
   M /trunk/image/wslogo.svg
   M /trunk/image/wssplash.xpm

In all Wireshark images and icons, make the fin point left (which
signifies moving west, in case you're wondering).  Convert many Ethereal
icons to Wireshark, and remove a few.  (Notably Ethereal.icns, for which
we don't currently have a counterpart.)

------------------------------------------------------------------------
r18377 | gerald | 2006-06-06 23:03:18 -0500 (Tue, 06 Jun 2006) | 2 lines
Changed paths:
   M /trunk/gtk/main.c

Use the new capture icons.

------------------------------------------------------------------------
r18380 | gerald | 2006-06-06 23:37:26 -0500 (Tue, 06 Jun 2006) | 2 lines
Changed paths:
   M /trunk/help/Makefile.nmake
   M /trunk/help/capture_filters.txt
   M /trunk/help/capturing.txt
   M /trunk/help/display_filters.txt
   M /trunk/help/faq.txt
   M /trunk/help/getting_started.txt
   M /trunk/help/overview.txt

Ethereal -> Wireshark.  Update the FAQ.

------------------------------------------------------------------------
r18381 | ulfl | 2006-06-07 03:36:29 -0500 (Wed, 07 Jun 2006) | 1 line
Changed paths:
   M /trunk/docbook/wsug_src/WSUG_chapter_statistics.xml

explain why packets of layers won't sum up, "fixes" eth#988
------------------------------------------------------------------------
r18382 | gerald | 2006-06-07 07:54:00 -0500 (Wed, 07 Jun 2006) | 4 lines
Changed paths:
   M /trunk/FAQ
   M /trunk/help/faq.txt
   M /trunk/make-faq

Better update for the FAQ.  We can now use the URL
http://www.wireshark.org/faq_plain.html, which doesn't have any images
or menus.

------------------------------------------------------------------------
r18385 | gerald | 2006-06-07 10:18:32 -0500 (Wed, 07 Jun 2006) | 2 lines
Changed paths:
   M /trunk/Makefile.am
   M /trunk/image/hi16-app-wireshark.png
   M /trunk/image/hi32-app-wireshark.png
   M /trunk/image/hi48-app-wireshark.png
   M /trunk/image/lo16-app-wireshark.png
   M /trunk/image/lo32-app-wireshark.png
   M /trunk/image/lo48-app-wireshark.png
   D /trunk/image/wsicon.png
   A /trunk/image/wsicon.svg
   M /trunk/image/wsicon16.png
   M /trunk/image/wsicon16.xpm
   A /trunk/image/wsicon200.png
   M /trunk/image/wsicon32.png
   M /trunk/image/wsicon32.xpm
   M /trunk/image/wsicon48.png
   M /trunk/image/wsicon48.xpm
   M /trunk/image/wsicon64.png
   M /trunk/image/wsicon64.xpm
   A /trunk/image/wsiconcap.svg
   M /trunk/image/wsiconcap16.xpm
   A /trunk/image/wsiconcap200.png
   M /trunk/image/wsiconcap32.xpm
   M /trunk/image/wsiconcap48.xpm

Switch back to the 2d icons.

------------------------------------------------------------------------
r18386 | gerald | 2006-06-07 10:25:13 -0500 (Wed, 07 Jun 2006) | 2 lines
Changed paths:
   M /trunk/image/wireshark.ico

Update the Windows icon.

------------------------------------------------------------------------
r18391 | gerald | 2006-06-07 17:57:54 -0500 (Wed, 07 Jun 2006) | 2 lines
Changed paths:
   M /trunk/epan/AUTHORS
   M /trunk/epan/dissectors/Makefile.nmake
   M /trunk/epan/dissectors/ncp2222.py
   M /trunk/epan/dissectors/packet-tivoconnect.c
   M /trunk/epan/dissectors/pidl/README
   M /trunk/gtk/help_dlg.c

Update the download link in the help dialog.  More Ethereal -> Wireshark.

------------------------------------------------------------------------
r18392 | gerald | 2006-06-07 20:19:49 -0500 (Wed, 07 Jun 2006) | 2 lines
Changed paths:
   M /trunk/docbook/graphics/wireshark-logo.png

Re-orient the fin.

------------------------------------------------------------------------
r18394 | etxrab | 2006-06-08 00:56:34 -0500 (Thu, 08 Jun 2006) | 5 lines
Changed paths:
   A /trunk/dtds/pocsettings.dtd
   A /trunk/dtds/presence.dtd
   A /trunk/dtds/watcherinfo.dtd
   M /trunk/packaging/nsis/wireshark.nsi

From Martin Mathieson:
new DTD files for the dtds folder.  They are for:
- poc-settings (RFC 4354)
- presence (RFC 3863)
- watcherinfo (RFC 3858)
------------------------------------------------------------------------
r18395 | etxrab | 2006-06-08 01:06:17 -0500 (Thu, 08 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-h225.c
   M /trunk/epan/dissectors/packet-h235.c
   M /trunk/epan/dissectors/packet-h245.c
   M /trunk/epan/dissectors/packet-nbap.c
   M /trunk/epan/dissectors/packet-per.c
   M /trunk/epan/dissectors/packet-per.h
   M /trunk/epan/dissectors/packet-ranap.c
   M /trunk/epan/dissectors/packet-rnsap.c
   M /trunk/tools/asn2wrs.py

MAke it possible to get a tvb with a BIT STRING, regenerate PER dissectors.
------------------------------------------------------------------------
r18396 | etxrab | 2006-06-08 01:07:18 -0500 (Thu, 08 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-ulp.c

MAke it possible to get a tvb with a BIT STRING, regenerate PER dissectors.
------------------------------------------------------------------------
r18397 | jmayer | 2006-06-08 09:36:17 -0500 (Thu, 08 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-catapult-dct2000.c

warning fix: make function static
------------------------------------------------------------------------
r18398 | jmayer | 2006-06-08 09:36:45 -0500 (Thu, 08 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-per.h

warning fix: no , at end of enum
------------------------------------------------------------------------
r18399 | jmayer | 2006-06-08 09:37:28 -0500 (Thu, 08 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-rnsap.c
   M /trunk/epan/dissectors/packet-rnsap.h

Compile fix: update generated rnsap files
------------------------------------------------------------------------
r18400 | jmayer | 2006-06-08 09:42:53 -0500 (Thu, 08 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-rtcp.c

rtcp.profile-specific-extension was defined twice
------------------------------------------------------------------------
r18401 | jmayer | 2006-06-08 10:17:08 -0500 (Thu, 08 Jun 2006) | 6 lines
Changed paths:
   M /trunk/gtk/capture_info_dlg.c

Radek Vokal <rvokal@redhat.com>:

Fix for bug 917: segfault when closing caputre dialog

Close dialog event have to return gboolean value.

------------------------------------------------------------------------
r18402 | jake | 2006-06-08 15:41:39 -0500 (Thu, 08 Jun 2006) | 2 lines
Changed paths:
   M /trunk/docbook/wsdg_graphics/wireshark-logo.png

Re-orient the fin.

------------------------------------------------------------------------
r18403 | jake | 2006-06-08 15:44:46 -0500 (Thu, 08 Jun 2006) | 1 line
Changed paths:
   M /trunk/docbook/wsdg_src/WSDG_chapter_tools.xml

No need to talk about obsolete tools
------------------------------------------------------------------------
r18404 | sahlberg | 2006-06-09 03:54:23 -0500 (Fri, 09 Jun 2006) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-gssapi.c

from Metze

fix the bug where decryption of dcerpc wrapped inside gsskrb sometimes fail




------------------------------------------------------------------------
r18405 | jmayer | 2006-06-09 08:17:53 -0500 (Fri, 09 Jun 2006) | 2 lines
Changed paths:
   M /trunk/asn1/rnsap

Add rnsap-exp.cnf to svn:ignore

------------------------------------------------------------------------
r18406 | sahlberg | 2006-06-09 15:44:16 -0500 (Fri, 09 Jun 2006) | 7 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/packet-ip.c

from Stephen Fisher


make icmp timestamps more readable



------------------------------------------------------------------------
r18407 | sahlberg | 2006-06-09 16:09:57 -0500 (Fri, 09 Jun 2006) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ber.c

from tim endean

handle the "broken" case when someone sends an indefinite length that is 0.



------------------------------------------------------------------------
r18408 | sahlberg | 2006-06-09 16:17:58 -0500 (Fri, 09 Jun 2006) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-dcerpc-winreg.c
   M /trunk/epan/dissectors/packet-dcerpc-winreg.h
   M /trunk/epan/dissectors/pidl/idl_types.h
   M /trunk/epan/dissectors/pidl/packet-dcerpc-winreg.c
   M /trunk/epan/dissectors/pidl/packet-dcerpc-winreg.h
   M /trunk/epan/dissectors/pidl/winreg.cnf
   M /trunk/epan/dissectors/pidl/winreg.idl

some updates   from new pidl

 

------------------------------------------------------------------------
r18409 | sahlberg | 2006-06-09 16:41:02 -0500 (Fri, 09 Jun 2006) | 5 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/Makefile.common
   A /trunk/epan/dissectors/packet-calcappprotocol.c
   A /trunk/epan/dissectors/packet-componentstatus.c
   A /trunk/epan/dissectors/packet-fractalgeneratorprotocol.c
   A /trunk/epan/dissectors/packet-pingpongprotocol.c

From Thomas Dreibholz

RSerPool protocol stack and four new protocols


------------------------------------------------------------------------
r18410 | sahlberg | 2006-06-09 16:45:06 -0500 (Fri, 09 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-calcappprotocol.c
   M /trunk/epan/dissectors/packet-componentstatus.c
   M /trunk/epan/dissectors/packet-fractalgeneratorprotocol.c
   M /trunk/epan/dissectors/packet-pingpongprotocol.c

update properties


------------------------------------------------------------------------
r18411 | sahlberg | 2006-06-09 17:06:21 -0500 (Fri, 09 Jun 2006) | 5 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/packet-ieee80211.c

From Christoph Werle

fix for ieee802.11 aid


------------------------------------------------------------------------
r18412 | sahlberg | 2006-06-09 17:55:25 -0500 (Fri, 09 Jun 2006) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ipmi.c

fix for bug 766

display truncated responses as "truncated response" and not "malformed packet"



------------------------------------------------------------------------
r18413 | guy | 2006-06-09 17:59:04 -0500 (Fri, 09 Jun 2006) | 4 lines
Changed paths:
   M /trunk/image/wsicon16.xpm
   M /trunk/image/wsicon32.xpm
   M /trunk/image/wsicon48.xpm
   M /trunk/image/wsicon64.xpm
   M /trunk/image/wsiconcap16.xpm
   M /trunk/image/wsiconcap32.xpm
   M /trunk/image/wsiconcap48.xpm
   M /trunk/image/wssplash.xpm

Constify XPMs, to squelch compiler warnings.

XPMs are C code; don't tag them as binary.

------------------------------------------------------------------------
r18414 | guy | 2006-06-09 18:00:47 -0500 (Fri, 09 Jun 2006) | 2 lines
Changed paths:
   M /trunk/image/clist_ascend.xpm
   M /trunk/image/clist_descend.xpm
   M /trunk/image/dn_arrow.xpm
   M /trunk/image/icon_layout_1.xpm
   M /trunk/image/icon_layout_2.xpm
   M /trunk/image/icon_layout_3.xpm
   M /trunk/image/icon_layout_4.xpm
   M /trunk/image/icon_layout_5.xpm
   M /trunk/image/icon_layout_6.xpm
   M /trunk/image/stock_dialog_error_48.xpm
   M /trunk/image/stock_dialog_info_48.xpm
   M /trunk/image/stock_dialog_question_48.xpm
   M /trunk/image/stock_dialog_stop_48.xpm
   M /trunk/image/stock_dialog_warning_48.xpm
   M /trunk/image/up_arrow.xpm
   M /trunk/image/wsicon16.xpm
   M /trunk/image/wsicon32.xpm
   M /trunk/image/wsicon48.xpm
   M /trunk/image/wsicon64.xpm
   M /trunk/image/wsiconcap16.xpm
   M /trunk/image/wsiconcap32.xpm
   M /trunk/image/wsiconcap48.xpm

It's spelled "mime-type", not "mine-type"; delete it for sure this time.

------------------------------------------------------------------------
r18415 | guy | 2006-06-09 18:06:38 -0500 (Fri, 09 Jun 2006) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-tivoconnect.c

Make dissect_tivoconnect() a proper "new-style" dissector, and register
it as such.

Use "tvb_strncaseeql()" to do the check for "tivoconnect" at the
beginning of the packet.

------------------------------------------------------------------------
r18416 | guy | 2006-06-09 18:08:06 -0500 (Fri, 09 Jun 2006) | 2 lines
Changed paths:
   M /trunk/image/toolbar/autoscroll_24.xpm
   M /trunk/image/toolbar/capture_filter_24.xpm
   M /trunk/image/toolbar/capture_interfaces_24.xpm
   M /trunk/image/toolbar/capture_options_24.xpm
   M /trunk/image/toolbar/capture_restart_24.xpm
   M /trunk/image/toolbar/capture_start_24.xpm
   M /trunk/image/toolbar/capture_stop_24.xpm
   M /trunk/image/toolbar/checkbox_16.xpm
   M /trunk/image/toolbar/colorize_24.xpm
   M /trunk/image/toolbar/conversations_16.xpm
   M /trunk/image/toolbar/decode_as_16.xpm
   M /trunk/image/toolbar/display_filter_24.xpm
   M /trunk/image/toolbar/endpoints_16.xpm
   M /trunk/image/toolbar/file_set_list_16.xpm
   M /trunk/image/toolbar/file_set_next_16.xpm
   M /trunk/image/toolbar/file_set_previous_16.xpm
   M /trunk/image/toolbar/graphs_16.xpm
   M /trunk/image/toolbar/internet_24.xpm
   M /trunk/image/toolbar/resize_columns_24.xpm
   M /trunk/image/toolbar/stock_add_24.xpm
   M /trunk/image/toolbar/stock_bottom_24.xpm
   M /trunk/image/toolbar/stock_clear_24.xpm
   M /trunk/image/toolbar/stock_close_24.xpm
   M /trunk/image/toolbar/stock_colorselector_24.xpm
   M /trunk/image/toolbar/stock_help_24.xpm
   M /trunk/image/toolbar/stock_jump_to_24.xpm
   M /trunk/image/toolbar/stock_left_arrow_24.xpm
   M /trunk/image/toolbar/stock_ok_20.xpm
   M /trunk/image/toolbar/stock_open_24.xpm
   M /trunk/image/toolbar/stock_preferences_24.xpm
   M /trunk/image/toolbar/stock_print_24.xpm
   M /trunk/image/toolbar/stock_properties_24.xpm
   M /trunk/image/toolbar/stock_refresh_24.xpm
   M /trunk/image/toolbar/stock_right_arrow_24.xpm
   M /trunk/image/toolbar/stock_save_24.xpm
   M /trunk/image/toolbar/stock_save_as_24.xpm
   M /trunk/image/toolbar/stock_search_24.xpm
   M /trunk/image/toolbar/stock_stop_24.xpm
   M /trunk/image/toolbar/stock_top_24.xpm
   M /trunk/image/toolbar/stock_zoom_1_24.xpm
   M /trunk/image/toolbar/stock_zoom_in_24.xpm
   M /trunk/image/toolbar/stock_zoom_out_24.xpm
   M /trunk/image/toolbar/telephony_16.xpm
   M /trunk/image/toolbar/time_24.xpm
   M /trunk/image/toolbar/web_support_24.xpm
   M /trunk/image/toolbar/wiki_24.xpm

XPMs are C source, not binary.

------------------------------------------------------------------------
r18417 | guy | 2006-06-09 19:07:02 -0500 (Fri, 09 Jun 2006) | 3 lines
Changed paths:
   M /trunk/Makefile.am

do_subst wasn't defined, so just use "cp" for now.  (Is there anything
in there that needs substitution?)

------------------------------------------------------------------------
r18418 | guy | 2006-06-09 19:26:48 -0500 (Fri, 09 Jun 2006) | 3 lines
Changed paths:
   M /trunk/asn1/inap/packet-inap-template.c
   M /trunk/epan/dissectors/packet-inap.c

Mark "inap.tcap.itu_ssn" and "inap.tcap.itu_ssn1" as obsolete
preferences, so we don't warn about them, we just silently discard them.

------------------------------------------------------------------------
r18419 | sahlberg | 2006-06-09 23:29:26 -0500 (Fri, 09 Jun 2006) | 5 lines
Changed paths:
   M /trunk/asn1/ldap/packet-ldap-template.c
   M /trunk/epan/dissectors/packet-ldap.c
   M /trunk/epan/dissectors/packet-ldap.h

make CLDAP show up as CLDAP in the dissectyion tree and not as LDAP

this also makes the "cldap" filter work


------------------------------------------------------------------------
r18420 | sahlberg | 2006-06-10 00:07:42 -0500 (Sat, 10 Jun 2006) | 4 lines
Changed paths:
   M /trunk/asn1/ldap/ldap.cnf
   M /trunk/asn1/ldap/packet-ldap-template.c
   M /trunk/epan/dissectors/packet-ldap.c

add simple heuristics to the decoding of assertionvalues  to make it display ascii strings as ascii and binary data as hex bytes



------------------------------------------------------------------------
r18421 | sahlberg | 2006-06-10 01:48:09 -0500 (Sat, 10 Jun 2006) | 2 lines
Changed paths:
   M /trunk/asn1/ldap/ldap.cnf
   M /trunk/asn1/ldap/packet-ldap-template.c
   M /trunk/epan/dissectors/packet-ldap.c

rework the previous patch slightly    since we really need to push a string upward to our callers     to be able to generate and display nice filter expressions on the top line as the original ldap dissectopr did

------------------------------------------------------------------------
r18424 | etxrab | 2006-06-11 01:20:48 -0500 (Sun, 11 Jun 2006) | 8 lines
Changed paths:
   M /trunk/gtk/voip_calls.c

Complete the parch from:
From Cvetan Ivanov: 

voip_calls.c
It seems to me that in gtk/voip_calls.c tmp_h323info->guid is pointer itself, therefore: 
memcmp(&tmp_h323info->guid 
should in fact read: 
memcmp(tmp_h323info->guid
------------------------------------------------------------------------
r18427 | etxrab | 2006-06-11 03:26:55 -0500 (Sun, 11 Jun 2006) | 8 lines
Changed paths:
   M /trunk/Makefile.am
   M /trunk/epan/dissectors/packet-catapult-dct2000.c
   M /trunk/wiretap/catapult_dct2000.c

From Martin Mathieson:
This patch:
- treats the variant field as a variable-length string field.  This is 
needed for some of the more complicated protocols where the variant 
number of the embedded protocol is also represented

- the patch to Makefile.am was not applied from 
http://www.wireshark.org/lists/wireshark-dev/200606/msg00009.html
------------------------------------------------------------------------
r18431 | sahlberg | 2006-06-12 03:30:07 -0500 (Mon, 12 Jun 2006) | 3 lines
Changed paths:
   M /trunk/asn1/ldap/ldap.cnf
   M /trunk/asn1/ldap/packet-ldap-template.c
   M /trunk/epan/dissectors/packet-ldap.c

prettify dissection of LDAP search filters.


------------------------------------------------------------------------
r18432 | sahlberg | 2006-06-12 05:10:53 -0500 (Mon, 12 Jun 2006) | 3 lines
Changed paths:
   M /trunk/AUTHORS

update christoph sholz email address


------------------------------------------------------------------------
r18434 | ulfl | 2006-06-12 14:17:30 -0500 (Mon, 12 Jun 2006) | 1 line
Changed paths:
   M /trunk/docbook/graphics/wireshark-logo.png

use the colored logo (splash screen) for the user's guide
------------------------------------------------------------------------
r18435 | ulfl | 2006-06-12 14:24:36 -0500 (Mon, 12 Jun 2006) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-frame.c

I couldn't find the filter string to show only the marked frames until I had a look at the source code (the corresponding field was hidden) -> that's not very intuitive.

So make the field "frame.marked" visible and tag it as generated.

Move both "time reference" and "marked frame" fields towards the end of the "frame" protocol fields.

Should be copied over to trunk-1.0
------------------------------------------------------------------------
r18436 | ulfl | 2006-06-12 14:27:05 -0500 (Mon, 12 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-tcp.c

slightly extend information about TCP checksum offloading problems (still far from being a real good way to handle this)
------------------------------------------------------------------------
r18437 | ulfl | 2006-06-12 14:28:54 -0500 (Mon, 12 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcerpc.c

add some more DCOM related HRESULTS
------------------------------------------------------------------------
r18438 | ulfl | 2006-06-12 14:35:26 -0500 (Mon, 12 Jun 2006) | 7 lines
Changed paths:
   M /trunk/gtk/main.c
   M /trunk/gtk/main.h
   M /trunk/gtk/menu.c

update of "Edit" menu:

Add missing "Find Next Mark" and "Find Previous Mark" functionality to the "Edit" menu.

"unify" the menu items of "Time Reference" and "Mark Frame" functionality (both main and packet list context menus)

... we need to update the User's Guide screenshots anyway because of the Wireshark changes :-)
------------------------------------------------------------------------
r18439 | ulfl | 2006-06-12 14:36:58 -0500 (Mon, 12 Jun 2006) | 1 line
Changed paths:
   M /trunk/plugins/profinet/packet-dcerpc-pn-io.c
   M /trunk/plugins/profinet/packet-pn-ptcp.c

use FT_GUID instead of FT_STRING at appropriate fields
------------------------------------------------------------------------
r18445 | etxrab | 2006-06-12 16:48:51 -0500 (Mon, 12 Jun 2006) | 1 line
Changed paths:
   M /trunk/asn1/ldap/packet-ldap-template.c
   M /trunk/epan/dissectors/packet-ldap.c
   M /trunk/epan/dissectors/packet-ldap.h

Fix some warnings.
------------------------------------------------------------------------
r18446 | guy | 2006-06-13 00:36:27 -0500 (Tue, 13 Jun 2006) | 3 lines
Changed paths:
   M /trunk/gtk/main.c

Fix the signatures of find_next_mark_cb() and find_next_mark_cb() to
match their declarations, and mark the "action" argument as unused.

------------------------------------------------------------------------
r18447 | guy | 2006-06-13 00:39:55 -0500 (Tue, 13 Jun 2006) | 8 lines
Changed paths:
   M /trunk/asn1/ldap/packet-ldap-template.c
   M /trunk/epan/dissectors/packet-ldap.c

Constify to fix compiler warnings.

Check for printable ASCII - 0x7F is >= 0x20, but it's not printable, and
0x80 through 0xFF aren't ASCII.

Note that we should perhaps be using RFC 2252-style schemas to figure
out which attribute and assertion values are text and which are binary.

------------------------------------------------------------------------
r18449 | sahlberg | 2006-06-13 02:44:37 -0500 (Tue, 13 Jun 2006) | 8 lines
Changed paths:
   M /trunk/asn1/ldap/ldap.cnf
   M /trunk/epan/dissectors/packet-ldap.c
   M /trunk/epan/dissectors/packet-ldap.h

from metze

make the display of the filters more similar to how the ldap c api represents
filters and how they are commonly represented in documentation and other texts.




------------------------------------------------------------------------
r18450 | kukosa | 2006-06-13 03:18:50 -0500 (Tue, 13 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/epan.c
   M /trunk/epan/epan.h
   M /trunk/epan/libwireshark.def

new function epan_get_version()
------------------------------------------------------------------------
r18451 | kukosa | 2006-06-13 08:21:12 -0500 (Tue, 13 Jun 2006) | 3 lines
Changed paths:
   M /trunk/asn1/h225/h225.cnf
   M /trunk/asn1/h225/packet-h225-template.c
   M /trunk/asn1/snmp/packet-snmp-template.c
   M /trunk/asn1/snmp/snmp.cnf
   M /trunk/epan/Makefile.common
   M /trunk/epan/dissectors/packet-h225.c
   M /trunk/epan/dissectors/packet-snmp.c
   A /trunk/epan/next_tvb.c
   A /trunk/epan/next_tvb.h

- "next tvb" list moved from h225 to new file next_tvb.[ch]
- h225 updated and regenerated
- restore calling subdissectors for SNMP variables which was broken with new SNMP
------------------------------------------------------------------------
r18452 | jmayer | 2006-06-13 10:48:35 -0500 (Tue, 13 Jun 2006) | 1 line
Changed paths:
   M /trunk/configure.in

Remove some trailing whitespace
------------------------------------------------------------------------
r18453 | ulfl | 2006-06-13 13:18:53 -0500 (Tue, 13 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcom.c

dcom_tvb_get_nwstringz0(): convert output to hexdump if the string contains nonprintable characters
------------------------------------------------------------------------
r18454 | ulfl | 2006-06-13 13:26:49 -0500 (Tue, 13 Jun 2006) | 2 lines
Changed paths:
   M /trunk/epan/etypes.h
   M /trunk/plugins/profinet/ChangeLog
   M /trunk/plugins/profinet/Makefile.common
   M /trunk/plugins/profinet/moduleinfo.h
   A /trunk/plugins/profinet/packet-pn-mrp.c
   A /trunk/plugins/profinet/packet-pn-mrrt.c

 (on behalf of the PROFIBUS Nutzerorganisation e.V. Deutschland):
 add Media Redundancy and Media Redundancy Realtime Protocol dissectors (PN-MRP and PN-MRRT)
------------------------------------------------------------------------
r18458 | etxrab | 2006-06-14 00:39:52 -0500 (Wed, 14 Jun 2006) | 3 lines
Changed paths:
   M /trunk/wiretap/catapult_dct2000.c

From Martin Mathieson:
Skips variant string bytes of dct2000 header when finding real packet 
data to dump.
------------------------------------------------------------------------
r18460 | jmayer | 2006-06-14 03:04:43 -0500 (Wed, 14 Jun 2006) | 12 lines
Changed paths:
   M /trunk/configure.in
   M /trunk/epan/dissectors/packet-ipsec.c

configure.in:
        Check for libgcrypt 1.1.0 (note: I don't know which version
        is required, so maybe the version number needs to be changed
        for this test to work reliably).

packet-ipsec.c:
        - Replace __USE_LIBGCRYPT__ by HAVE_LIBGCRYPT to follow
          conventions.
        - Warning fixes: signedness in sscanf (%i -> %u)
        - Warning fixes: mixed declaration and code


------------------------------------------------------------------------
r18461 | jmayer | 2006-06-14 03:08:51 -0500 (Wed, 14 Jun 2006) | 3 lines
Changed paths:
   M /trunk/asn1/snmp/packet-snmp-template.c
   M /trunk/asn1/snmp/snmp-exp.cnf
   M /trunk/epan/dissectors/packet-snmp.c
   M /trunk/epan/dissectors/packet-snmp.h

Include <ctype.h> to fix some warnings. Regenerate the
dissector.

------------------------------------------------------------------------
r18462 | jmayer | 2006-06-14 03:10:23 -0500 (Wed, 14 Jun 2006) | 1 line
Changed paths:
   M /trunk/gtk/mcast_stream_dlg.c

No // comments
------------------------------------------------------------------------
r18463 | jmayer | 2006-06-14 03:11:29 -0500 (Wed, 14 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/next_tvb.h

No , at end of enum
------------------------------------------------------------------------
r18464 | jmayer | 2006-06-14 03:12:20 -0500 (Wed, 14 Jun 2006) | 1 line
Changed paths:
   M /trunk/capinfos.c

Print help to output, not to error
------------------------------------------------------------------------
r18465 | sahlberg | 2006-06-14 06:51:25 -0500 (Wed, 14 Jun 2006) | 8 lines
Changed paths:
   M /trunk/asn1/ldap/packet-ldap-template.c
   M /trunk/epan/dissectors/packet-ber.c
   M /trunk/epan/dissectors/packet-ldap.c

fix tcp reassembly to work again for 
ldap   and ldap+sasl


remove a recent ber length validation in packet-ber.c that cant work and breaks reassembly  and also makes all ber pacvket sspanning multiple segments show up as malformed packets.



------------------------------------------------------------------------
r18466 | etxrab | 2006-06-15 00:40:21 -0500 (Thu, 15 Jun 2006) | 4 lines
Changed paths:
   M /trunk/asn1/gsm_ss/SS-Operations.asn
   M /trunk/asn1/ranap/packet-ranap-template.c
   M /trunk/epan/dissectors/packet-ranap.c

RANAP:
Handle the case where length is two octets.

SS-Operations.asn - cosmetict change.
------------------------------------------------------------------------
r18468 | kukosa | 2006-06-15 02:46:07 -0500 (Thu, 15 Jun 2006) | 3 lines
Changed paths:
   M /trunk/asn1/dop/packet-dop-template.c
   M /trunk/asn1/x411/packet-x411-template.c
   M /trunk/asn1/x411/x411.cnf
   M /trunk/epan/dissectors/packet-ber.c
   M /trunk/epan/dissectors/packet-ber.h
   M /trunk/epan/dissectors/packet-dop.c
   M /trunk/epan/dissectors/packet-x411.c

- BER_MAX_OID_STR_LEN removed and replaced with MAX_OID_STR_LEN
- x411 and dop regenerated
- dissect_ber_tagged_type() prepared (support in asn2wrs will follow)
------------------------------------------------------------------------
r18469 | ulfl | 2006-06-15 06:42:47 -0500 (Thu, 15 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcom.c

fix the hresult "filter" fields
------------------------------------------------------------------------
r18470 | ulfl | 2006-06-15 06:43:35 -0500 (Thu, 15 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcerpc.c

add a missing status code
------------------------------------------------------------------------
r18471 | ulfl | 2006-06-15 09:09:05 -0500 (Thu, 15 Jun 2006) | 1 line
Changed paths:
   M /trunk/docbook/wsdg_graphics/wireshark-logo.png
   M /trunk/docbook/wsdg_src/WSDG_meta_info.xml

use the colored logo for wsdg too, slightly prettify the page layout
------------------------------------------------------------------------
r18472 | ulfl | 2006-06-15 09:13:56 -0500 (Thu, 15 Jun 2006) | 1 line
Changed paths:
   M /trunk/docbook/Makefile.auto.am

we shouldn't use the admonition graphics from the xsl stylesheets because of unknown copyright things and because we have our own graphics for some time
------------------------------------------------------------------------
r18473 | ulfl | 2006-06-15 09:18:03 -0500 (Thu, 15 Jun 2006) | 1 line
Changed paths:
   M /trunk/docbook/Makefile
   M /trunk/docbook/Makefile.auto.am
   M /trunk/docbook/custom_layer_pdf.xsl
   D /trunk/docbook/graphics
   M /trunk/docbook/user-guide.xml
   A /trunk/docbook/wsug_graphics (from /trunk/docbook/graphics:18468)

rename "graphics" directory to "wsug_graphics" to make it clear that it's only used for the users_guide
------------------------------------------------------------------------
r18474 | ulfl | 2006-06-15 14:13:47 -0500 (Thu, 15 Jun 2006) | 1 line
Changed paths:
   M /trunk/docbook/wsug_src/WSUG_chapter_io.xml

add some information to the "Output File Formats" section
------------------------------------------------------------------------
r18475 | jmayer | 2006-06-15 15:25:01 -0500 (Thu, 15 Jun 2006) | 6 lines
Changed paths:
   M /trunk/acinclude.m4
   A /trunk/aclocal-fallback/libgcrypt.m4
   A /trunk/aclocal-fallback/libgnutls.m4

autofoo will fail on systems that lack libgcrypt.m4.
Provide one in aclocal-fallback. While I'm at it: Remove
the libgnutls.m4 stuff from acinclude and provide it in
aclocal-fallback as well.


------------------------------------------------------------------------
r18476 | etxrab | 2006-06-15 16:12:47 -0500 (Thu, 15 Jun 2006) | 1 line
Changed paths:
   M /trunk/asn1/gsmmap/gsmmap.cnf
   M /trunk/epan/dissectors/packet-gsm_map.c

Fix BUG 971 Facility IE dissection error in GSM_DTAP.
------------------------------------------------------------------------
r18477 | etxrab | 2006-06-15 16:14:26 -0500 (Thu, 15 Jun 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-gsm_a.c
   M /trunk/epan/dissectors/packet-q931.c

gsm_a: Dissect LLC
Q.931: Add Bit 8 first in Bearer Cap IE
------------------------------------------------------------------------
r18479 | etxrab | 2006-06-15 16:38:37 -0500 (Thu, 15 Jun 2006) | 5 lines
Changed paths:
   M /trunk/gtk/voip_calls.c

From Martin Mathieson:
Fix the part where the DeleteConnection messages and 
responses were not being included in the graphs.
There is a test that allows messages such as these for 1 second after 
the call has been hung up, but the time calculation was wrong.
------------------------------------------------------------------------
r18481 | guy | 2006-06-16 02:15:03 -0500 (Fri, 16 Jun 2006) | 4 lines
Changed paths:
   M /trunk/plugins/profinet/packet-pn-mrp.c

Squelch a (valid) compiler warning.

Clean up indentation a bit.

------------------------------------------------------------------------
r18482 | guy | 2006-06-16 02:17:00 -0500 (Fri, 16 Jun 2006) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-componentstatus.c

"proto_tree_add_text()" supports printf-style formats; there's no need
to format into a buffer and then pass that buffer.

Make a count an "int" rather than a "size_t" to squelch a (valid)
compiler warning.

------------------------------------------------------------------------
r18483 | guy | 2006-06-16 02:18:25 -0500 (Fri, 16 Jun 2006) | 2 lines
Changed paths:
   M /trunk/asn1/ldap/packet-ldap-template.c
   M /trunk/epan/dissectors/packet-ldap.c

Include <epan/dissectors/packet-tcp.h> to declare tcp_dissect_pdus().

------------------------------------------------------------------------
r18486 | jake | 2006-06-16 16:30:58 -0500 (Fri, 16 Jun 2006) | 12 lines
Changed paths:
   M /trunk/epan/emem.c

From Albert Chin 
HP-UX doesn't have MAP_ANON but it does have MAP_ANONYMOUS. Moreoever,
according to mmap(2) on RHEL:
       MAP_ANONYMOUS
              The mapping is not backed by any file; the fd and offset argu-
              ments are ignored.  This flag in conjunction with MAP_SHARED is
              implemented since Linux 2.4.

       MAP_ANON
              Alias for MAP_ANONYMOUS. Deprecated.


------------------------------------------------------------------------
r18488 | guy | 2006-06-16 21:31:56 -0500 (Fri, 16 Jun 2006) | 4 lines
Changed paths:
   M /trunk/epan/emem.c

Not all UN*Xes have MAP_ANONYMOUS; some have MAP_ANON instead, and some
have neither.  For those with MAP_ANON but not MAP_ANONYMOUS, use
MAP_ANON; for those with neither, add some code to use "/dev/zero".

------------------------------------------------------------------------
r18489 | sahlberg | 2006-06-17 00:42:55 -0500 (Sat, 17 Jun 2006) | 11 lines
Changed paths:
   M /trunk/epan/dissectors/packet-scsi.c

we need a itl structure to decode a scsi cdb properly.

make dissect_scsi_cdb abort with an assert if called with a null pointer for itl.

This means scsi over ndmp will be aborted by an assert sicne ndmp passes a null pointer here always but at least is better than a segv since some cdb's require itl to decode properly.


next checkin will fix ndmp in this regard.



------------------------------------------------------------------------
r18490 | sahlberg | 2006-06-17 03:22:03 -0500 (Sat, 17 Jun 2006) | 9 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ndmp.c

make ndmp track itl structures

everytime a ndmp_[scsi|tape]_open is seen   create a new itl

we need an itl structure to be able to know what commandset a certain device is using.




------------------------------------------------------------------------
r18491 | sahlberg | 2006-06-17 03:40:14 -0500 (Sat, 17 Jun 2006) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ndmp.c

allocate the correct size of buffer to store the itlq structure for scsi

we used the wrong size which caused emem to complain that the canary value had been stomped upon.

another win for the canary feature.  thanks gerald


------------------------------------------------------------------------
r18492 | sahlberg | 2006-06-17 05:26:20 -0500 (Sat, 17 Jun 2006) | 13 lines
Changed paths:
   M /trunk/wiretap/ber.c

fix coverity "bug" 184   (false positive)


the contract for wiretap ..._read() functions are that the *err pointer MUST always
be provided as a valid pointer and not a NULL pointer.


ber.c contained a spurios and redundant check for the pointer being non-NULL wich triggered coverity to detect this as a false positive.

this redundant test if the pointer is NULL has been revoved.



------------------------------------------------------------------------
r18493 | sahlberg | 2006-06-17 05:47:10 -0500 (Sat, 17 Jun 2006) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-mysql.c

fix coverity 188


at the same time, get rid of some unused parameter compiler warnings


------------------------------------------------------------------------
r18494 | sahlberg | 2006-06-17 06:11:34 -0500 (Sat, 17 Jun 2006) | 7 lines
Changed paths:
   M /trunk/epan/prefs.c

fix for coverity 182

this bug can not currently trigger    but if someone would rename the module
in the future then this could potentially cause a null dereference.



------------------------------------------------------------------------
r18495 | sahlberg | 2006-06-17 06:49:03 -0500 (Sat, 17 Jun 2006) | 3 lines
Changed paths:
   M /trunk/test/README.test
   M /trunk/test/config.sh
   M /trunk/test/suite-capture.sh
   M /trunk/test/suite-io.sh

ethereal to wireshark conversion


------------------------------------------------------------------------
r18496 | sahlberg | 2006-06-17 06:50:39 -0500 (Sat, 17 Jun 2006) | 3 lines
Changed paths:
   M /trunk/radius/dictionary

ethereal to wireshark conversion


------------------------------------------------------------------------
r18497 | sahlberg | 2006-06-17 06:57:26 -0500 (Sat, 17 Jun 2006) | 2 lines
Changed paths:
   M /trunk/epan/Makefile.nmake

ethereal to wireshark change

------------------------------------------------------------------------
r18498 | sahlberg | 2006-06-17 07:00:41 -0500 (Sat, 17 Jun 2006) | 2 lines
Changed paths:
   M /trunk/epan/dtd_grammar.lemon

ethereal to wireshark change

------------------------------------------------------------------------
r18499 | sahlberg | 2006-06-17 07:04:30 -0500 (Sat, 17 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dfilter/Makefile.nmake
   M /trunk/epan/dfilter/README.dfilter

ethereal to wireshark changes


------------------------------------------------------------------------
r18500 | sahlberg | 2006-06-17 07:07:49 -0500 (Sat, 17 Jun 2006) | 3 lines
Changed paths:
   M /trunk/plugins/profinet/packet-pn-mrp.c
   M /trunk/plugins/profinet/packet-pn-mrrt.c

ethereal to wireshark changes


------------------------------------------------------------------------
r18501 | sahlberg | 2006-06-17 07:21:54 -0500 (Sat, 17 Jun 2006) | 3 lines
Changed paths:
   M /trunk/README.bsd
   M /trunk/README.hpux
   M /trunk/README.linux
   M /trunk/README.macos
   M /trunk/README.tru64
   M /trunk/README.vmware
   M /trunk/README.win32

ethereal to wireshark changes


------------------------------------------------------------------------
r18502 | sahlberg | 2006-06-17 07:27:56 -0500 (Sat, 17 Jun 2006) | 2 lines
Changed paths:
   M /trunk/manuf.tmpl

ethereal to wireshark

------------------------------------------------------------------------
r18503 | sahlberg | 2006-06-17 07:30:06 -0500 (Sat, 17 Jun 2006) | 2 lines
Changed paths:
   M /trunk/INSTALL

ethereal to wireshark

------------------------------------------------------------------------
r18504 | etxrab | 2006-06-17 11:13:25 -0500 (Sat, 17 Jun 2006) | 3 lines
Changed paths:
   M /trunk/plugins/megaco/packet-megaco.c

From Tarlovskij Eugene:
- MEGACO dissector fails to decode observedevents descriptor 
- BoundsError exception in text MEGACO packets
------------------------------------------------------------------------
r18505 | etxrab | 2006-06-17 11:19:23 -0500 (Sat, 17 Jun 2006) | 1 line
Changed paths:
   M /trunk/asn1/ansi_map/ansi_map.cnf
   M /trunk/asn1/ansi_map/packet-ansi_map-template.c

Port the ssn range setting stuff.
------------------------------------------------------------------------
r18506 | sahlberg | 2006-06-17 20:58:34 -0500 (Sat, 17 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-smb-pipe.c
   M /trunk/epan/dissectors/packet-smb.c
   M /trunk/epan/dissectors/packet-smb.h

rename add_fid() to dissect_smb_fid() as a firsdt step towards adding tracking of filename/openedframe/closedframe tracking for smb fids


------------------------------------------------------------------------
r18507 | sahlberg | 2006-06-18 00:14:45 -0500 (Sun, 18 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-smb-browse.c

include emem.h


------------------------------------------------------------------------
r18508 | sahlberg | 2006-06-18 00:15:55 -0500 (Sun, 18 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-smb-mailslot.c

include emem.h


------------------------------------------------------------------------
r18509 | sahlberg | 2006-06-18 00:38:35 -0500 (Sun, 18 Jun 2006) | 3 lines
Changed paths:
   M /trunk/gtk/smb_stat.c

include emem.h


------------------------------------------------------------------------
r18510 | sahlberg | 2006-06-18 00:39:49 -0500 (Sun, 18 Jun 2006) | 2 lines
Changed paths:
   M /trunk/tap-smbstat.c

include emem

------------------------------------------------------------------------
r18511 | sahlberg | 2006-06-18 00:41:14 -0500 (Sun, 18 Jun 2006) | 2 lines
Changed paths:
   M /trunk/tap-smbsids.c

include emem

------------------------------------------------------------------------
r18512 | sahlberg | 2006-06-18 00:45:40 -0500 (Sun, 18 Jun 2006) | 10 lines
Changed paths:
   M /trunk/epan/dissectors/packet-smb-pipe.c
   M /trunk/epan/dissectors/packet-smb.c
   M /trunk/epan/dissectors/packet-smb.h

track smb FIDFs when tehy are opened and closed.

add an expansion to the fid that display which frame itr was opened in and when it was closed.



someone may want to add tracking of actual filenames here as well.   i am not sure i need that feature myself   so ...



------------------------------------------------------------------------
r18514 | sahlberg | 2006-06-19 02:39:19 -0500 (Mon, 19 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-smb.c
   M /trunk/epan/dissectors/packet-smb.h

add infrastructure to make tracking of fid->filename easy to implement and use


------------------------------------------------------------------------
r18515 | sahlberg | 2006-06-19 02:41:09 -0500 (Mon, 19 Jun 2006) | 10 lines
Changed paths:
   M /trunk/epan/dissectors/packet-smb.c

make fid->filename tracking work for files opened with NTCreateAndX


This needs to be done for all other Create/Open calls as well but would notmally just be 6 lines tyo add.

I rarely see older methods to open files   so others using older clients are encoraged to use these 6 lines to the other places where needed.




------------------------------------------------------------------------
r18516 | sahlberg | 2006-06-19 04:44:15 -0500 (Mon, 19 Jun 2006) | 9 lines
Changed paths:
   M /trunk/epan/dissectors/packet-smb.c
   M /trunk/epan/dissectors/packet-smb.h

add tracking of TID -> sharenames

reuse the recent structure for fid->filename mappings since the problemspace is virtually the same


(go to tired of trying to find the sharename in 10mpacket traces with 1000s of shares)



------------------------------------------------------------------------
r18517 | sahlberg | 2006-06-19 05:18:42 -0500 (Mon, 19 Jun 2006) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-per.c

coverity 195


remove a redundant check for str==NULL
since str can never be NULL here


------------------------------------------------------------------------
r18518 | etxrab | 2006-06-19 10:43:17 -0500 (Mon, 19 Jun 2006) | 4 lines
Changed paths:
   M /trunk/plugins/megaco/packet-megaco.c

From Eugene Tarlovskij:

After synchronization with wireshark repository I see that the patch is applied in the incorrect way. 
I send you another patch to fix this issue.
------------------------------------------------------------------------
r18519 | etxrab | 2006-06-19 10:53:03 -0500 (Mon, 19 Jun 2006) | 2 lines
Changed paths:
   M /trunk/epan/libwireshark.def
   M /trunk/epan/strutil.c
   M /trunk/epan/strutil.h
   M /trunk/epan/tvbuff.c
   M /trunk/epan/tvbuff.h
   M /trunk/plugins/megaco/packet-megaco.c

New rutine tvb_format_text_wsp() which will change "whiite space" characters to space
before output.
------------------------------------------------------------------------
r18520 | etxrab | 2006-06-19 10:54:13 -0500 (Mon, 19 Jun 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ip.c

Fix Ethereal bug 994 in Wireshark:
MIP Advertisement reverse tunneling flag not dissected
------------------------------------------------------------------------
r18521 | etxrab | 2006-06-20 00:57:29 -0500 (Tue, 20 Jun 2006) | 2 lines
Changed paths:
   M /trunk/asn1/h248/packet-h248-template.c
   M /trunk/asn1/rnsap/packet-rnsap-template.c
   M /trunk/epan/dissectors/packet-h248.c
   M /trunk/epan/dissectors/packet-lapd.c
   M /trunk/epan/dissectors/packet-sccp.c
   M /trunk/epan/emem.c

From Albert Chin:
Fix some C++ comments in C source files and fixes some non-constant initializations.
------------------------------------------------------------------------
r18522 | etxrab | 2006-06-20 00:59:55 -0500 (Tue, 20 Jun 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ssl.c

From Albert Chin:
This fixes a redefine of AF_INET6 on AIX 4.3.3. We pull in <sys/socket.h> so the OS can define it first, nullifying the #define in epan/inet_v6defs.h.
------------------------------------------------------------------------
r18523 | sahlberg | 2006-06-20 08:16:50 -0500 (Tue, 20 Jun 2006) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-iscsi.c

for iscsi traces where there is a lot of packetloss the dissector frequently gets out of sync
and the weak heuristics often cause wireshark to mistake some segment containing read/write data to be iscsi.


make the heuristics to check that a packet really is iscsi much stronger


------------------------------------------------------------------------
r18524 | gerald | 2006-06-20 13:30:54 -0500 (Tue, 20 Jun 2006) | 3 lines
Changed paths:
   M /trunk/asn1/ansi_map/packet-ansi_map-template.h
   M /trunk/asn1/camel/packet-camel-template.h
   M /trunk/asn1/gsmmap/packet-gsm_map-template.h
   M /trunk/config.h.win32
   M /trunk/configure.in
   M /trunk/debian/patches/01_idl2deb.dpatch
   M /trunk/epan/addr_resolv.h
   M /trunk/epan/dfilter/dfilter.h
   M /trunk/epan/dissectors/packet-afp.h
   M /trunk/epan/dissectors/packet-ansi_a.h
   M /trunk/epan/dissectors/packet-ansi_map.h
   M /trunk/epan/dissectors/packet-camel.h
   M /trunk/epan/dissectors/packet-catapult-dct2000.c
   M /trunk/epan/dissectors/packet-data.h
   M /trunk/epan/dissectors/packet-dcerpc.h
   M /trunk/epan/dissectors/packet-fc.h
   M /trunk/epan/dissectors/packet-frame.h
   M /trunk/epan/dissectors/packet-gsm_a.h
   M /trunk/epan/dissectors/packet-gsm_map.h
   M /trunk/epan/dissectors/packet-h225.h
   M /trunk/epan/dissectors/packet-isup.h
   M /trunk/epan/dissectors/packet-mtp3.h
   M /trunk/epan/dissectors/packet-q931.h
   M /trunk/epan/dissectors/packet-rpc.h
   M /trunk/epan/dissectors/packet-scsi.h
   M /trunk/epan/dissectors/packet-smb-sidsnooping.h
   M /trunk/epan/dissectors/packet-smb.h
   M /trunk/epan/dissectors/packet-smb2.h
   M /trunk/epan/dissectors/packet-t38.h
   M /trunk/epan/dissectors/packet-wsp.h
   M /trunk/epan/follow.h
   M /trunk/epan/ftypes/ftypes.h
   M /trunk/epan/plugins.h
   M /trunk/epan/prefs-int.h
   M /trunk/epan/prefs.h
   M /trunk/epan/proto.h
   M /trunk/epan/rtp_pt.h
   M /trunk/epan/tap.h
   M /trunk/gtk/follow_dlg.c
   M /trunk/tools/asn2wrs.py
   M /trunk/wiretap/catapult_dct2000.h
   M /trunk/wiretap/configure.in

Change ETH_VAR_IMPORT to WS_VAR_IMPORT.  Try to fix a duplicate variable
definition in the Catapult DCT2000 code.

------------------------------------------------------------------------
r18525 | kukosa | 2006-06-20 14:54:28 -0500 (Tue, 20 Jun 2006) | 2 lines
Changed paths:
   M /trunk/asn1/h225/h225.cnf
   M /trunk/tools/asn2wrs.py

- change ETH_VAR to WS_VAR
- preparation for tagged type support
------------------------------------------------------------------------
r18526 | jake | 2006-06-21 01:31:06 -0500 (Wed, 21 Jun 2006) | 8 lines
Changed paths:
   M /trunk/Makefile.am
   M /trunk/configure.in
   M /trunk/packaging/nsis/Makefile.nmake
   M /trunk/packaging/nsis/wireshark.nsi
   M /trunk/plugins/Makefile.am
   M /trunk/plugins/Makefile.nmake
   A /trunk/plugins/sbus
   A /trunk/plugins/sbus/AUTHORS
   A /trunk/plugins/sbus/ChangeLog
   A /trunk/plugins/sbus/Makefile.am
   A /trunk/plugins/sbus/Makefile.common
   A /trunk/plugins/sbus/Makefile.nmake
   A /trunk/plugins/sbus/moduleinfo.h
   A /trunk/plugins/sbus/packet-sbus.c

From Christian Durrer:
I hope this is the right place to send a patch for a new dissector
plugin. The telegram it dissects are for the communication between PLCs
(Programmable logic controller) from the company Saia Burgess Controls
Ltd. (http://www.start-controls.com, http://www.saia-burgess.com or
http://www.sbc-support.ch). The protocol is named Ether-S-Bus (the PLCs
are called PCD2, PCD3, PCD4).

------------------------------------------------------------------------
r18527 | ulfl | 2006-06-21 02:26:39 -0500 (Wed, 21 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/proto.h

fix a comment
------------------------------------------------------------------------
r18528 | ulfl | 2006-06-21 02:28:56 -0500 (Wed, 21 Jun 2006) | 1 line
Changed paths:
   M /trunk/plugins/profinet/packet-pn-ptcp.c

detect the PROFINET OUI correct if the multicast bit is set
------------------------------------------------------------------------
r18529 | ulfl | 2006-06-21 02:30:11 -0500 (Wed, 21 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-lldp.c

update PROFINET port2/3 status text
------------------------------------------------------------------------
r18530 | sahlberg | 2006-06-21 04:45:50 -0500 (Wed, 21 Jun 2006) | 20 lines
Changed paths:
   M /trunk/epan/dissectors/packet-nfs.c
   M /trunk/epan/dissectors/packet-nfs.h

two things have irritated me immensly with nfs filehandles


1, (minor) the heuristics are too weak and everyting is always decoded either as netapp filehandles or one of the others   even when just capturing ibetween say two classic unix boxens
2, (major) you can not filter on specific subfields of the filehandle


observation: 5 people or less in the world care about implementation specific storage of data inside an opaque blob.


remove the too weak heuristics for nfs filehandles.
make decoding of filehandles accorrding to specific implementations controlled by a preference setting.
default this setting to "unknown"

display unknown filehandles using proto_tree_add_item()  FT_BYTES/BASE_HEX to make it fitlerable instead of a useless proto_tree_add_text()


wiki needs to be updated tomorrow


------------------------------------------------------------------------
r18531 | jake | 2006-06-21 12:57:10 -0500 (Wed, 21 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-sip.c

Somewhat improve heuristic when SIP is encapsulated in another protocol.
------------------------------------------------------------------------
r18532 | gerald | 2006-06-21 13:29:38 -0500 (Wed, 21 Jun 2006) | 2 lines
Changed paths:
   M /trunk/docbook/Makefile

Clean any zip files we might create.

------------------------------------------------------------------------
r18533 | ulfl | 2006-06-21 13:31:34 -0500 (Wed, 21 Jun 2006) | 1 line
Changed paths:
   M /trunk/docbook/wsug_src/WSUG_app_files.xml
   M /trunk/docbook/wsug_src/WSUG_chapter_io.xml

explain the capture file contents a bit and add a warning to the save dialog that some information will be lost after saving (e.g. packet drop count)
------------------------------------------------------------------------
r18534 | ulfl | 2006-06-21 13:35:39 -0500 (Wed, 21 Jun 2006) | 1 line
Changed paths:
   M /trunk/plugins/profinet/packet-pn-dcp.c
   M /trunk/plugins/profinet/packet-pn-mrp.c
   M /trunk/plugins/profinet/packet-pn-mrrt.c
   M /trunk/plugins/profinet/packet-pn-ptcp.c

add an expert info if a capture file contains some (yet) undecoded portions
------------------------------------------------------------------------
r18535 | jake | 2006-06-21 14:33:05 -0500 (Wed, 21 Jun 2006) | 1 line
Changed paths:
   M /trunk/doc/README.developer

Stricter wording for PROTOABBREV
------------------------------------------------------------------------
r18536 | ulfl | 2006-06-21 15:10:38 -0500 (Wed, 21 Jun 2006) | 3 lines
Changed paths:
   M /trunk/plugins/profinet/packet-dcerpc-pn-io.c

add various new dissections, enhancements to the existing dissections and update things to current spec, ...

Still incomplete, but a lot better than before :-)
------------------------------------------------------------------------
r18537 | ulfl | 2006-06-21 15:34:28 -0500 (Wed, 21 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-catapult-dct2000.c

comment out the "catapult_dct2000_board_ports_only" part, so the Win32 buildbot has at least a chance to compile again

This is really not the preferred solution, but the current situation is even more ugly.
------------------------------------------------------------------------
r18538 | etxrab | 2006-06-21 15:51:55 -0500 (Wed, 21 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-gtp.c

Put the correct IE names in GTPv1 messages.
------------------------------------------------------------------------
r18539 | jake | 2006-06-21 19:07:46 -0500 (Wed, 21 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-asf.c
   M /trunk/epan/dissectors/packet-rmcp.c

Initial fix for bug 974. It does implement RSP header decoding, it lacks RSP trailer decoding. ASF 2.0 messages added to ASF decoder .
------------------------------------------------------------------------
r18540 | sahlberg | 2006-06-22 05:29:49 -0500 (Thu, 22 Jun 2006) | 6 lines
Changed paths:
   M /trunk/asn1/ldap/packet-ldap-template.c
   M /trunk/epan/dissectors/packet-ldap.c

the dissector for AssertionValue  that is implemented in the template file
did not check the implicit_tag flag and caused extensiblematch filters to show up as malformed packets.




------------------------------------------------------------------------
r18541 | ulfl | 2006-06-22 05:30:35 -0500 (Thu, 22 Jun 2006) | 1 line
Changed paths:
   M /trunk/wiretap/catapult_dct2000.h

hopefully, the win32 buildbot will compile again :-(
------------------------------------------------------------------------
r18542 | sahlberg | 2006-06-22 06:08:35 -0500 (Thu, 22 Jun 2006) | 10 lines
Changed paths:
   M /trunk/gtk/voip_calls.c

coverity 194


this is actually a false positive in coverity and can not trigger since htis pointer can not be null here 
but verifying this before the varialbe is dereferenced does not hurt in case 
the file is changed and this contract is broken.


checking the

------------------------------------------------------------------------
r18543 | sahlberg | 2006-06-22 06:23:26 -0500 (Thu, 22 Jun 2006) | 11 lines
Changed paths:
   M /trunk/gtk/proto_draw.c

coverity   187


i dont think this can trigger in the current code   but better safe than sorry  and it safeguards against future changes that might break this requirement.


dereferencing a nullpointer would cause crash of wireshark   in case a new bug is introduced making it possible for this variuable to be null.




------------------------------------------------------------------------
r18544 | sahlberg | 2006-06-22 06:43:18 -0500 (Thu, 22 Jun 2006) | 3 lines
Changed paths:
   M /trunk/gtk/find_dlg.c

add check that string is non-null before we dereference and gfree it


------------------------------------------------------------------------
r18545 | kukosa | 2006-06-22 07:02:05 -0500 (Thu, 22 Jun 2006) | 1 line
Changed paths:
   M /trunk/tools/asn2wrs.py

fix bug introduced with last change
------------------------------------------------------------------------
r18547 | ulfl | 2006-06-22 14:16:40 -0500 (Thu, 22 Jun 2006) | 1 line
Changed paths:
   M /trunk/gtk/win32-file-dlg.c

bugfix: saving the user specified packet range text must be utf8'ed, otherwise only the first char will be used
------------------------------------------------------------------------
r18548 | ulfl | 2006-06-22 14:17:43 -0500 (Thu, 22 Jun 2006) | 1 line
Changed paths:
   M /trunk/plugins/profinet/packet-pn-dcp.c

fix a (correct) compiler warning
------------------------------------------------------------------------
r18549 | ulfl | 2006-06-22 14:19:41 -0500 (Thu, 22 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-lldp.c

add another PROFINET specific subtype (5:CHASSIS_MAC)
------------------------------------------------------------------------
r18550 | guy | 2006-06-22 16:55:24 -0500 (Thu, 22 Jun 2006) | 4 lines
Changed paths:
   M /trunk/epan/proto.c

The joys of the C switch statement - you have to remember to use
"break;" between cases except in those rare situations where you *want*
fallthrough.

------------------------------------------------------------------------
r18551 | guy | 2006-06-22 21:42:40 -0500 (Thu, 22 Jun 2006) | 3 lines
Changed paths:
   M /trunk/wiretap/catapult_dct2000.h

Remove definition of catapult_dct2000_board_ports_only, as per mail from
Martin Mathieson.

------------------------------------------------------------------------
r18552 | guy | 2006-06-22 21:43:59 -0500 (Thu, 22 Jun 2006) | 2 lines
Changed paths:
   M /trunk/plugins/sbus

Set svn:ignore appropriately.

------------------------------------------------------------------------
r18553 | jake | 2006-06-23 01:14:30 -0500 (Fri, 23 Jun 2006) | 1 line
Changed paths:
   M /trunk/docbook/developer-guide.xml
   M /trunk/docbook/wsdg_src/WSDG_chapter_build_intro.xml
   M /trunk/docbook/wsdg_src/WSDG_chapter_env_intro.xml
   M /trunk/docbook/wsdg_src/WSDG_chapter_sources.xml

Various corrections and updates
------------------------------------------------------------------------
r18554 | jake | 2006-06-23 01:38:46 -0500 (Fri, 23 Jun 2006) | 3 lines
Changed paths:
   M /trunk/plugins/sbus/packet-sbus.c

One warning from GCC:
packet-sbus.c:634: warning: 'sbus_web_seq' is used uninitialized in this function

------------------------------------------------------------------------
r18555 | sahlberg | 2006-06-23 04:02:54 -0500 (Fri, 23 Jun 2006) | 9 lines
Changed paths:
   M /trunk/epan/dissectors/packet-nfs.c

coverity warning 177   deadcode


replace overly convoluted code with much simpler code.

stateid is a simple 16 byte structure and there is no need to make it more complex than it is.



------------------------------------------------------------------------
r18556 | sahlberg | 2006-06-23 04:15:20 -0500 (Fri, 23 Jun 2006) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-per.c

remove some dead code

coverity 191

------------------------------------------------------------------------
r18557 | sahlberg | 2006-06-23 04:27:17 -0500 (Fri, 23 Jun 2006) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-per.c

coverity 190

remove some dead code


------------------------------------------------------------------------
r18558 | sahlberg | 2006-06-23 07:04:00 -0500 (Fri, 23 Jun 2006) | 9 lines
Changed paths:
   M /trunk/epan/dissectors/packet-iax2.c

coverity 174


ifdef out a few lines of dead code for a feature that is not yet finished

remove two compiler warnings about uninitialized variables (they are not uninitialized, just gcc being dumb)



------------------------------------------------------------------------
r18559 | jake | 2006-06-23 10:22:12 -0500 (Fri, 23 Jun 2006) | 2 lines
Changed paths:
   M /trunk/gtk/voip_calls.c

Make SSRC display (among others) unsigned. Fixes Ethereal bug 1002.

------------------------------------------------------------------------
r18560 | ulfl | 2006-06-23 13:03:40 -0500 (Fri, 23 Jun 2006) | 1 line
Changed paths:
   M /trunk/plugins/profinet/packet-dcerpc-pn-io.c
   M /trunk/plugins/profinet/packet-pn-dcp.c
   M /trunk/plugins/profinet/packet-pn-mrrt.c
   M /trunk/plugins/profinet/packet-pn-ptcp.c

squelch some compiler warnings
------------------------------------------------------------------------
r18561 | ulfl | 2006-06-23 13:06:54 -0500 (Fri, 23 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-dcerpc.c

fix the reading of UUID's from the Win32 registry, it was broken as we switched to UNICODE compilation

I thought there was a bugzilla entry about this, but couldn't find it
------------------------------------------------------------------------
r18562 | ulfl | 2006-06-23 13:20:34 -0500 (Fri, 23 Jun 2006) | 3 lines
Changed paths:
   M /trunk/wiretap/file_access.c
   M /trunk/wiretap/wtap.def
   M /trunk/wiretap/wtap.h

add file extension information (filter "*.pcap;*.cap" and default extension ".pcap") to wiretap

sort file types in alphabetical order, but keep the libpcap like entries at the start
------------------------------------------------------------------------
r18563 | ulfl | 2006-06-23 13:29:48 -0500 (Fri, 23 Jun 2006) | 5 lines
Changed paths:
   M /trunk/gtk/win32-file-dlg.c
   M /trunk/gtk/win32-file-dlg.h
   M /trunk/image/win32-file-dlg.rc

use file name information from wiretap instead of "build in" values

remove "double combobox" from the save dialog

append the default file extension to the save file name, if the user didn't added one
------------------------------------------------------------------------
r18564 | gerald | 2006-06-23 15:39:51 -0500 (Fri, 23 Jun 2006) | 3 lines
Changed paths:
   M /trunk/tools/fuzz-test.sh

Let the user set the working directory and number of passes from the command
line.  An upcoming Buildbot step will use these.

------------------------------------------------------------------------
r18565 | sahlberg | 2006-06-23 18:44:17 -0500 (Fri, 23 Jun 2006) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-jxta.c

coverity 172

remove a dead code condition


------------------------------------------------------------------------
r18566 | sahlberg | 2006-06-23 18:51:55 -0500 (Fri, 23 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-http.c

change a comment to #if  to make it clearer the code is disabled


------------------------------------------------------------------------
r18567 | sahlberg | 2006-06-23 19:01:33 -0500 (Fri, 23 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-http.c

remove some dead code    coverity 17


------------------------------------------------------------------------
r18568 | guy | 2006-06-23 21:41:25 -0500 (Fri, 23 Jun 2006) | 2 lines
Changed paths:
   M /trunk/plugins/sbus/packet-sbus.c

Put the sequence number in for a response, if present.

------------------------------------------------------------------------
r18569 | sahlberg | 2006-06-23 22:39:54 -0500 (Fri, 23 Jun 2006) | 7 lines
Changed paths:
   M /trunk/rdps.c

coverity 169 dead code


finish the removal of "hex" state  that was begun in svn 5798



------------------------------------------------------------------------
r18570 | sahlberg | 2006-06-24 00:39:38 -0500 (Sat, 24 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-sctp.c

change a parenthesis


------------------------------------------------------------------------
r18571 | sahlberg | 2006-06-24 00:45:06 -0500 (Sat, 24 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-fc.c

coverity 149    dead code


------------------------------------------------------------------------
r18572 | sahlberg | 2006-06-24 06:50:47 -0500 (Sat, 24 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-per.c

coverity 197   dead code


------------------------------------------------------------------------
r18573 | sahlberg | 2006-06-24 07:03:24 -0500 (Sat, 24 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-per.c

restore display of optional field names when the optional bit is displayed in the tree


------------------------------------------------------------------------
r18574 | jake | 2006-06-25 07:15:35 -0500 (Sun, 25 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-ipv6.c

Fix Ethereal bug 1004. Make UDP dissector work on top of IPv6 by filling in pinfo fields correctly.
------------------------------------------------------------------------
r18575 | sahlberg | 2006-06-26 03:47:26 -0500 (Mon, 26 Jun 2006) | 7 lines
Changed paths:
   M /trunk/file.c

coverity 170


remove some dead code



------------------------------------------------------------------------
r18576 | tuexen | 2006-06-26 08:18:37 -0500 (Mon, 26 Jun 2006) | 2 lines
Changed paths:
   M /trunk/gtk/menu.c
   M /trunk/gtk/sctp_assoc_analyse.c
   M /trunk/gtk/sctp_stat.h

From Irene Ruengeler: Add context menu for SCTP analysis.

------------------------------------------------------------------------
r18577 | gerald | 2006-06-26 14:49:27 -0500 (Mon, 26 Jun 2006) | 3 lines
Changed paths:
   M /trunk/tools/fuzz-test.sh

Use a more uniform name for the output files (which makes it easier to
write wrapper scripts).

------------------------------------------------------------------------
r18578 | ulfl | 2006-06-26 15:46:15 -0500 (Mon, 26 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/column-utils.c
   M /trunk/epan/column.c
   M /trunk/epan/column_info.h
   M /trunk/epan/dissectors/packet-dcerpc.c
   M /trunk/gtk/packet_list.c

add a new column DCE/RPC context ID
------------------------------------------------------------------------
r18579 | sahlberg | 2006-06-27 07:05:05 -0500 (Tue, 27 Jun 2006) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-http.c

fix a tiny memory leak where we would lose a few kbyte once when wireshark is starting up



------------------------------------------------------------------------
r18580 | sahlberg | 2006-06-27 07:12:31 -0500 (Tue, 27 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-radius.c

fix a tiny memory leak where wireshark would lose a few kb once upon startup if there was no radius directory


------------------------------------------------------------------------
r18581 | kukosa | 2006-06-27 07:40:53 -0500 (Tue, 27 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-rtp.c

the 1st very simple attempt to support RFC 2198 Redundant Audio Data
------------------------------------------------------------------------
r18582 | sahlberg | 2006-06-27 08:36:10 -0500 (Tue, 27 Jun 2006) | 5 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/Makefile.common
   A /trunk/epan/dissectors/packet-dtls.c
   M /trunk/epan/dissectors/packet-ssl-utils.c
   M /trunk/epan/dissectors/packet-ssl-utils.h
   M /trunk/epan/dissectors/packet-ssl.c

from Authesserre Samuel

SSL updates and DTLS support


------------------------------------------------------------------------
r18583 | sahlberg | 2006-06-27 08:51:13 -0500 (Tue, 27 Jun 2006) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ssl.c

make the called subdissectors create their protocol expansion at the first level of the tree and not deep inside the SSL layer

makes the traces much more readable


------------------------------------------------------------------------
r18584 | ulfl | 2006-06-27 11:41:32 -0500 (Tue, 27 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-ssl-utils.h

#include <epan/value_string.h> must be done, even if HAVE_LIBGNUTLS isn't defined
------------------------------------------------------------------------
r18585 | ulfl | 2006-06-27 11:50:28 -0500 (Tue, 27 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dtls.c

MSVC doesn't like the conversion from guint64 to double, use gint64 instead (should be safe if I understand the implementation correct)
------------------------------------------------------------------------
r18586 | etxrab | 2006-06-27 14:15:43 -0500 (Tue, 27 Jun 2006) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-gsm_a.c

From Neil Piercy:
The patch avoids the crash for unknown messages, adds the Common Id 
message dissection which caused it, and also add dissector name 
registration for the 2 other protocols which this file can provide.
------------------------------------------------------------------------
r18587 | etxrab | 2006-06-27 14:16:38 -0500 (Tue, 27 Jun 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-amr.c

From Neil Piercy:
Just to add dissector name registration to the main IETF AMR dissector.
------------------------------------------------------------------------
r18588 | etxrab | 2006-06-27 16:44:07 -0500 (Tue, 27 Jun 2006) | 22 lines
Changed paths:
   A /trunk/plugins/listen_rtp
   A /trunk/plugins/listen_rtp/AUTHORS
   A /trunk/plugins/listen_rtp/Makefile.am
   A /trunk/plugins/listen_rtp/Makefile.nmake
   A /trunk/plugins/listen_rtp/NEWS
   A /trunk/plugins/listen_rtp/codecs
   A /trunk/plugins/listen_rtp/codecs/G711a
   A /trunk/plugins/listen_rtp/codecs/G711a/G711adecode.c
   A /trunk/plugins/listen_rtp/codecs/G711a/G711adecode.h
   A /trunk/plugins/listen_rtp/codecs/G711a/G711atable.h
   A /trunk/plugins/listen_rtp/codecs/G711u
   A /trunk/plugins/listen_rtp/codecs/G711u/G711udecode.c
   A /trunk/plugins/listen_rtp/codecs/G711u/G711udecode.h
   A /trunk/plugins/listen_rtp/codecs/G711u/G711utable.h
   A /trunk/plugins/listen_rtp/listen_rtp_plugin.c
   A /trunk/plugins/listen_rtp/main_listen_rtp.c
   A /trunk/plugins/listen_rtp/main_listen_rtp.h

From Alejandro Vaquero:

The "listen_rtp" plugin that allows to listen audio RTP 
conversations.

    The plugin is integrated to the "Voip Calls" feature. There is a new 
"listen" button in the "Voip Calls" that once the calls are selected and 
the "listen" is clicked, a new window will open. In this window you can 
change the simulated jitter buffer to be used for decoding the RTP 
packets. In this first implementation, only a static jitter buffer can 
be simulated. Then pressing "decode" will decode all the RTP and 
generate the graphical view of the audio channels. From there you can 
select up to two channels at the same time (to be played in the left and 
right channels) and then play, pause, stop,etc.....ok, the attached 
screenshot it is self explanatory (hopefully).
    The only codecs available from now are G711u and G711a law.

    The PortAudio (www.portaudio.com) library is used to play audio. 
This is an open source cross-platform Audio library. I have tested this 
on Windows XP  and in a linux FC4.

NOTE: only the plugin soure files checked in at this time.
------------------------------------------------------------------------
r18589 | etxrab | 2006-06-27 17:04:35 -0500 (Tue, 27 Jun 2006) | 8 lines
Changed paths:
   M /trunk/epan/dissectors/packet-sip.c

From Martin Mathieson:
Fix Bug 976

Looking at frame 170 in the trace, it looks like 
tvb_get_ephemeral_text() struggles with the null character in the middle 
of the 4th parameter (in the WWW-Authenticate header) and returns NULL.  
The attached patch uses tvb_format_text() instead which also does a 
better job of showing the string.
------------------------------------------------------------------------
r18590 | kukosa | 2006-06-28 01:50:39 -0500 (Wed, 28 Jun 2006) | 1 line
Changed paths:
   M /trunk/asn1/h235/packet-h235-template.c
   M /trunk/epan/dissectors/packet-h235.c

few OID names
------------------------------------------------------------------------
r18591 | kukosa | 2006-06-28 02:01:15 -0500 (Wed, 28 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/libwireshark.def

export functions from oid-resolv.h
------------------------------------------------------------------------
r18592 | sahlberg | 2006-06-28 02:37:54 -0500 (Wed, 28 Jun 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ssl.c

coverity 198

------------------------------------------------------------------------
r18593 | sahlberg | 2006-06-28 02:44:47 -0500 (Wed, 28 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ssl.c

coverity 199    remove a pointless test for NULL for something that can never be null.


------------------------------------------------------------------------
r18594 | sahlberg | 2006-06-28 02:51:31 -0500 (Wed, 28 Jun 2006) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ssl.c

coverity 200    remove redundant null tests for pinfo->fd




------------------------------------------------------------------------
r18595 | kukosa | 2006-06-28 09:19:08 -0500 (Wed, 28 Jun 2006) | 2 lines
Changed paths:
   M /trunk/asn1/acp133/packet-acp133-template.c
   M /trunk/asn1/acse/packet-acse-template.c
   M /trunk/asn1/camel/packet-camel-template.c
   M /trunk/asn1/cdt/cdt.cnf
   M /trunk/asn1/cmip/packet-cmip-template.c
   M /trunk/asn1/cms/cms.cnf
   M /trunk/asn1/dap/packet-dap-template.c
   M /trunk/asn1/disp/packet-disp-template.c
   M /trunk/asn1/dop/dop.cnf
   M /trunk/asn1/dop/packet-dop-template.c
   M /trunk/asn1/dsp/packet-dsp-template.c
   M /trunk/asn1/ftam/packet-ftam-template.c
   M /trunk/asn1/gsmmap/packet-gsm_map-template.c
   M /trunk/asn1/ldap/packet-ldap-template.c
   M /trunk/asn1/pkixproxy/packet-pkixproxy-template.c
   M /trunk/asn1/tcap/packet-tcap-template.c
   M /trunk/asn1/wlancertextn/packet-wlancertextn-template.c
   M /trunk/asn1/x411/packet-x411-template.c
   M /trunk/asn1/x411/x411.cnf
   M /trunk/asn1/x420/x420.cnf
   M /trunk/asn1/x509af/x509af.cnf
   M /trunk/asn1/x509if/x509if.cnf
   M /trunk/asn1/x509sat/packet-x509sat-template.c
   M /trunk/epan/dissectors/packet-acp133.c
   M /trunk/epan/dissectors/packet-acse.c
   M /trunk/epan/dissectors/packet-ber.c
   M /trunk/epan/dissectors/packet-ber.h
   M /trunk/epan/dissectors/packet-camel.c
   M /trunk/epan/dissectors/packet-cdt.c
   M /trunk/epan/dissectors/packet-cmip.c
   M /trunk/epan/dissectors/packet-cms.c
   M /trunk/epan/dissectors/packet-dap.c
   M /trunk/epan/dissectors/packet-disp.c
   M /trunk/epan/dissectors/packet-dop.c
   M /trunk/epan/dissectors/packet-dsp.c
   M /trunk/epan/dissectors/packet-ftam.c
   M /trunk/epan/dissectors/packet-gsm_map.c
   M /trunk/epan/dissectors/packet-ldap.c
   M /trunk/epan/dissectors/packet-ldap.h
   M /trunk/epan/dissectors/packet-per.h
   M /trunk/epan/dissectors/packet-pkixproxy.c
   M /trunk/epan/dissectors/packet-tcap.c
   M /trunk/epan/dissectors/packet-wlancertextn.c
   M /trunk/epan/dissectors/packet-x411.c
   M /trunk/epan/dissectors/packet-x420.c
   M /trunk/epan/dissectors/packet-x509af.c
   M /trunk/epan/dissectors/packet-x509if.c
   M /trunk/epan/dissectors/packet-x509sat.c

remove functions register_ber_oid_name() and get_ber_oid_name() from packet-ber.c, they were only OID but not BER related
use add_oid_str_name() and get_oid_str_name() instead of them
------------------------------------------------------------------------
r18596 | ulfl | 2006-06-28 13:51:24 -0500 (Wed, 28 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcom.c

add dissection of custom marshalled OBJREF's (as far as known)
------------------------------------------------------------------------
r18597 | ulfl | 2006-06-28 13:54:19 -0500 (Wed, 28 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcom-sysact.c

add dissection of the RemoteCreateInstance method (as far as known)
------------------------------------------------------------------------
r18598 | gal | 2006-06-28 14:07:10 -0500 (Wed, 28 Jun 2006) | 4 lines
Changed paths:
   M /trunk/asn1/x411/packet-x411-template.c
   M /trunk/asn1/x411/x411-exp.cnf
   M /trunk/asn1/x411/x411.asn
   M /trunk/asn1/x411/x411.cnf
   M /trunk/epan/dissectors/packet-x411.c
   M /trunk/epan/dissectors/packet-x411.h

Support for the message-token, proof-of-delivery and recipient-certificate p1 envelope extensions. 
Patch for unknown built-in content type.


------------------------------------------------------------------------
r18599 | gal | 2006-06-28 14:31:49 -0500 (Wed, 28 Jun 2006) | 3 lines
Changed paths:
   M /trunk/asn1/s4406/s4406.asn
   M /trunk/asn1/s4406/s4406.cnf
   M /trunk/epan/dissectors/packet-s4406.c
   M /trunk/epan/dissectors/packet-s4406.h

Support for the acp127-notification-request extension.


------------------------------------------------------------------------
r18600 | gerald | 2006-06-28 15:30:42 -0500 (Wed, 28 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-sip.c

Pass tvb_format_text() through a format string, in case it returns any
"%" characters.

------------------------------------------------------------------------
r18601 | gerald | 2006-06-28 17:07:23 -0500 (Wed, 28 Jun 2006) | 3 lines
Changed paths:
   M /trunk/asn1/ldap/packet-ldap-template.c
   M /trunk/epan/dissectors/packet-ldap.c
   M /trunk/epan/dissectors/packet-ldap.h

Reset ldm_tree to NULL each time we dissect an LDAP packet.  This should 
fix a current Buildbot crash.  Fix up whitespace.

------------------------------------------------------------------------
r18602 | etxrab | 2006-06-29 01:27:57 -0500 (Thu, 29 Jun 2006) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-tipc.c

From   Martin Peylo:
Bug 978 TIPC: Malformed Packet when valid "Cluster Internal Connection Based Non-Routed Message

Bug 979 TIPC: descriptions switched in dissected package

Bug 980 TIPC: "Source Droppable" bit is missing in dissected message
------------------------------------------------------------------------
r18603 | etxrab | 2006-06-29 01:32:21 -0500 (Thu, 29 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-tipc.c

Update a reference and a comment.
------------------------------------------------------------------------
r18604 | sahlberg | 2006-06-29 02:31:52 -0500 (Thu, 29 Jun 2006) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ssl.c

make the three decryption preferences only be visible IF wireshark is compiled for ssl decryption (==with libgcrypt and gnutls)

this makes it easier for users to determine whether their versaion of wireshark can or can not decrypt ssl traffic



------------------------------------------------------------------------
r18605 | ulfl | 2006-06-29 03:08:36 -0500 (Thu, 29 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-dcerpc.c
   M /trunk/epan/dissectors/packet-dcerpc.h

the drep parameter of dissect_dcerpc_uuid_t() should be guint8 * instead of char * (just like all the other dissect_dcerpc_...() functions).

This should fix some "differ in signedness" warnings (and maybe will raise new ones, which should be fixed at the calling places then)
------------------------------------------------------------------------
r18606 | ulfl | 2006-06-29 03:15:07 -0500 (Thu, 29 Jun 2006) | 1 line
Changed paths:
   M /trunk/plugins/profinet/packet-pn-mrp.c

remove some "unused parameter" warnings
------------------------------------------------------------------------
r18607 | ulfl | 2006-06-29 03:16:57 -0500 (Thu, 29 Jun 2006) | 1 line
Changed paths:
   M /trunk/plugins/profinet/packet-pn-ptcp.c

remove a "differ in signedness" warnings
------------------------------------------------------------------------
r18608 | sahlberg | 2006-06-29 03:31:38 -0500 (Thu, 29 Jun 2006) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-imap.c
   M /trunk/epan/dissectors/packet-pop.c

make these two protocols (that are commonly transported atop SSL) register themself with their name   so the new SSL preference parsing will be able to find them



------------------------------------------------------------------------
r18609 | sahlberg | 2006-06-29 04:06:41 -0500 (Thu, 29 Jun 2006) | 13 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ssl.c

ssl update     register protocols with a decryption key with the protocol name instead of a "tunneled protocol" fake port thing.

this break old preference settings   but as we havent shipped any win32 version with this feature yet    it shouldnt be any drama



see wiki for updates on the new format


(we still need many many updates and cleanups to the code   but the non-backward compatible preference change must go in asap)



------------------------------------------------------------------------
r18610 | guy | 2006-06-29 04:53:12 -0500 (Thu, 29 Jun 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-eapol.c

Fix description of EAPOL Key Descriptor Version values, as per mail from
Michael Stevens.

------------------------------------------------------------------------
r18611 | lego | 2006-06-29 08:49:56 -0500 (Thu, 29 Jun 2006) | 6 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/plugins/lua/Makefile.am
   M /trunk/plugins/lua/elua_gui.c
   M /trunk/plugins/lua/elua_proto.c

Some improvements to the Lua plugin:
- Makefile.am fix: elua_register.h generation + checking serialized
- ProtoField.new(..) parameter parsing fix and changes
- enabling gui_enabled() function in Lua (typo fix, thanks to Tamas Regos)


------------------------------------------------------------------------
r18612 | kukosa | 2006-06-29 10:26:41 -0500 (Thu, 29 Jun 2006) | 2 lines
Changed paths:
   M /trunk/asn1/h235/packet-h235-template.c
   M /trunk/asn1/h450/packet-h450-template.c
   M /trunk/asn1/nbap/Makefile
   M /trunk/asn1/nbap/Makefile.nmake
   M /trunk/asn1/ranap/Makefile
   M /trunk/asn1/ranap/Makefile.nmake
   M /trunk/asn1/ranap/ranap-exp.cnf
   M /trunk/asn1/rnsap/Makefile
   M /trunk/asn1/rnsap/Makefile.nmake
   M /trunk/asn1/rnsap/packet-rnsap-template.c
   M /trunk/epan/dissectors/packet-h225.c
   M /trunk/epan/dissectors/packet-h235.c
   M /trunk/epan/dissectors/packet-h245.c
   M /trunk/epan/dissectors/packet-h450.c
   M /trunk/epan/dissectors/packet-nbap.c
   M /trunk/epan/dissectors/packet-nbap.h
   M /trunk/epan/dissectors/packet-per.c
   M /trunk/epan/dissectors/packet-per.h
   M /trunk/epan/dissectors/packet-ranap.c
   M /trunk/epan/dissectors/packet-ranap.h
   M /trunk/epan/dissectors/packet-rnsap.c
   M /trunk/epan/dissectors/packet-rnsap.h
   M /trunk/epan/dissectors/packet-rrlp.c
   M /trunk/epan/dissectors/packet-t38.c
   M /trunk/epan/dissectors/packet-ulp.c
   M /trunk/tools/asn2wrs.py

use "type function" instead of "field function" in PER CHOICE and SEQUENCE tables
it matches asn2wrs approach and makes generated dissectors source shorter
------------------------------------------------------------------------
r18613 | ulfl | 2006-06-29 13:51:30 -0500 (Thu, 29 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcerpc.c
   M /trunk/epan/dissectors/packet-dcerpc.h

keep the (optional) Object UUID in the call value
------------------------------------------------------------------------
r18614 | ulfl | 2006-06-29 14:04:33 -0500 (Thu, 29 Jun 2006) | 3 lines
Changed paths:
   M /trunk/gtk/main.c

If the user sets a time reference and the time display format is currently not "Seconds Since Beginning of Capture", ask him if Wireshark should switch to that format. It's the only display format where a time reference makes sense.

It's just annoying to set a time reference without seeing a reasonable result on the screen.
------------------------------------------------------------------------
r18615 | ulfl | 2006-06-29 14:46:51 -0500 (Thu, 29 Jun 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcom-cba-acco.c
   M /trunk/epan/packet.c
   M /trunk/epan/packet_info.h

add various enhancements to the CBA-ACCO dissector, including an added profinet_type field to the packet_info struct
------------------------------------------------------------------------
r18616 | etxrab | 2006-06-29 15:39:53 -0500 (Thu, 29 Jun 2006) | 2 lines
Changed paths:
   M /trunk/asn1/ranap/packet-ranap-template.c
   M /trunk/epan/dissectors/packet-ranap.c
   M /trunk/epan/dissectors/packet-sua.c

Add a heuristic table to SUA (SUA and SCCP should share the same table) to heuristically
dissect RANAP ower SUA.
------------------------------------------------------------------------
r18617 | sahlberg | 2006-06-29 16:04:37 -0500 (Thu, 29 Jun 2006) | 6 lines
Changed paths:
   M /trunk/asn1/ldap/ldap.cnf
   M /trunk/asn1/ldap/packet-ldap-template.c
   M /trunk/epan/dissectors/packet-ber.c
   M /trunk/epan/dissectors/packet-ber.h
   M /trunk/epan/dissectors/packet-ldap.c
   M /trunk/epan/libwireshark.def

from metze

prettify dissection of filters containing substring and extensiblematch



------------------------------------------------------------------------
r18618 | jake | 2006-06-30 00:59:06 -0500 (Fri, 30 Jun 2006) | 4 lines
Changed paths:
   M /trunk/colorfilters

From Stephen Fisher:
The default colorfilters file in Wireshark has an entry titled IPX.  It
matches "ipx || stp" which should probably be "ipx || spx".

------------------------------------------------------------------------
r18619 | sahlberg | 2006-06-30 02:51:52 -0500 (Fri, 30 Jun 2006) | 6 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/packet-ndmp.c

from aaron christensen

fix dissection of get_auth_attr



------------------------------------------------------------------------
r18620 | jake | 2006-06-30 03:05:10 -0500 (Fri, 30 Jun 2006) | 2 lines
Changed paths:
   M /trunk/colorfilters

Do it properly now: "ipx || stx" -> "ipx || spx"

------------------------------------------------------------------------
r18621 | kukosa | 2006-06-30 05:18:25 -0500 (Fri, 30 Jun 2006) | 1 line
Changed paths:
   M /trunk/asn1/h450/packet-h450-template.c
   M /trunk/epan/dissectors/packet-h225.c
   M /trunk/epan/dissectors/packet-h235.c
   M /trunk/epan/dissectors/packet-h245.c
   M /trunk/epan/dissectors/packet-h450.c
   M /trunk/epan/dissectors/packet-nbap.c
   M /trunk/epan/dissectors/packet-ranap.c
   M /trunk/epan/dissectors/packet-rnsap.c
   M /trunk/epan/dissectors/packet-rrlp.c
   M /trunk/epan/dissectors/packet-t38.c
   M /trunk/epan/dissectors/packet-ulp.c
   M /trunk/tools/asn2wrs.py

fix wrong terminator record in per_sequence_t tables
------------------------------------------------------------------------
r18622 | guy | 2006-06-30 18:37:49 -0500 (Fri, 30 Jun 2006) | 6 lines
Changed paths:
   M /trunk/tshark.c

Call init_progfile_dir() - on Windows, at least, it's necessary in order
to get the directory where the data files are stored, and on UN*X we
might have an option in the future to have it search there for data
files, to make it easier to run WireShark/TShark from the build
directory and have it find plugins, etc..

------------------------------------------------------------------------
r18623 | guy | 2006-06-30 19:07:52 -0500 (Fri, 30 Jun 2006) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ssl-utils.c

Use #if 0/#endif, not commenting out, to remove a routine, so we don't
have to worry about comments in the routine.

Fix up indentation a bit.

------------------------------------------------------------------------
r18624 | guy | 2006-06-30 19:08:34 -0500 (Fri, 30 Jun 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-dcom-cba-acco.c

true_false_strings are just structures, not arrays of structures.

------------------------------------------------------------------------
r18625 | guy | 2006-06-30 19:09:32 -0500 (Fri, 30 Jun 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-btrfcomm.c

Get rid of an unused variable.

------------------------------------------------------------------------
r18626 | guy | 2006-06-30 19:10:03 -0500 (Fri, 30 Jun 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ber.c

Get rid of an unused variable.

------------------------------------------------------------------------
r18627 | guy | 2006-06-30 19:11:49 -0500 (Fri, 30 Jun 2006) | 2 lines
Changed paths:
   M /trunk/asn1/cdt/cdt-exp.cnf
   M /trunk/asn1/cdt/packet-cdt-template.c
   M /trunk/asn1/cms/cms-exp.cnf
   M /trunk/asn1/cms/packet-cms-template.c
   M /trunk/asn1/x420/packet-x420-template.c
   M /trunk/asn1/x420/x420-exp.cnf
   M /trunk/asn1/x509af/packet-x509af-template.c
   M /trunk/asn1/x509af/x509af-exp.cnf
   M /trunk/asn1/x509if/packet-x509if-template.c
   M /trunk/asn1/x509if/x509if-exp.cnf
   M /trunk/epan/dissectors/packet-cdt.c
   M /trunk/epan/dissectors/packet-cms.c
   M /trunk/epan/dissectors/packet-x420.c
   M /trunk/epan/dissectors/packet-x509af.c
   M /trunk/epan/dissectors/packet-x509if.c

Include <epan/oid_resolv.h> to declare get_oid_str_name().

------------------------------------------------------------------------
r18628 | guy | 2006-06-30 21:22:28 -0500 (Fri, 30 Jun 2006) | 5 lines
Changed paths:
   M /trunk/capture_loop.c

Explicitly note that a "Please report this to the Wireshark developers"
is *NOT* a crash; if Wireshark had crashed, it couldn't have put up that
dialog.  (Yes, at least one bug report calls it a crash; see Ethereal
bug 1006 at http://bugs.ethereal.com/bugzilla/show_bug.cgi?id=1006.)

------------------------------------------------------------------------
r18629 | sahlberg | 2006-07-01 00:41:30 -0500 (Sat, 01 Jul 2006) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ssl.c

minor indentation changes

put an entry in the tree for the encrypted payload



------------------------------------------------------------------------
r18630 | ulfl | 2006-07-01 07:06:36 -0500 (Sat, 01 Jul 2006) | 1 line
Changed paths:
   M /trunk/gtk/expert_comp_dlg.c
   M /trunk/gtk/hostlist_ncp.c

mark unused parameters
------------------------------------------------------------------------
r18631 | ulfl | 2006-07-01 07:11:11 -0500 (Sat, 01 Jul 2006) | 3 lines
Changed paths:
   M /trunk/gtk/print_dlg.c

bugfix: open the Win32 print dialog a second time resulted in "funny" behaviour 

printing on Win32 uses the print to file "option", don't overwrite the internal settings while doing so
------------------------------------------------------------------------
r18632 | ulfl | 2006-07-01 07:13:54 -0500 (Sat, 01 Jul 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcom.c

remove two old comments
------------------------------------------------------------------------
r18633 | ulfl | 2006-07-01 07:15:37 -0500 (Sat, 01 Jul 2006) | 1 line
Changed paths:
   M /trunk/plugins/profinet/packet-dcerpc-pn-io.c
   M /trunk/plugins/profinet/packet-pn-dcp.c

remove some "signedness" warnings
------------------------------------------------------------------------
r18634 | ulfl | 2006-07-01 07:19:33 -0500 (Sat, 01 Jul 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcerpc.c

lower the expert info level from NOTE to CHAT for the multiple PDU message, as this is a common behaviour
------------------------------------------------------------------------
r18635 | ulfl | 2006-07-01 10:14:19 -0500 (Sat, 01 Jul 2006) | 1 line
Changed paths:
   M /trunk/plugins/profinet/packet-dcerpc-pn-io.c
   M /trunk/plugins/profinet/packet-pn-dcp.c

remove some warnings (2nd try)
------------------------------------------------------------------------
r18636 | jake | 2006-07-01 14:19:35 -0500 (Sat, 01 Jul 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-pgm.c

Rewrite of dissector: get rid of static structures and use helper functions available in the form of ptvcursor. Add AF_INET6 support to fix bug 961.
------------------------------------------------------------------------
r18637 | kukosa | 2006-07-03 02:03:57 -0500 (Mon, 03 Jul 2006) | 1 line
Changed paths:
   M /trunk/asn1/h450/packet-h450-template.c
   M /trunk/epan/dissectors/packet-h225.c
   M /trunk/epan/dissectors/packet-h235.c
   M /trunk/epan/dissectors/packet-h245.c
   M /trunk/epan/dissectors/packet-h450.c
   M /trunk/epan/dissectors/packet-nbap.c
   M /trunk/epan/dissectors/packet-per.c
   M /trunk/epan/dissectors/packet-per.h
   M /trunk/epan/dissectors/packet-ranap.c
   M /trunk/epan/dissectors/packet-rnsap.c
   M /trunk/epan/dissectors/packet-rrlp.c
   M /trunk/epan/dissectors/packet-t38.c
   M /trunk/epan/dissectors/packet-ulp.c
   M /trunk/tools/asn2wrs.py

remove name field from per_sequence_t structure, it can be retrieved from field information
------------------------------------------------------------------------
r18638 | jake | 2006-07-03 03:38:30 -0500 (Mon, 03 Jul 2006) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-bgp.c


From: Hannes Gredler
attached a patch for the BGP dissector for correct display of
VPLS NLRIs as per the latest spec (draft-ietf-l2vpn-vpls-bgp-08).

------------------------------------------------------------------------
r18639 | jake | 2006-07-03 04:26:19 -0500 (Mon, 03 Jul 2006) | 2 lines
Changed paths:
   M /trunk/doc/README.developer

Update the ptvcursors chapter.

------------------------------------------------------------------------
r18640 | etxrab | 2006-07-03 16:10:14 -0500 (Mon, 03 Jul 2006) | 6 lines
Changed paths:
   M /trunk/epan/dissectors/packet-gsm_a.c

From Nils Ljungberg:
activate_secondary_pdp_contex_acc - radio priority missing, QoS wrongly dekoded.
Fault in i detach_req: should be ELEM_OPT_TLV
identiy half-octeten ignored.
 "Cause" written as "LLC SAPI"
Decoding of TFT.
------------------------------------------------------------------------
r18641 | etxrab | 2006-07-03 16:18:36 -0500 (Mon, 03 Jul 2006) | 13 lines
Changed paths:
   M /trunk/diameter/imscxdx.xml
   M /trunk/epan/dissectors/packet-diameter.c

From Martin Mathieson:
packet-diameter.c
--------------------------
I completely reindented dissect_avps() before I made any changes, but 
when ignoring white space (in tkdiff, -w plus checking 'Ignore blanks 
when diffing'), its easy to see the small changes I've made:
- when fail to find AVP info, show code in tree parent in decimal (as 
specs do)
- add an expert info (undecoded, note) to indicate unknown AVP codes

diameter/imscxdx.xml
-------------------------------
- added 'Associated-Identities'
------------------------------------------------------------------------
r18642 | sahlberg | 2006-07-03 17:49:39 -0500 (Mon, 03 Jul 2006) | 5 lines
Changed paths:
   M /trunk/AUTHORS
   M /trunk/epan/dissectors/Makefile.common
   A /trunk/epan/dissectors/packet-exec.c

from Stephen Fisher

REXEC support


------------------------------------------------------------------------
r18643 | guy | 2006-07-03 19:58:08 -0500 (Mon, 03 Jul 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-fddi.c

Note what the standards are for FDDI.

------------------------------------------------------------------------
r18644 | sahlberg | 2006-07-03 20:56:52 -0500 (Mon, 03 Jul 2006) | 3 lines
Changed paths:
   M /trunk/asn1/snmp/packet-snmp-template.c
   M /trunk/epan/dissectors/packet-snmp.c

make format_var return ep allocated memory


------------------------------------------------------------------------
r18645 | sahlberg | 2006-07-03 21:15:55 -0500 (Mon, 03 Jul 2006) | 2 lines
Changed paths:
   M /trunk/asn1/snmp/packet-snmp-template.c
   M /trunk/epan/dissectors/packet-snmp.c

make format_oid use ep allocated memory internally instead of malloced memory

------------------------------------------------------------------------
r18646 | guy | 2006-07-03 21:23:15 -0500 (Mon, 03 Jul 2006) | 2 lines
Changed paths:
   M /trunk/gtk/main.c

Fix the usage output to all go to the same stream.

------------------------------------------------------------------------
r18647 | sahlberg | 2006-07-03 21:36:18 -0500 (Mon, 03 Jul 2006) | 8 lines
Changed paths:
   M /trunk/asn1/snmp/packet-snmp-template.c
   M /trunk/epan/dissectors/packet-snmp.c

make new_format_oid  return ep allocated data.

this also removes several small memory leaks through get_oid_name and get_oid_str_name where the callers nevber freed the data





------------------------------------------------------------------------
r18648 | sahlberg | 2006-07-03 22:15:58 -0500 (Mon, 03 Jul 2006) | 3 lines
Changed paths:
   M /trunk/asn1/snmp/packet-snmp-template.c
   M /trunk/epan/dissectors/packet-snmp.c

check_var_length can also return ewp allocated memory now


------------------------------------------------------------------------
r18649 | sahlberg | 2006-07-03 22:27:14 -0500 (Mon, 03 Jul 2006) | 6 lines
Changed paths:
   M /trunk/asn1/snmp/packet-snmp-template.c
   M /trunk/epan/dissectors/packet-snmp.c

replace the two remaining g_malloc with ep_alloc

this indirectly fixes a tiny memory leak with one of the g_mallocs



------------------------------------------------------------------------
r18650 | sahlberg | 2006-07-03 22:37:15 -0500 (Mon, 03 Jul 2006) | 5 lines
Changed paths:
   M /trunk/epan/dissectors/packet-tacacs.c

memory allocated by strdup is not frred by using g_free

replace with se storage


------------------------------------------------------------------------
r18651 | sahlberg | 2006-07-03 22:59:36 -0500 (Mon, 03 Jul 2006) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-tacacs.c

make the string allocated with g_,alloc   since preferences have a scope longer than se



------------------------------------------------------------------------
r18652 | kukosa | 2006-07-04 01:49:53 -0500 (Tue, 04 Jul 2006) | 1 line
Changed paths:
   M /trunk/asn1/h225/packet-h225-template.c
   M /trunk/asn1/h235/packet-h235-template.c
   M /trunk/asn1/h245/packet-h245-template.c
   M /trunk/asn1/h450/packet-h450-template.c
   M /trunk/asn1/nbap/packet-nbap-template.c
   M /trunk/asn1/ranap/packet-ranap-template.c
   M /trunk/asn1/rnsap/packet-rnsap-template.c
   M /trunk/epan/dissectors/packet-gtp.c
   M /trunk/epan/dissectors/packet-h225.c
   M /trunk/epan/dissectors/packet-h225.h
   M /trunk/epan/dissectors/packet-h235.c
   M /trunk/epan/dissectors/packet-h235.h
   M /trunk/epan/dissectors/packet-h245.c
   M /trunk/epan/dissectors/packet-h245.h
   M /trunk/epan/dissectors/packet-h450.c
   M /trunk/epan/dissectors/packet-nbap.c
   M /trunk/epan/dissectors/packet-per.c
   M /trunk/epan/dissectors/packet-per.h
   M /trunk/epan/dissectors/packet-ranap.c
   M /trunk/epan/dissectors/packet-ranap.h
   M /trunk/epan/dissectors/packet-rnsap.c
   M /trunk/epan/dissectors/packet-rrlp.c
   M /trunk/epan/dissectors/packet-t38.c
   M /trunk/epan/dissectors/packet-ulp.c
   M /trunk/epan/libwireshark.def
   M /trunk/tools/asn2wrs.py

few formal changes in PER dissector (rename asn_* types to asn1_* ones)
------------------------------------------------------------------------
r18653 | kukosa | 2006-07-04 04:02:26 -0500 (Tue, 04 Jul 2006) | 1 line
Changed paths:
   M /trunk/asn1/h235/packet-h235-template.c
   M /trunk/epan/dissectors/packet-h235.c

get rid of warning message
------------------------------------------------------------------------
r18654 | sahlberg | 2006-07-04 04:51:47 -0500 (Tue, 04 Jul 2006) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-pgm.c

coverity 201


remove some dead code introduced in the recent rewrite



------------------------------------------------------------------------
r18655 | jmayer | 2006-07-04 13:23:36 -0500 (Tue, 04 Jul 2006) | 3 lines
Changed paths:
   M /trunk/tools/pidl/MANIFEST
   M /trunk/tools/pidl/README
   M /trunk/tools/pidl/TODO
   M /trunk/tools/pidl/lib/Parse/Pidl/Dump.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/NDR.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba3/Parser.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba4/Header.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Typelist.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Wireshark/Conformance.pm
   M /trunk/tools/pidl/lib/Parse/Pidl/Wireshark/NDR.pm
   M /trunk/tools/pidl/pidl

Update to current samba branch (sorry, lost the samba changelog)
while maintaining the Ethereal -> Wireshark changes.

------------------------------------------------------------------------
r18656 | guy | 2006-07-04 13:27:07 -0500 (Tue, 04 Jul 2006) | 5 lines
Changed paths:
   M /trunk/wiretap/ascend.c

Don't test a variable in a loop if its value never changes.

Get rid of arguments and #defines that are no longer used as a result of
the previous change.

------------------------------------------------------------------------
r18657 | guy | 2006-07-04 13:32:32 -0500 (Tue, 04 Jul 2006) | 2 lines
Changed paths:
   M /trunk/wiretap/dbs-etherwatch.c

Fix indentation.

------------------------------------------------------------------------
r18658 | ulfl | 2006-07-04 13:35:23 -0500 (Tue, 04 Jul 2006) | 1 line
Changed paths:
   M /trunk/docbook/wsug_src/WSUG_app_files.xml

update the files information to reflect the current implementation, as some files can also reside in the personal profile for some time now
------------------------------------------------------------------------
r18659 | ulfl | 2006-07-04 13:40:51 -0500 (Tue, 04 Jul 2006) | 1 line
Changed paths:
   M /trunk/packaging/nsis/wireshark.nsi

copy over the files from the Ethereal user profile directory, if the Wireshark dir currently doesn't exist
------------------------------------------------------------------------
r18660 | etxrab | 2006-07-05 00:05:29 -0500 (Wed, 05 Jul 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-gsm_sms.c

From Willem Dekker:
The attached patch fixes this and converts the sms content (7 bit encoded, gms 03.38 alphabet)  into utf8.
------------------------------------------------------------------------
r18661 | etxrab | 2006-07-05 00:11:22 -0500 (Wed, 05 Jul 2006) | 7 lines
Changed paths:
   M /trunk/epan/dissectors/packet-isup.c

From Jeff Morriss:
- changes the ISUP dissector preference to follow MTP3's preference 
rather than having its own (similar to SCCP, M3UA, etc.).  I did not 
obsolete the old preference because it was never put out in a release 
(only SVN users would have seen it).  I can change that if desired.

- add dissection of ANSI CRM message
------------------------------------------------------------------------
r18662 | etxrab | 2006-07-05 00:18:06 -0500 (Wed, 05 Jul 2006) | 4 lines
Changed paths:
   M /trunk/gtk/voip_calls.c

From Martin Mathieson:
Mike Oliveras has indicated that for MGCP voip calls, 2 seconds may be a 
better timeout for still matching DLCX requests to a hung-up endpoint, 
as in this patch.
------------------------------------------------------------------------
r18663 | jmayer | 2006-07-05 09:57:25 -0500 (Wed, 05 Jul 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ieee80211.c

Add a comment about a Cisco proprietary tag.

------------------------------------------------------------------------
r18664 | jmayer | 2006-07-05 12:27:29 -0500 (Wed, 05 Jul 2006) | 1 line
Changed paths:
   M /trunk/manuf

Update manuf
------------------------------------------------------------------------
r18665 | gerald | 2006-07-05 13:47:21 -0500 (Wed, 05 Jul 2006) | 3 lines
Changed paths:
   M /trunk/epan/tvbuff.c

Make our tvb exists before we try to dereference it.  Fixes some of the 
current fuzz errors.

------------------------------------------------------------------------
r18666 | gerald | 2006-07-05 14:14:59 -0500 (Wed, 05 Jul 2006) | 3 lines
Changed paths:
   M /trunk/asn1/ldap/ldap.cnf
   M /trunk/epan/dissectors/packet-ldap.c

Fix a format string bug.  This should fix some of the current fuzz
crashes.

------------------------------------------------------------------------
r18667 | gerald | 2006-07-05 16:30:25 -0500 (Wed, 05 Jul 2006) | 5 lines
Changed paths:
   M /trunk/asn1/snmp/packet-snmp-template.c
   M /trunk/epan/dissectors/packet-snmp.c

Don't pass an empty OID to sprint_realloc_variable().  This should fix a 
recent fuzz error.

Fix up whitespace.

------------------------------------------------------------------------
r18668 | gerald | 2006-07-05 16:33:01 -0500 (Wed, 05 Jul 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ber.c

Fix an infinite loop in dissect_ber_tagged_type().  Fix up whitespace.

------------------------------------------------------------------------
r18669 | sahlberg | 2006-07-06 02:51:58 -0500 (Thu, 06 Jul 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/pidl/README

the pidl parameter is now  --ws-parser   and not --eth-parser


------------------------------------------------------------------------
r18670 | jmayer | 2006-07-06 05:39:37 -0500 (Thu, 06 Jul 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-t38.c

Includeing prefs.h once is sufficient
------------------------------------------------------------------------
r18671 | jmayer | 2006-07-06 05:58:48 -0500 (Thu, 06 Jul 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/Makefile.common
   A /trunk/epan/dissectors/packet-cisco-wids.c

New dissector for the cisco wireless ids communication protocol
(name invented by me, better suggenstions welcome).

------------------------------------------------------------------------
r18672 | gerald | 2006-07-06 11:47:50 -0500 (Thu, 06 Jul 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ber.c

Catch an infinite loop.

------------------------------------------------------------------------
r18673 | gerald | 2006-07-06 14:52:48 -0500 (Thu, 06 Jul 2006) | 2 lines
Changed paths:
   M /trunk/Makefile.nmake
   M /trunk/config.nmake
   M /trunk/tools/win32-setup.sh

Update to Net-SNMP 5.3.0.1.

------------------------------------------------------------------------
r18674 | gerald | 2006-07-06 15:19:01 -0500 (Thu, 06 Jul 2006) | 2 lines
Changed paths:
   M /trunk/config.nmake
   M /trunk/configure.in
   M /trunk/docbook/release-notes.xml

Set the version to 0.99.2, since we're building releases from /trunk again.

------------------------------------------------------------------------
r18675 | ulfl | 2006-07-06 16:39:50 -0500 (Thu, 06 Jul 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcerpc.c

add another CBA DCOM HRESULT
------------------------------------------------------------------------
r18676 | gerald | 2006-07-06 17:34:41 -0500 (Thu, 06 Jul 2006) | 2 lines
Changed paths:
   M /trunk/Makefile.am
   A /trunk/asn1/Makefile.am
   M /trunk/configure.in

Add the asn1 directory to the distribution.

------------------------------------------------------------------------
r18677 | gerald | 2006-07-06 19:45:54 -0500 (Thu, 06 Jul 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ansi_map.c
   M /trunk/epan/dissectors/packet-fw1.c
   M /trunk/epan/dissectors/packet-mq.c
   M /trunk/epan/dissectors/packet-xml.c

Fix a few format string bugs found by Ilja van Sprundel.

------------------------------------------------------------------------
r18678 | gerald | 2006-07-06 23:01:09 -0500 (Thu, 06 Jul 2006) | 12 lines
Changed paths:
   M /trunk/epan/dissectors/packet-mount.c
   M /trunk/epan/dissectors/packet-ncp-nmas.c
   M /trunk/epan/dissectors/packet-ndps.c
   M /trunk/epan/dissectors/packet-ntp.c

Fix more bugs found by Ilja van Sprundel.

packet-mount.c:
  Don't allocate a huge amount of memory.

packet-ntp.c:
  Fix a possible format string bug.

packet-ndps.c:
packet-nmas.c:
  Fix an off-by-one buffer error.

------------------------------------------------------------------------
r18679 | etxrab | 2006-07-06 23:51:12 -0500 (Thu, 06 Jul 2006) | 7 lines
Changed paths:
   M /trunk/diameter/chargecontrol.xml
   M /trunk/epan/dissectors/packet-diameter.c

From Martin Mathieson:

packet-diameter.c
- show vendor ID as a decimal number

diameter/chargecontrol.xml
- add more AVP entries from 3GPP TS 32.299 (6.6.0)
------------------------------------------------------------------------
r18680 | jmayer | 2006-07-07 05:47:18 -0500 (Fri, 07 Jul 2006) | 1 line
Changed paths:
   M /trunk/asn1/Makefile.am

propset ....
------------------------------------------------------------------------
r18681 | gerald | 2006-07-07 10:13:11 -0500 (Fri, 07 Jul 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ber.c

Fix another infinite loop.  Remove redundant code.

------------------------------------------------------------------------
r18682 | gerald | 2006-07-07 13:49:24 -0500 (Fri, 07 Jul 2006) | 2 lines
Changed paths:
   M /trunk/tools/win32-setup.sh

Point to the latest repository directory.

------------------------------------------------------------------------
r18683 | gerald | 2006-07-07 15:11:06 -0500 (Fri, 07 Jul 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ber.c

Fix our loop checks.

------------------------------------------------------------------------
r18684 | ulfl | 2006-07-07 16:01:01 -0500 (Fri, 07 Jul 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-mount.c

add missing #include <epan/emem.h> to fix a related warning
------------------------------------------------------------------------
r18685 | gerald | 2006-07-07 17:39:23 -0500 (Fri, 07 Jul 2006) | 16 lines
Changed paths:
   M /trunk/epan/dissectors/packet-mq.c
   M /trunk/epan/dissectors/packet-ospf.c
   M /trunk/epan/dissectors/packet-pktc.c
   M /trunk/epan/dissectors/packet-rpc.c

Fix more bugs reported by Ilja van Sprundel.

packet-pktc.c:
  Catch an underflow.

packet-ospf.c:
  Don't burn CPU cycles unnecessarily.

packet-rpc.c:
  Catch an overflow.

packet-mq.c:
  Check a header size.

Fix up whitespace.

------------------------------------------------------------------------
r18686 | gerald | 2006-07-07 20:40:53 -0500 (Fri, 07 Jul 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ber.c

Catch another infinite loop.  Fixes bug 985.

------------------------------------------------------------------------
r18687 | ulfl | 2006-07-08 09:55:43 -0500 (Sat, 08 Jul 2006) | 4 lines
Changed paths:
   M /trunk/epan/dissectors/packet-dcerpc.c

if the request/response subdissector couldn't be called because of missing bind information,
add a generated field telling the user and add an expert info entry

This often happens when the capture misses the binding procedure at the beginning of a conversation "capture start too late".
------------------------------------------------------------------------
r18688 | ulfl | 2006-07-08 10:04:20 -0500 (Sat, 08 Jul 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-dcerpc.c

don't use only upper case letters for ResolveWin32UUID parameter and variable names
------------------------------------------------------------------------
r18689 | jmayer | 2006-07-09 06:18:13 -0500 (Sun, 09 Jul 2006) | 1 line
Changed paths:
   M /trunk/asn1/cdt/packet-cdt-template.c
   M /trunk/epan/dissectors/packet-cdt.c
   M /trunk/epan/dissectors/packet-cdt.h

include packet-cdt.h to declare prototypes
------------------------------------------------------------------------
r18690 | jmayer | 2006-07-09 06:20:39 -0500 (Sun, 09 Jul 2006) | 1 line
Changed paths:
   M /trunk/asn1
   M /trunk/asn1/cdt

Update svn:ignore
------------------------------------------------------------------------
r18691 | jmayer | 2006-07-09 07:11:30 -0500 (Sun, 09 Jul 2006) | 1 line
Changed paths:
   M /trunk/epan/dissectors/packet-3com-njack.c
   M /trunk/epan/dissectors/packet-3com-xns.c
   M /trunk/epan/dissectors/packet-3g-a11.c
   M /trunk/epan/dissectors/packet-9p.c
   M /trunk/epan/dissectors/packet-cisco-wids.c

Start declaring the proto_reg... functions to fix 'warning: no previous declaration'
------------------------------------------------------------------------
r18692 | gerald | 2006-07-09 12:58:28 -0500 (Sun, 09 Jul 2006) | 3 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ssh.c

One more bug from Ilja van Sprundel.  Be more paranoid about our offset during
a loop.  Fix up whitespace.

------------------------------------------------------------------------
r18693 | gerald | 2006-07-09 17:12:02 -0500 (Sun, 09 Jul 2006) | 7 lines
Changed paths:
   M /trunk/asn1/snmp/packet-snmp-template.c
   M /trunk/epan/dissectors/packet-ber.c
   M /trunk/epan/dissectors/packet-mount.c
   M /trunk/epan/dissectors/packet-mq.c
   M /trunk/epan/dissectors/packet-pktc.c
   M /trunk/epan/dissectors/packet-rpc.c
   M /trunk/epan/dissectors/packet-snmp.c
   M /trunk/epan/dissectors/packet-ssh.c

In new_format_oid(), handle a zero-length OID.

Fix a bug introduced recently in packet-rpc.c.

Replace DISSECTOR_ASSERT() with THROW(ReportedBoundsError) in my recent 
checkins, since fuzz-test.sh sets WIRESHARK_ABORT_ON_DISSECTOR_BUG.

------------------------------------------------------------------------
r18694 | guy | 2006-07-09 17:45:48 -0500 (Sun, 09 Jul 2006) | 8 lines
Changed paths:
   M /trunk/doc/capinfos.pod
   M /trunk/doc/dumpcap.pod
   M /trunk/doc/editcap.pod
   M /trunk/doc/idl2wrs.pod
   M /trunk/doc/mergecap.pod
   M /trunk/doc/text2pcap.pod
   M /trunk/doc/tshark.pod
   M /trunk/doc/wireshark-filter.pod.template
   M /trunk/doc/wireshark.pod

Use L<> on all links.

Don't use anything on man page references - pod2man handles that.

Don't refer to "the capture file format section" of the Wireshark man
page, as there's no section explicitly labelled as such; just refer to
the beginning of the DESCRIPTION section.

------------------------------------------------------------------------
r18695 | gerald | 2006-07-09 20:05:24 -0500 (Sun, 09 Jul 2006) | 1 line
Changed paths:
   M /trunk/asn1/snmp/packet-snmp-template.c
   M /trunk/epan/dissectors/packet-snmp.c

Fix compilation on systems with Net-SNMP.
------------------------------------------------------------------------
r18696 | kukosa | 2006-07-10 00:05:01 -0500 (Mon, 10 Jul 2006) | 2 lines
Changed paths:
   M /trunk/epan/dissectors/packet-oicq.c

from DuBingyao
patch for the OICQ dissector to identify unknown command
------------------------------------------------------------------------
r18697 | gerald | 2006-07-10 08:42:59 -0500 (Mon, 10 Jul 2006) | 3 lines
Changed paths:
   M /trunk/asn1/ldap/packet-ldap-template.c
   M /trunk/epan/dissectors/packet-ldap.c

Reset ldm_tree in dissect_ldap_pdu().  Fixes a couple of the current fuzz 
bugs.

------------------------------------------------------------------------
r18698 | gerald | 2006-07-10 13:55:15 -0500 (Mon, 10 Jul 2006) | 2 lines
Changed paths:
   M /trunk/doc/capinfos.pod
   M /trunk/doc/editcap.pod
   M /trunk/doc/mergecap.pod
   M /trunk/doc/tshark.pod

Remove the numeric component in man page links.

------------------------------------------------------------------------
r18699 | gerald | 2006-07-10 14:54:41 -0500 (Mon, 10 Jul 2006) | 10 lines
Changed paths:
   M /trunk/epan/dissectors/packet-ndmp.c
   M /trunk/epan/dissectors/packet-nfs.c

Two more bugs from Ilja van Sprundel.

packet-ndmp.c:
  Fix our payload length check.

packet-nfs.c:
  Check for a maximum bitmap length.

Fix up whitespace.

------------------------------------------------------------------------
r18705 | gerald | 2006-07-10 15:49:33 -0500 (Mon, 10 Jul 2006) | 2 lines
Changed paths:
   A /trunk-0.99.2 (from /trunk:18704)
   M /trunk-0.99.2/gtk/Makefile.common
   A /trunk-0.99.2/gtk/firewall_dlg.h
   M /trunk-0.99.2/gtk/menu.c

Create the 0.99.2 branch.

------------------------------------------------------------------------
r18707 | gerald | 2006-07-10 16:08:43 -0500 (Mon, 10 Jul 2006) | 3 lines
Changed paths:
   M /trunk-0.99.2/gtk/Makefile.common
   D /trunk-0.99.2/gtk/firewall_dlg.h
   M /trunk-0.99.2/gtk/menu.c
   A /trunk-0.99.2/version.conf

Add a version.conf file.  Remove some things that made it into the branch
copy, but aren't quite ready for release.

------------------------------------------------------------------------
r18711 | gerald | 2006-07-11 10:19:00 -0500 (Tue, 11 Jul 2006) | 3 lines
Changed paths:
   M /trunk-0.99.2/version.conf

Update the version to pre2 (although we'll probably go straight to the
final release).

------------------------------------------------------------------------
r18712 | gerald | 2006-07-11 10:19:58 -0500 (Tue, 11 Jul 2006) | 8 lines
Changed paths:
   M /trunk-0.99.2/epan/dissectors/packet-ncp-nmas.c
   M /trunk-0.99.2/epan/dissectors/packet-ndps.c

Copy over r18710 from the trunk:

User: sahlberg
Date: 2006/07/11 03:19 AM

Log:
 fix two of iljas bugs

------------------------------------------------------------------------
r18716 | gerald | 2006-07-11 13:24:24 -0500 (Tue, 11 Jul 2006) | 12 lines
Changed paths:
   M /trunk-0.99.2/epan/dissectors/packet-eapol.c

Copy over r18713 from the trunk:

User: jmayer
Date: 2006/07/11 04:18 PM

Log:
 Bugfix: If we have an rc4 key and the length remaining for the
 actual key is 0, then this isn't a malformed packet. The key
 locally generated by the peer itself should be used.



------------------------------------------------------------------------
r18717 | gerald | 2006-07-11 13:27:12 -0500 (Tue, 11 Jul 2006) | 19 lines
Changed paths:
   M /trunk-0.99.2/epan/dissectors/packet-afp.c
   M /trunk-0.99.2/epan/dissectors/packet-m2pa.c
   M /trunk-0.99.2/epan/dissectors/packet-tacacs.c
   M /trunk-0.99.2/epan/dissectors/packet-winsrepl.c

Copy more stuff from the trunk:

r18714:
User: gerald
Date: 2006/07/11 05:53 PM

Log:
 More from Ilja van Sprundel.  When we call tvb_new_subset() with a
 length fetched using tvb_get_netohl(), make sure the length ends up
 being positive.


r18715:
User: tuexen
Date: 2006/07/11 06:19 PM

Log:
 Get it compiling...

------------------------------------------------------------------------
