Fix download URLs in the release notes. Disable building release-notes.txt,
authorGerald Combs <gerald@wireshark.org>
Wed, 28 Dec 2005 16:19:31 +0000 (16:19 -0000)
committerGerald Combs <gerald@wireshark.org>
Wed, 28 Dec 2005 16:19:31 +0000 (16:19 -0000)
since the Windows build server doesn't have elinks.  Copy over ChangeLog and
NEWS from 0.10.14.

svn path=/trunk/; revision=16912

ChangeLog
NEWS
docbook/Makefile
docbook/release-notes.xml

index 8700833dd1d5b682ebae06cfcdfd06ea860aeda8..4a4a28b3f03502d62132b38d84ddc86eca1c14cc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
 ------------------------------------------------------------------------
-r16192 | gerald | 2005-10-11 12:55:40 -0500 (Tue, 11 Oct 2005) | 159 lines
-Changed paths:
-   M /releases/ethereal-0.10.13/capture.c
-   M /releases/ethereal-0.10.13/capture_loop.c
-   M /releases/ethereal-0.10.13/capture_opts.c
-   M /releases/ethereal-0.10.13/capture_sync.c
-   A /releases/ethereal-0.10.13/doc/README.malloc
-   M /releases/ethereal-0.10.13/doc/editcap.pod
-   M /releases/ethereal-0.10.13/doc/ethereal.pod
-   M /releases/ethereal-0.10.13/doc/tethereal.pod
-   M /releases/ethereal-0.10.13/docbook/Makefile
-   M /releases/ethereal-0.10.13/epan/Makefile.am
-   M /releases/ethereal-0.10.13/epan/dissectors/packet-cops.c
-   M /releases/ethereal-0.10.13/epan/dissectors/packet-h225.c
-   M /releases/ethereal-0.10.13/epan/dissectors/packet-h225.h
-   M /releases/ethereal-0.10.13/epan/dissectors/packet-h235.c
-   M /releases/ethereal-0.10.13/epan/dissectors/packet-h245.c
-   M /releases/ethereal-0.10.13/epan/dissectors/packet-h450.c
-   M /releases/ethereal-0.10.13/epan/dissectors/packet-h450.h
-   M /releases/ethereal-0.10.13/epan/dissectors/packet-per.c
-   M /releases/ethereal-0.10.13/epan/dissectors/packet-per.h
-   M /releases/ethereal-0.10.13/epan/dissectors/packet-xml.c
-   M /releases/ethereal-0.10.13/epan/dtd.h
-   M /releases/ethereal-0.10.13/epan/dtd_grammar.lemon
-   M /releases/ethereal-0.10.13/epan/dtd_parse.l
-   M /releases/ethereal-0.10.13/epan/dtd_preparse.l
-   M /releases/ethereal-0.10.13/epan/emem.c
-   M /releases/ethereal-0.10.13/epan/enterprise-numbers
-   M /releases/ethereal-0.10.13/file.c
-   M /releases/ethereal-0.10.13/gtk/capture_dlg.c
-   M /releases/ethereal-0.10.13/gtk/gui_utils.c
-   M /releases/ethereal-0.10.13/gtk/help_dlg.c
-   M /releases/ethereal-0.10.13/gtk/main.c
-   M /releases/ethereal-0.10.13/log.h
-   M /releases/ethereal-0.10.13/plugins/h223/packet-h223.c
-   M /releases/ethereal-0.10.13/tethereal.c
-   M /releases/ethereal-0.10.13/tools/asn2eth.py
-
-Copy over a bunch of fixes and updates from the trunk:
-
-cat !$
-cat ../sandboxes/svn.log
-r16132:
-   M /trunk/epan/dissectors/packet-cops.c
-
-Don't try to strip the last byte from a zero-byte OID.  Fixes bug 503.
-
-r16134:
-   M /trunk/gtk/main.c
-
-fix 369: we must do some more GUI stuff in capture_update_started(),
-as GUI state get's cleared while switching to the next "multiple file" because of a call to cf_close()
-
-r16135:
-   M /trunk/capture_loop.c
+r16878 | gerald | 2005-12-21 20:06:39 -0600 (Wed, 21 Dec 2005) | 2 lines
+Changed paths:
+   A /releases/ethereal-0.10.14 (from /trunk:16877)
 
-bugfix: reset the packet counter to zero, if switching to the next "multiple file". This fixes the live update of the packet output after switching to another capture file
+Branch off the 0.10.14 release.
 
-r16136:
-   M /trunk/file.c
-   M /trunk/gtk/gui_utils.c
-   M /trunk/gtk/main.c
-   M /trunk/log.h
+------------------------------------------------------------------------
+r16877 | jmayer | 2005-12-21 19:36:42 -0600 (Wed, 21 Dec 2005) | 8 lines
+Changed paths:
+   M /trunk/epan/proto.c
 
-fix a packet_list_freeze / thaw pair, if a return comes in it's way
-add a g_warning() call if an error occured while reading from capture file (while doing a live update), usually shouldn't happen but is difficult to debug *if* it happens
-add a new log domain LOG_DOMAIN_MAIN and the standard log handler for it
-add some (partly commented out) g_log() calls, useful for GUI sequence debugging
+Jaap Keuter:
 
-r16137:
-   M /trunk/tethereal.c
+While looking into bug 239 I found a type mismatch in proto.c. Even
+though tree_is_expanded is defined as a (gboolean *) the memory
+allocation is carried out using sizeof (gint *). The attached patch
+fixes this.
 
-add missing #include "capture_errs.h"
 
-r16138:
+------------------------------------------------------------------------
+r16876 | jmayer | 2005-12-21 19:33:56 -0600 (Wed, 21 Dec 2005) | 3 lines
+Changed paths:
    M /trunk/doc/editcap.pod
 
-add missing -E parameter to the Options section
-
-r16141:
-   M /trunk/epan/dissectors/packet-per.c
-
-Octest string of (size 2) does not dissplay correctly.
-
-Handle multiple messages in a TCP segment, reassembly  still needed.
-
-r16143:
-   M /trunk/epan/enterprise-numbers
-
-Update enterprise-numbers from http://www.iana.org/assignments/enterprise-numbers
-
-r16144:
-   M /trunk/epan/emem.c
-
-ep_strndup and se_strndup do not have to expect strings to be null terminated.
+Jaap Keuter:
+        Add the documentation part of the fix for bug 379
 
-r16145:
-   M /trunk/epan/dtd_preparse.l
-
-remove file inclusion code altoghether and few other changes
+------------------------------------------------------------------------
+r16875 | jmayer | 2005-12-21 19:26:04 -0600 (Wed, 21 Dec 2005) | 3 lines
+Changed paths:
+   M /trunk/epan/dissectors/Makefile.common
+   A /trunk/epan/dissectors/packet-msnlb.c
 
-r16147:
-   M /trunk/epan/dissectors/packet-xml.c
-   M /trunk/epan/dtd.h
-   M /trunk/epan/dtd_grammar.lemon
-   M /trunk/epan/dtd_parse.l
+Jaap Keuter:
+        Add MS NLB buildin dissector
 
-remove location from dtd_build_data_t avoiding to (double) free it.
+------------------------------------------------------------------------
+r16874 | gerald | 2005-12-21 19:23:27 -0600 (Wed, 21 Dec 2005) | 43 lines
+Changed paths:
+   M /trunk/AUTHORS
+   M /trunk/gtk/tcp_graph.c
 
-r16148:
-   M /trunk/capture.c
+From Bill Meier:
 
-minor fix: fix the sequence while finishing a live capture, so the statusbar information about the file size is correct
+After investigating the time-sequence graphs (Stevens and tcptrace) produced 
+using an FTP capture file supplied by Eduardo Segura 
+(see http://www.ethereal.com/lists/ethereal-users/200512/msg00153.html ) 
+I've identified several problems in tcp_trace.c.
 
-r16149:
-   M /trunk/capture_loop.c
-   M /trunk/capture_opts.c
-   M /trunk/capture_sync.c
-   M /trunk/doc/ethereal.pod
-   M /trunk/doc/tethereal.pod
-   M /trunk/gtk/capture_dlg.c
-   M /trunk/tethereal.c
+The problems mostly involve incorrect determination of the lower/upper 
+sequence number bounds (for the Y axis) in certain cases (e.g. having to do
+with 'partial' conversations).
 
-fix Ethereal so command line capture parameter will work with kilobytes (again)
-remove Byte(s) from the dropdown list of filesizes, this doesn't make sense
-replace 1000 with 1024, as all (modern?) file managers are based on 1024 bytes for a kilobyte (the old KB vs. KiB controversy)
+I've reworked the '...get_bounds' code to handle cases such as:
 
-r16150:
-   M /trunk/gtk/main.c
+1. out of order data segments (e.g.: the first segment in a captured
+conversation has a higher sequence number than a later segment);
 
-minor bugfix: while closing a capture file, update the packets statusbar *after* closing the file
+2. 'ack' sequence numbers for initial ack segments in a conversation lower
+than the sequence numbers of the initial data segments;
 
-r16151:
-   M /trunk/plugins/h223/packet-h223.c
+3. maximum 'ack + win' sequence number in a conversation greater than the 
+max data sequence number;
 
-Don't call "g_assert()" in dissectors - call "DISSECTOR_ASSERT()".
+4. Stevens graph: only use data segment sequence numbers when 
+determining bounds;
 
-r16153:
-   M /trunk/epan/dtd_parse.l
+5. TCP RST packet without 'ack' flag: do not try to use the 'ack' seq num from
+the packet in this case. (This was the specific cause of the originally reported
+problem).
 
-"./dtd_parse.l", line 167: warning, rule cannot be matched
 
-the . matches one char as {special_char} does so {special_char} won't have been matched. change that for a non ">"
+I've also reworked the tcptrace display code slightly to properly handle 
+the initial ack packet of a sequence;
 
-r16154:
-   M /trunk/epan/dissectors/packet-xml.c
+As an example of the some of the fixes the Ethereal tcptrace style graph 
+of the following conversation fragment will now be similar to the graph 
+produced by Tcptrace.
 
-do not free the element name, as its been passed to the hf array.
+data:  seq 10000 len 100
+data:  seq 10100 len 200
+ack:   ack 5000  win 6000
+ack:   ack 5400  win 5600 
 
-r16157:
-   A /trunk/doc/README.malloc
 
-add initial  better than nothing   ep/se allocation documentation
+------------------------------------------------------------------------
+r16873 | jmayer | 2005-12-21 19:08:07 -0600 (Wed, 21 Dec 2005) | 4 lines
+Changed paths:
+   M /trunk/epan/dissectors/packet-3com-njack.c
 
-r16165:
-   M /trunk/doc/README.malloc
+- Add max frame size
+- Add port power forwarding
+- Some more field cleanups
 
-Add some missing descriptions
+------------------------------------------------------------------------
+r16872 | gerald | 2005-12-21 10:49:47 -0600 (Wed, 21 Dec 2005) | 2 lines
+Changed paths:
+   M /trunk/config.nmake
+   M /trunk/configure.in
+   M /trunk/docbook/release-notes.xml
 
-r16167:
-   M /trunk/epan/emem.c
+Prep for 0.10.14.
 
-make .._strndup() not to call strndup.
+------------------------------------------------------------------------
+r16871 | jmayer | 2005-12-21 05:21:49 -0600 (Wed, 21 Dec 2005) | 8 lines
+Changed paths:
+   M /trunk/epan/dissectors/packet-3com-njack.c
 
-r16168:
-   M /trunk/doc/README.malloc
+- Don't use numbers when there are enum values
+- Better nameing of tfs_ arrays
+- Name and dissect "version" field (previously unknown)
+- Name and dissect "add tag scheme" (previously unknown)
+- Add lots of comments about meanings in the port data
+- The first byte in the set command is probably some salt value
 
-set Id and eol-style
 
-r16169:
-   M /trunk/gtk/help_dlg.c
+------------------------------------------------------------------------
+r16870 | guy | 2005-12-21 02:59:52 -0600 (Wed, 21 Dec 2005) | 5 lines
+Changed paths:
+   M /trunk/gtk/about_dlg.c
+   M /trunk/gtk/main.c
+   M /trunk/tethereal.c
+   M /trunk/version_info.c
+   M /trunk/version_info.h
 
-fix the link to the online users-guide
+Provide not only copyright information, but a GPL blurb, in all the
+version/usage messages.
 
-r16172:
-   M /trunk/epan/Makefile.am
+Put newlines at the end of various version strings.
 
-Add sminmpec.c to maintainer-clean
+------------------------------------------------------------------------
+r16869 | sahlberg | 2005-12-21 02:48:59 -0600 (Wed, 21 Dec 2005) | 7 lines
+Changed paths:
+   M /trunk/epan/dissectors/packet-smb.c
 
-r16181:
-   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-h235.c
-   M /trunk/epan/dissectors/packet-h245.c
-   M /trunk/epan/dissectors/packet-h450.c
-   M /trunk/epan/dissectors/packet-h450.h
-   M /trunk/epan/dissectors/packet-per.c
-   M /trunk/epan/dissectors/packet-per.h
-   M /trunk/tools/asn2eth.py
+add dissection of two more NTCreateAndX bits :    
+open by file id 
+and
+backup intent
 
-Fix problems with bitstring:
-- dissect_per_bitstring needs to know if extention exists or not.
-- Fixes for bitstring sizes up to 16 ( where max = min ).
-tinkle FC3:~/devel/ethereal$
 
 
 ------------------------------------------------------------------------
-r16131 | gerald | 2005-10-05 14:19:04 -0500 (Wed, 05 Oct 2005) | 3 lines
+r16868 | etxrab | 2005-12-20 12:38:13 -0600 (Tue, 20 Dec 2005) | 6 lines
 Changed paths:
-   A /releases/ethereal-0.10.13 (from /trunk:16130)
+   M /trunk/epan/dissectors/packet-enip.c
+   M /trunk/epan/dissectors/packet-mip.c
 
-Carpe Buildbot.  Copy off the 0.10.13 release directory while the builds are
-stable, more or less.
+From jaap Keuter:
+Taking a random dissector from the list on the Wiki I picked packet-enip.c. Nothing wrong with this one, I still ememified it.
 
-------------------------------------------------------------------------
-r16130 | jmayer | 2005-10-05 10:44:04 -0500 (Wed, 05 Oct 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-amr.c
-   M /trunk/epan/dissectors/packet-csm-encaps.c
+From Bart Braem:
+packet-mip.c does not have support for all registration denials by the foreign agent, code 77 was left out. The attached patch fixes that.
 
-Don't reinvent the wheel, use val_to_str/match_strval
 ------------------------------------------------------------------------
-r16129 | jmayer | 2005-10-05 10:43:07 -0500 (Wed, 05 Oct 2005) | 1 line
+r16867 | etxrab | 2005-12-20 12:26:28 -0600 (Tue, 20 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/manuf
-   M /trunk/wka.tmpl
+   M /trunk/asn1/ansi_map/ansi_map.asn
+   M /trunk/asn1/ansi_map/ansi_map.cnf
+   M /trunk/asn1/ansi_map/packet-ansi_map-template.c
 
-Add two Enterasys STP multicast MACs
+Add ASN1 code from some more 3GPP2 dockuments.
 ------------------------------------------------------------------------
-r16128 | sahlberg | 2005-10-05 08:39:44 -0500 (Wed, 05 Oct 2005) | 3 lines
+r16866 | jmayer | 2005-12-20 03:23:42 -0600 (Tue, 20 Dec 2005) | 1 line
 Changed paths:
-   A /trunk/epan/dissectors/pidl/IDL_LICENSE.txt
-
-add the licence file for the samba4 copied files
-
+   A /trunk/epan/dissectors/packet-rnsap.c
+   A /trunk/epan/dissectors/packet-rnsap.h
 
+packet-rnsap.[hc] were added to Makefile.common but missing from svn
 ------------------------------------------------------------------------
-r16127 | sahlberg | 2005-10-05 08:25:18 -0500 (Wed, 05 Oct 2005) | 5 lines
+r16865 | jmayer | 2005-12-20 02:35:53 -0600 (Tue, 20 Dec 2005) | 8 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-fcels.c
+   M /trunk/epan/dissectors/packet-radius.c
+   M /trunk/epan/dissectors/packet-xml.c
 
-dissect one more bitfield
-get rid of some strcpy()
-get rid of a temporary string
+packet-radius.c, packet-xml.c:
+        Fix a memory leak found by valgrind:
+        Although dir isn't a directory it may still use memory
 
+packet-xml.c:
+        Reformat the relevant function in packet-xml.c to be readable on systems
+        where a tab is 8 spaces.
 
 ------------------------------------------------------------------------
-r16126 | sahlberg | 2005-10-05 07:42:34 -0500 (Wed, 05 Oct 2005) | 3 lines
+r16864 | etxrab | 2005-12-20 01:22:33 -0600 (Tue, 20 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-fcels.c
-
-add dissection of another bitfield and remove some strcpy()
-
+   M /trunk/asn1/Makefile.nmake
+   A /trunk/asn1/rnsap
+   A /trunk/asn1/rnsap/Makefile
+   A /trunk/asn1/rnsap/Makefile.nmake
+   A /trunk/asn1/rnsap/packet-rnsap-template.c
+   A /trunk/asn1/rnsap/packet-rnsap-template.h
+   A /trunk/asn1/rnsap/rnsap.asn
+   A /trunk/asn1/rnsap/rnsap.cnf
+   M /trunk/epan/dissectors/Makefile.common
 
+Add dissection of RNSAP, not complete yet.
 ------------------------------------------------------------------------
-r16125 | sahlberg | 2005-10-05 06:55:49 -0500 (Wed, 05 Oct 2005) | 3 lines
+r16863 | gerald | 2005-12-19 20:50:04 -0600 (Mon, 19 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-fcels.c
-
-rewrite dissection of service options flags to proper booleans and get rid of some strcpy() calls.
+   M /trunk/epan/radius_dict.l
 
+Make sure we don't try to close an already-closed file.
 
 ------------------------------------------------------------------------
-r16124 | ulfl | 2005-10-05 01:37:35 -0500 (Wed, 05 Oct 2005) | 1 line
+r16862 | etxrab | 2005-12-19 13:39:42 -0600 (Mon, 19 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-bittorrent.c
+   M /trunk/asn1/ansi_map/ansi_map.asn
+   M /trunk/asn1/ansi_map/packet-ansi_map-template.c
 
-bugfix: don't crash, if not enough bytes of the header available
+Fix some asn1 errors and insert the new code to call TCAP.
 ------------------------------------------------------------------------
-r16123 | ulfl | 2005-10-05 01:05:35 -0500 (Wed, 05 Oct 2005) | 1 line
+r16861 | etxrab | 2005-12-19 13:36:32 -0600 (Mon, 19 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/capture_errs.h
-   M /trunk/gtk/capture_dlg.c
-   M /trunk/gtk/capture_if_dlg.c
+   M /trunk/asn1/h450/Makefile.nmake
+   M /trunk/asn1/h450/h450.cnf
+   M /trunk/asn1/h450/packet-h450-template.c
+   M /trunk/epan/dissectors/packet-gsm_map.c
+   M /trunk/epan/dissectors/packet-gsm_map.h
+   M /trunk/epan/dissectors/packet-h450.c
+   M /trunk/epan/dissectors/packet-h450.h
 
-fix cant_load_winpcap_err() parameter
+Get rid of some GCC warnings about unused code.
 ------------------------------------------------------------------------
-r16122 | guy | 2005-10-04 17:08:20 -0500 (Tue, 04 Oct 2005) | 2 lines
+r16860 | etxrab | 2005-12-19 13:34:52 -0600 (Mon, 19 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc-samr.c
-
-Get rid of an unused variable.
+   M /trunk/asn1/gsmmap/GSMMAP.asn
+   M /trunk/asn1/gsmmap/gsmmap.cnf
+   M /trunk/asn1/gsmmap/packet-gsm_map-template.c
 
+Add dissection of Error parameters hopfully geting rid of some GCC warnings.
 ------------------------------------------------------------------------
-r16121 | etxrab | 2005-10-04 15:21:18 -0500 (Tue, 04 Oct 2005) | 7 lines
+r16859 | lego | 2005-12-19 13:21:32 -0600 (Mon, 19 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-iax2.c
-
-From Richard van der Hoff
+   M /trunk/epan/dissectors/packet-m3ua.c
 
-I've spotted a bug in the new desegmentation in iax2, which 
-means that higher-level PDUs aren't dissected when they ought to be, but 
-tend to be grouped together in later packets - I've attached a patch 
-against svn r16110 to fix this; it also makes the code a bit clearer...
+register the m3ua dissector by name
 
-------------------------------------------------------------------------
-r16120 | etxrab | 2005-10-04 14:54:50 -0500 (Tue, 04 Oct 2005) | 1 line
-Changed paths:
-   A /trunk/plugins/h223/golay.h
 
-Grr.. yet another missing file
 ------------------------------------------------------------------------
-r16119 | etxrab | 2005-10-04 14:51:31 -0500 (Tue, 04 Oct 2005) | 1 line
+r16858 | lego | 2005-12-19 13:20:31 -0600 (Mon, 19 Dec 2005) | 3 lines
 Changed paths:
-   A /trunk/plugins/h223/packet-srp.c
-   A /trunk/plugins/h223/packet-srp.h
+   M /trunk/epan/dissectors/packet-alcap.c
 
-Add two missing files.
-------------------------------------------------------------------------
-r16118 | guy | 2005-10-04 13:21:04 -0500 (Tue, 04 Oct 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-cops.c
+Avoid a warning if release_cause == 0
 
-Even a null object has a non-zero length (for the BER identifier and
-length); update the offset when dissecting one.
 
 ------------------------------------------------------------------------
-r16117 | sahlberg | 2005-10-04 09:41:39 -0500 (Tue, 04 Oct 2005) | 8 lines
+r16857 | lego | 2005-12-19 13:18:20 -0600 (Mon, 19 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-t38.c
-
-the t38 tap would only initialize the t38_info structure when called from UDP
-and when called from TCP this pointer would be uninitialized and thus dump core when dereferenced.
-
-at the same time remove the rotating buffers
+   M /trunk/epan/dissectors/packet-juniper.c
+   M /trunk/wiretap/libpcap.c
+   M /trunk/wiretap/wtap.h
 
+Add support for Juniper GGSN generated pcap files.
 
-this fixes bugs 498 and 501
 
 ------------------------------------------------------------------------
-r16116 | sahlberg | 2005-10-04 08:34:52 -0500 (Tue, 04 Oct 2005) | 13 lines
+r16856 | etxrab | 2005-12-19 00:48:07 -0600 (Mon, 19 Dec 2005) | 22 lines
 Changed paths:
-   M /trunk/epan/column-utils.c
-   M /trunk/epan/column-utils.h
-   M /trunk/epan/dissectors/packet-tcp.c
-   M /trunk/epan/libethereal.def
+   M /trunk/epan/dissectors/packet-bittorrent.c
+   M /trunk/epan/dissectors/packet-edonkey.c
+   M /trunk/epan/dissectors/packet-edonkey.h
+
+From John Sullivan:
+Three patches here:
 
-in svn 15335   the tcp analysis was changed to do its stuff and to populate (prepend to) COL_INFO before callking the subdissectors
-instead of calling the tcp analysis (and prepend colingo) eitehr after the subdissector returned normally  or if an exception caused by a subdissector was rised.
+eth-ed-2.diff
+-------------
 
-this as a sideffect caused tcp analysis data to be overwritten if the subdissector caused any output to the info column. (and made tcp analysis suboptimal)
+1) The handling of HashSet Answer messages was wrong
+2) Add dissection of some more eMule extension packets to do with
+   error recovery
 
+   
+eth-bt-1.diff
+-------------
 
-this change adds a new function   col_prepend_fence_fstr()  that will prepend
-the info column with the string and also, if there was no fence already defined, create a fence and set it after the prepended col info text.
+New versions of the Azureus BitTorrent client implement a new extension to the protocol, which is effectively a text based encapsulation of the binary BitTorrent protocol, embedded within the BitTorrent protocol. Who knows why they thought that was a good idea, but this patch can pick apart their new headers.
 
-This way, even if the subdissectors generate and rewrite col info, the tcp analysis data will still be displayed on the info column.
 
+eth-bt-2.diff
+-------------
 
+By registering a normal dissector as well as the heuristic one, BitTorrent shows up on the Decode As... list so you can manually override its mistake.
 
 ------------------------------------------------------------------------
-r16115 | guy | 2005-10-04 05:26:44 -0500 (Tue, 04 Oct 2005) | 2 lines
+r16855 | jmayer | 2005-12-18 17:29:37 -0600 (Sun, 18 Dec 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-edonkey.c
+   M /trunk/epan/column-utils.c
 
-Fix a typo.
+"Fix" for warning: enumeration value 'TS_NOT_SET' not handled in switch
+   Just g_assert until someone who understands the code checks in a real
+   fix.
 
 ------------------------------------------------------------------------
-r16114 | guy | 2005-10-04 05:26:17 -0500 (Tue, 04 Oct 2005) | 2 lines
+r16854 | jmayer | 2005-12-18 17:23:21 -0600 (Sun, 18 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-edonkey.c
+   M /trunk/epan/to_str.c
 
-Get rid of // comments - not all C compilers like them.
+warning: no newline at end of file
+------------------------------------------------------------------------
+r16853 | jmayer | 2005-12-18 17:22:47 -0600 (Sun, 18 Dec 2005) | 1 line
+Changed paths:
+   M /trunk/epan/dissectors/packet-nhrp.c
+   M /trunk/gtk/sctp_byte_graph_dlg.c
 
+warning: C++ style comments are not allowed in ISO C90
 ------------------------------------------------------------------------
-r16113 | guy | 2005-10-04 05:23:40 -0500 (Tue, 04 Oct 2005) | 23 lines
+r16852 | jmayer | 2005-12-18 17:18:06 -0600 (Sun, 18 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc-lsa.c
-   M /trunk/epan/dissectors/packet-dcerpc-samr.c
-   M /trunk/epan/dissectors/packet-dcerpc-spoolss.c
-   M /trunk/epan/dissectors/packet-smb.c
-   M /trunk/epan/dissectors/packet-windows-common.c
-   M /trunk/epan/dissectors/packet-windows-common.h
-
-Don't ensure all the bytes of a security descriptor exist before calling
-"dissect_nt_sec_desc()".  Add a Boolean argument to
-"dissect_nt_sec_desc()" to indicate whether a length was passed to it
-(so we don't treat -1 as a special value; we want to stop treating -1 as
-a special length value, and, in fact, want to stop treating *any*
-negative length values specially, so that we don't have to worry about
-passing arbitrary 32-bit values from packets as lengths), and have
-"dissect_nt_sec_desc()" initially create the protocol tree item for the
-security descriptor with a length of "go to the end of the tvbuff", and
-set the length once we're done dissecting it - and, if the length was
-specified, check at *that* point, *after* we've dissected the security
-descriptor, whether we have the entire security descriptor in the
-tvbuff.
-
-That means that we don't have to worry about overflows after
-"dissect_nt_sec_desc()" returns - if the length was so large that we
-would have gotten an overflow, we'd have thrown an exception in the
-"tvb_ensure_bytes_exist()" call at the end of "dissect_nt_sec_desc()".
-
-Do sanity checks on offsets within the security descriptor, so we know
-the item referred to by the offset is after the fixed-length portion of
-the descriptor.
-
-------------------------------------------------------------------------
-r16112 | guy | 2005-10-04 05:17:45 -0500 (Tue, 04 Oct 2005) | 8 lines
+   M /trunk/asn1/h245/packet-h245-template.c
+   M /trunk/capture_opts.h
+   M /trunk/dumpcap.c
+   M /trunk/epan/dissectors/packet-h245.c
+   M /trunk/epan/dissectors/packet-nhrp.c
+
+warning: function declaration isn't a prototype
+------------------------------------------------------------------------
+r16851 | jmayer | 2005-12-18 16:40:49 -0600 (Sun, 18 Dec 2005) | 16 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-cops.c
+   M /trunk/tools/pidl/lib/Parse/Pidl/Ethereal/Conformance.pm
+   M /trunk/tools/pidl/lib/Parse/Pidl/Ethereal/NDR.pm
 
-We can just use "get_ber_identifier()" and "get_ber_length()" to fetch
-BER identifier and length information; calling
-"dissect_ber_identifier()" and "dissect_ber_length()" with a null tree
-argument doesn't have any advantages over that.
+Update from samba tree revision 12205 to 12325
+============================ Samba log start ============
+------------------------------------------------------------------------
+r12205 | jelmer | 2005-12-13 02:56:04 +0100 (Tue, 13 Dec 2005) | 2 lines
 
-Don't put an octet string into the protocol tree twice, once with
-"dissect_ber_octet_string()" and once with the real value; once is enough.
+Support 'TFS' command in conformance files
 
 ------------------------------------------------------------------------
-r16111 | guy | 2005-10-04 05:13:15 -0500 (Tue, 04 Oct 2005) | 6 lines
-Changed paths:
-   M /trunk/wiretap/atm.c
+r12206 | jelmer | 2005-12-13 14:14:23 +0100 (Tue, 13 Dec 2005) | 2 lines
 
-A heuristic that only treats packets that appear to be LANE-encapsulated
-Ethernet packets with a length field as LANE packets, and doesn't do so
-for packets that appear to be LANE-encapsulated Ethernet packets with a
-type field, is too weak.  Back out that part of the heuristics added in
-the previous checkin.
+Fix some issues in NOEMIT
 
 ------------------------------------------------------------------------
-r16110 | guy | 2005-10-04 02:07:15 -0500 (Tue, 04 Oct 2005) | 4 lines
-Changed paths:
-   M /trunk/capture_errs.c
-   M /trunk/capture_errs.h
-
-Include <glib.h> to declare "g_strdup_printf()".
+============================ Samba log end ==============
 
-Properly declare "cant_load_winpcap_err()".
 
 ------------------------------------------------------------------------
-r16109 | guy | 2005-10-04 01:25:01 -0500 (Tue, 04 Oct 2005) | 6 lines
+r16850 | guy | 2005-12-18 14:54:47 -0600 (Sun, 18 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/Makefile.common
-   A /trunk/capture_errs.c
-   A /trunk/capture_errs.h
-   M /trunk/gtk/capture_dlg.c
-   M /trunk/gtk/capture_if_dlg.c
-   M /trunk/tethereal.c
-
-Add a "capture_errs.c" routine to cough up error messages for capture
-problems, and use the first routine in it in multiple places.
+   M /trunk/AUTHORS
 
-Get rid of DISSECTOR_SUPPORT_INCLUDES - just add its contents to
-ETHEREAL_COMMON_INCLUDES.
+Indent authors' e-mail addresses with tabs (so the list is properly
+aligned in the About box).
 
 ------------------------------------------------------------------------
-r16108 | etxrab | 2005-10-04 00:42:18 -0500 (Tue, 04 Oct 2005) | 3 lines
+r16849 | guy | 2005-12-18 13:46:38 -0600 (Sun, 18 Dec 2005) | 2 lines
 Changed paths:
    M /trunk/AUTHORS
-   M /trunk/wiretap/atm.c
 
-From Rene Piltz:
-Due to the fact that 3G Signaling appears at an undefined VPI/VCI I added a heuristics (very simple) which should take care of this fact.
+Use tabs to indent all credits.
 
 ------------------------------------------------------------------------
-r16107 | etxrab | 2005-10-04 00:36:31 -0500 (Tue, 04 Oct 2005) | 6 lines
+r16848 | guy | 2005-12-18 13:41:49 -0600 (Sun, 18 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-edonkey.c
-   M /trunk/epan/dissectors/packet-edonkey.h
-
-From John Sullivan:
-The current ethereal eDonkey dissector fails to handle a number of valid packet types - in particular the normal server<->client communication between current eserver and eMule versions (from both
-sides) produces packets which ethereal incorrectly claims to be malformed.
+   M /trunk/AUTHORS
 
-This patch fills in these holes.
+Re-UTF-8ify.
 
 ------------------------------------------------------------------------
-r16106 | etxrab | 2005-10-04 00:29:40 -0500 (Tue, 04 Oct 2005) | 1 line
+r16847 | etxrab | 2005-12-18 13:01:46 -0600 (Sun, 18 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/libethereal.def
+   M /trunk/epan/dissectors/packet-ospf.c
 
-Add some requested items.
+From Michael Rozhavsky:
+In my previous patch I forgot to add a OOBResync flag to the DBD packet flags field. This patch adds this flag.
 ------------------------------------------------------------------------
-r16105 | etxrab | 2005-10-04 00:16:26 -0500 (Tue, 04 Oct 2005) | 1 line
+r16846 | etxrab | 2005-12-18 12:17:29 -0600 (Sun, 18 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/address.h
-   M /trunk/epan/libethereal.def
+   A /trunk/asn1/ansi_map
+   A /trunk/asn1/ansi_map/Makefile.nmake
+   A /trunk/asn1/ansi_map/README
+   A /trunk/asn1/ansi_map/ansi_map.asn
+   A /trunk/asn1/ansi_map/ansi_map.cnf
+   A /trunk/asn1/ansi_map/packet-ansi_map-template.c
+   A /trunk/asn1/ansi_map/packet-ansi_map-template.h
 
-Preparations for h223
+Work in progress ANSI MAP dissector. 
 ------------------------------------------------------------------------
-r16104 | etxrab | 2005-10-04 00:15:23 -0500 (Tue, 04 Oct 2005) | 11 lines
+r16845 | etxrab | 2005-12-18 12:15:24 -0600 (Sun, 18 Dec 2005) | 7 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-bacapp.c
-   M /trunk/epan/dissectors/packet-bacapp.h
+   M /trunk/Makefile.am
+   M /trunk/doc/README.malloc
 
-From Dave Richards
+From Martin Warnes
+Attached a small patch to top level Makefile.am to include the recently 
+added diamter data files chargecontrol.xml and TGPPSh.xml
 
-1) Fixes context-tagged BACnet errors.
-2) Fixes indeterminate tag data.  If the tag length/value/type variable 
-was 6 or 7 you could not tell whether it was an open/close tag or had 
-length 6/7.
-3) Don't make assumptions about property types for proprietary BACnet 
-object types.
+From jaaap Keuter:
+I've polished up the README.malloc describing ememified memory management. It's basically the same information, but made a bit more accessable. All this in response to bug 511
 
+------------------------------------------------------------------------
+r16844 | etxrab | 2005-12-18 12:13:05 -0600 (Sun, 18 Dec 2005) | 11 lines
+Changed paths:
+   M /trunk/epan/dissectors/Makefile.common
+   M /trunk/epan/dissectors/ncp2222.py
+   A /trunk/epan/dissectors/packet-ncs.c
 
+From Greg Morris:
+-  New Dissector Novell Cluster Services
+
+1. Changes Dir Handle Type from Boolean to val string
+2. Changes Search Mode from Boolean to val string
+3. Adds a number of additional attribute definitions
+4. Adds file migration state values
+5. Adds missing return values
+6. Adds NCP 90,150 "File Migration Request"
 
 ------------------------------------------------------------------------
-r16103 | guy | 2005-10-03 23:23:09 -0500 (Mon, 03 Oct 2005) | 4 lines
+r16843 | ulfl | 2005-12-18 05:36:06 -0600 (Sun, 18 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/capture_loop.c
-   M /trunk/tethereal.c
-
-Add a note about 64-bit support in WinPcap to the capture errors on
-Windows, and add the URL for the CaptureSetup page to the Tethereal
-error.
+   M /trunk/gtk/main.c
 
+use #ifdef SHOW_WELCOME_PAGE for the currently disabled welcome page instead of simply #if 0
 ------------------------------------------------------------------------
-r16102 | guy | 2005-10-03 23:12:34 -0500 (Mon, 03 Oct 2005) | 3 lines
+r16842 | guy | 2005-12-18 05:19:25 -0600 (Sun, 18 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/version_info.c
+   M /trunk/asn1/tcap/packet-tcap-template.c
+   M /trunk/epan/dissectors/packet-tcap.c
 
-Grr.  Without the right version of the SDK, we can't even compile code
-to *use* the shiny new features.
+If we're going to use a handle for the data handle, we need to get a
+handle for that dissector.  This fixes bug 637.
 
 ------------------------------------------------------------------------
-r16101 | guy | 2005-10-03 22:58:40 -0500 (Mon, 03 Oct 2005) | 2 lines
+r16841 | guy | 2005-12-18 05:08:38 -0600 (Sun, 18 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/capture-wpcap.c
+   M /trunk/asn1/tcap/tcap.cnf
 
-Remove an extra " from a command, and fix indentation.
+Update tcap.cnf to generate the current packet-tcap.c
 
 ------------------------------------------------------------------------
-r16100 | guy | 2005-10-03 22:15:12 -0500 (Mon, 03 Oct 2005) | 3 lines
+r16840 | guy | 2005-12-18 04:59:45 -0600 (Sun, 18 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/version_info.c
+   M /trunk/asn1/mms/packet-mms-template.c
+   M /trunk/epan/dissectors/packet-mms.c
 
-Cope with NT 6.0, and with the x86-64 version of XP being NT 5.2 rather
-than NT 5.1.
+Get rid of an unused variable.
 
 ------------------------------------------------------------------------
-r16099 | guy | 2005-10-03 20:16:06 -0500 (Mon, 03 Oct 2005) | 6 lines
+r16839 | guy | 2005-12-18 04:58:47 -0600 (Sun, 18 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-iax2.c
-
-Don't assume that every packet has a non-null "call_data" value.  Fixes
-bug 497 (as well as a crash on an *unfuzzed* IAX2 capture!).
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Set "pinfo->can_desegment" before calling dissectors; that's expected
-for dissectors that do TCP-style desegmentation.
+Squelch a compiler warning.
 
 ------------------------------------------------------------------------
-r16098 | guy | 2005-10-03 17:26:32 -0500 (Mon, 03 Oct 2005) | 2 lines
+r16838 | guy | 2005-12-18 04:51:41 -0600 (Sun, 18 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/gtk/t38_analysis.c
+   M /trunk/asn1/gsm_ss/packet-gsm_ss-template.c
+   M /trunk/epan/dissectors/packet-gsm_ss.c
 
-Properly terminate some value_string tables.
+Get rid of an unused variable.
 
 ------------------------------------------------------------------------
-r16097 | guy | 2005-10-03 17:23:04 -0500 (Mon, 03 Oct 2005) | 5 lines
+r16837 | guy | 2005-12-18 04:42:29 -0600 (Sun, 18 Dec 2005) | 4 lines
 Changed paths:
-   M /trunk/gtk/t38_analysis.c
+   M /trunk/asn1/nbap/packet-nbap-template.c
+   M /trunk/epan/dissectors/packet-nbap.c
+   M /trunk/epan/dissectors/packet-nbap.h
 
-Include "gui_stat_menu.h" to declare "register_stat_menu_item()".
+Get rid of an unused variable.
 
-Fix the type of "t38_analysis_init()" to match what
-"register_stat_cmd_arg()" expects.
+Fix a typo in svn:keywords.
 
 ------------------------------------------------------------------------
-r16096 | guy | 2005-10-03 17:17:32 -0500 (Mon, 03 Oct 2005) | 6 lines
+r16836 | ulfl | 2005-12-17 21:42:01 -0600 (Sat, 17 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/stream.c
-
-A hash table doesn't *have* to have a value destroy function - and, in
-fact, in GLib 1.2, it *can't* have one.  As the value destroy function
-for this hash table does nothing, don't bother with it - and create the
-hash table with "g_hash_table_new(), rather than
-"g_hash_table_new_full()", so it works with GLib 1.2[.x].
+   M /trunk/docbook/eug_src/EUG_chapter_advanced.xml
 
+reassembling as enabled by default (the default was changed from disabled to enabled some time ago)
 ------------------------------------------------------------------------
-r16095 | guy | 2005-10-03 17:04:58 -0500 (Mon, 03 Oct 2005) | 2 lines
+r16835 | lego | 2005-12-17 15:17:58 -0600 (Sat, 17 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/stream.c
+   M /trunk/epan/dissectors/packet-tcap.c
+
+remove // comments
 
-It's "svn:keywords", not "svn:Keywords".
 
 ------------------------------------------------------------------------
-r16094 | guy | 2005-10-03 17:02:47 -0500 (Mon, 03 Oct 2005) | 3 lines
+r16834 | lego | 2005-12-17 10:55:45 -0600 (Sat, 17 Dec 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/stream.h
+   M /trunk/asn1/camel/packet-camel-template.c
+   M /trunk/asn1/gsmmap/packet-gsm_map-template.c
+   M /trunk/asn1/inap/packet-inap-template.c
+   M /trunk/asn1/tcap/packet-tcap-template.c
+   M /trunk/asn1/tcap/packet-tcap-template.h
+   M /trunk/epan/dissectors/packet-ansi_map.c
+   M /trunk/epan/dissectors/packet-camel.c
+   M /trunk/epan/dissectors/packet-camel.h
+   M /trunk/epan/dissectors/packet-gsm_map.c
+   M /trunk/epan/dissectors/packet-inap.c
+   M /trunk/epan/dissectors/packet-sccp.c
+   M /trunk/epan/dissectors/packet-tcap.c
+   M /trunk/epan/dissectors/packet-tcap.h
 
-The "extern" in "struct _fragment_items" doesn't do anything, as data
-types aren't objects and don't have storage classes, etc..
+Have tcap subdissectors registering using functions provided by tcap and tcap manage ssn registration.
 
-------------------------------------------------------------------------
-r16093 | ulfl | 2005-10-03 15:04:06 -0500 (Mon, 03 Oct 2005) | 1 line
-Changed paths:
-   M /trunk/gtk/capture_dlg.c
+In packet-sccp.c avoid not having a binding.
 
-Win32: don't crash if Capture/Start is clicked and WinPcap is not installed.
-------------------------------------------------------------------------
-r16092 | ulfl | 2005-10-03 14:37:17 -0500 (Mon, 03 Oct 2005) | 1 line
-Changed paths:
-   M /trunk/gtk/expert_dlg.c
 
-move the list down to the latest message while new messages rush in. We might want to have a checkbox or alike to en/disable this (as discussed for the Statistics) lately.
 ------------------------------------------------------------------------
-r16091 | ulfl | 2005-10-03 14:34:58 -0500 (Mon, 03 Oct 2005) | 3 lines
+r16833 | ulfl | 2005-12-16 18:19:47 -0600 (Fri, 16 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/gtk/gui_utils.c
+   M /trunk/capture_loop.c
+   M /trunk/capture_opts.c
 
-major Win32 bugfix: when getting messages from the capture slave, only one message was processed every 200ms (UNIX handles this differently). If more messages were initiated from the slave, they stacked up. This slowed down the display update and slowed down stopping the capture as a lot of messages had to be processed before the close really finished ...
+Win32 bugfix: peeking the signal_pipe at capture_loop start seems to be unreliable
 
-Now the timer callback function will call the pipe read function up to 5 times to avoid this, but won't do this more often to prevent "endless blocking".
+Instead, simply keep the signal_pipe setting directly from the command line which is working well
 ------------------------------------------------------------------------
-r16090 | ulfl | 2005-10-03 14:11:57 -0500 (Mon, 03 Oct 2005) | 1 line
+r16832 | ulfl | 2005-12-16 18:16:37 -0600 (Fri, 16 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/gtk/main.c
+   M /trunk/docbook/developer-guide.xml
+   M /trunk/docbook/user-guide.xml
 
-minor bugfix: hide main widgets, if command line file couldn't be loaded
+both eug and edg still mentioned Ethereal 0.10.12
 ------------------------------------------------------------------------
-r16089 | etxrab | 2005-10-03 14:00:52 -0500 (Mon, 03 Oct 2005) | 1 line
+r16831 | sahlberg | 2005-12-16 16:06:52 -0600 (Fri, 16 Dec 2005) | 16 lines
 Changed paths:
-   A /trunk/plugins/h223/Makefile.nmake
+   A /trunk/epan/dissectors/pidl/srvsvc.idl
+
+add work in progress srvsvc.idl.
+
+This idl file is required by wkssvc.idl since wkssvc references Platform_id
+
+
+There are still some minor changes required for pidl to prettify the output for both wkssvc and srvsvc before these two dissectors should be used.
+
+
+
+note that this idl is significantly different from the samba4 idl since it contains all the additional functions and structures the handwritten dissector has that is lacking from s4 idl.
+
+it is expected that s4 will take up the authorative version of this idl soon so there will only be one master copy of this idl.
+
 
-First check in of yhe h223 plugin, not part of the build script yet.
-------------------------------------------------------------------------
-r16088 | etxrab | 2005-10-03 13:59:41 -0500 (Mon, 03 Oct 2005) | 1 line
-Changed paths:
-   A /trunk/plugins/h223/moduleinfo.h
-   A /trunk/plugins/h223/packet-h223.c
-   A /trunk/plugins/h223/packet-h223.h
-   A /trunk/plugins/h223/plugin.c
 
-First check in of yhe h223 plugin, not part of the build script yet.
-------------------------------------------------------------------------
-r16087 | etxrab | 2005-10-03 13:54:41 -0500 (Mon, 03 Oct 2005) | 1 line
-Changed paths:
-   A /trunk/plugins/h223/Makefile.am
 
-First check in of yhe h223 plugin, not part of the build script yet.
 ------------------------------------------------------------------------
-r16086 | etxrab | 2005-10-03 13:54:13 -0500 (Mon, 03 Oct 2005) | 1 line
+r16830 | etxrab | 2005-12-16 14:58:50 -0600 (Fri, 16 Dec 2005) | 1 line
 Changed paths:
-   A /trunk/plugins/h223/golay.c
+   M /trunk/packaging/nsis/ethereal.nsi
 
-First check in of yhe h223 plugin, not part of the build script yet.
+Include the latest diameter.xml files
 ------------------------------------------------------------------------
-r16085 | etxrab | 2005-10-03 13:53:52 -0500 (Mon, 03 Oct 2005) | 1 line
+r16829 | etxrab | 2005-12-16 14:54:24 -0600 (Fri, 16 Dec 2005) | 1 line
 Changed paths:
-   A /trunk/plugins/h223/COPYING
+   M /trunk/gtk/flow_graph.c
 
-First check in of yhe h223 plugin, not part of the build script yet.
+modify the tool tip "Nodes in the diagram are identified with network source and destination address (like SS7 point codes)" remove the section between parenthesis
 ------------------------------------------------------------------------
-r16084 | etxrab | 2005-10-03 13:53:28 -0500 (Mon, 03 Oct 2005) | 1 line
+r16828 | etxrab | 2005-12-16 14:37:45 -0600 (Fri, 16 Dec 2005) | 11 lines
 Changed paths:
-   A /trunk/plugins/h223/ChangeLog
+   M /trunk/epan/dissectors/packet-ospf.c
+
+A patch for packet-ospf.c is attached:
+ - Fix the handling of the DN-bit of options field.
+ - Add a new function dissect_ospf_bitfield() to dissect a bitfield
+   such as options, flags. The following functions are merged by
+   using this function.
+     - dissect_ospf_lls_extended_options()
+     - dissect_ospf_dbd()
+     - dissect_ospf_options()
+     - dissect_ospf_v3_prefix_options()
+ - dissect the flags and prefix-options bitfield.
 
-First check in of yhe h223 plugin, not part of the build script yet.
 ------------------------------------------------------------------------
-r16083 | etxrab | 2005-10-03 13:51:54 -0500 (Mon, 03 Oct 2005) | 1 line
+r16827 | etxrab | 2005-12-16 14:36:09 -0600 (Fri, 16 Dec 2005) | 3 lines
 Changed paths:
-   A /trunk/plugins/h223
-   A /trunk/plugins/h223/AUTHORS
+   M /trunk/epan/dissectors/packet-mtp3.c
+   M /trunk/epan/dissectors/packet-mtp3.h
 
-First check in of yhe h223 plugin, not part of the build script yet.
+As per Olivier Jacques mail, 
+"preferences/mtp3 must be changed accordingly (it is explicitly indicated that the "network address format" is ..."
+Change the text and som names.
 ------------------------------------------------------------------------
-r16082 | etxrab | 2005-10-03 13:34:21 -0500 (Mon, 03 Oct 2005) | 7 lines
+r16826 | gerald | 2005-12-16 11:53:44 -0600 (Fri, 16 Dec 2005) | 9 lines
 Changed paths:
-   M /trunk/epan/Makefile.common
-   M /trunk/epan/packet.c
-   A /trunk/epan/stream.c
-   A /trunk/epan/stream.h
+   M /trunk/Makefile.nmake
+   M /trunk/util.c
 
-From Jeff Snyder:
+If "CLIENTNAME" is set (which indicates that we're using RDP) use
+"not tcp port 3389" instead of "not ip host $CLIENTNAME", since it
+seems to be more reliable.
 
-04-stream.diff
- A simplified packet reassembly API built on top of  fragment_add_seq_next for 
-reassembling fragments that are delivered in-order, where fragments are 
-identified by a framenum and an offset into that frame. Streams are attached 
-to a conversation or a circuit and are unidirectional.
-------------------------------------------------------------------------
-r16081 | etxrab | 2005-10-03 13:18:38 -0500 (Mon, 03 Oct 2005) | 1 line
-Changed paths:
-   M /trunk/asn1/gnm/gnm.cnf
-   M /trunk/asn1/gnm/packet-gnm-template.c
-   M /trunk/epan/dissectors/packet-gnm.c
+Make sure we remove dumpcap.obj when we clean.
+
+This also tests the content-type "text/plain; charset=utf-8" for commit
+messages.  Maybe Stig B's name will show up correctly now.
 
-Add dissection of some more OID's and use the #.REGISTER function.
 ------------------------------------------------------------------------
-r16080 | ulfl | 2005-10-03 11:24:43 -0500 (Mon, 03 Oct 2005) | 1 line
+r16825 | jmayer | 2005-12-16 11:52:05 -0600 (Fri, 16 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-ip.c
+   M /trunk/epan/dissectors/packet-3com-njack.c
 
-from Yaniv Kaul: add a Preference setting for IP checksum validation
+Some updates
 ------------------------------------------------------------------------
-r16079 | ulfl | 2005-10-03 10:52:14 -0500 (Mon, 03 Oct 2005) | 4 lines
+r16824 | jmayer | 2005-12-16 11:05:37 -0600 (Fri, 16 Dec 2005) | 10 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-iax2.c
+   M /trunk/Makefile.am
 
-from Peter Johansson:
-The supplied patch resolves an issue with the use of the not yet initialized variable "fid".
+Don't link dumpcap against libethereal etc.
+It might be, that I've removed too many options:
 
-/ Regards, Peter 
-------------------------------------------------------------------------
-r16078 | lego | 2005-10-03 08:10:28 -0500 (Mon, 03 Oct 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-rtse.c
-
-dissect_rtse_EXTERNAL is already declared in the header as extern.
+in that case, replace
+@PCAP_LIBS@
+by some of
+@PCAP_LIBS@ @SOCKET_LIBS@ @NSL_LIBS@
 
+and let me know which of the options are needed
 
 ------------------------------------------------------------------------
-r16077 | lego | 2005-10-03 06:36:24 -0500 (Mon, 03 Oct 2005) | 3 lines
+r16823 | jmayer | 2005-12-16 10:40:31 -0600 (Fri, 16 Dec 2005) | 7 lines
 Changed paths:
-   A /trunk/gtk/t38_analysis.c
+   M /trunk/manuf
+   M /trunk/wka.tmpl
 
-This one was missing from the checkin...
+Jaap Keuter:
+I'm seeing a variant of the registered Ethernet address for MS NLB
+multicast being used.
 
+Changed to remove "multicast" from the name as it isn't a multicast
+address.
 
 ------------------------------------------------------------------------
-r16076 | sahlberg | 2005-10-03 04:30:10 -0500 (Mon, 03 Oct 2005) | 5 lines
+r16822 | etxrab | 2005-12-16 10:37:03 -0600 (Fri, 16 Dec 2005) | 25 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-mount.c
+   M /trunk/asn1/camel/packet-camel-template.c
+   M /trunk/editcap.c
+   M /trunk/epan/dissectors/packet-camel.c
+   M /trunk/epan/dissectors/packet-ieee80211.c
+   M /trunk/epan/dissectors/packet-lldp.c
 
-prettify mount,
+From Jaap Keuter:
+- Editcap 
+Mikko Tiihonen filed bug 379 including a patch for editcap. This wasn't picked up so far. I've ported the patch to svn 16820 and included a documentation patch.
 
-if MNT fails with an error,   put the error string in the INFO column
+-packet-ieee80211.c
+Radek Vokal of RedHat filed a bug found by Vladimir Kondratiev of Intel in the 802.11 dissector. Radek provided a sample capture and Vladimir a oneliner patch. I've ported the patch to svn 16820 and tested it against the provided capture. Works well.
 
 
-------------------------------------------------------------------------
-r16075 | guy | 2005-10-03 02:30:49 -0500 (Mon, 03 Oct 2005) | 3 lines
-Changed paths:
-   M /trunk/simple_dialog.h
+-From Kan Sasaki
+A patch for packet-ospf.c is attached:
+ - Fix the handling of the DN-bit of options field.
+ - Add a new function dissect_ospf_bitfield() to dissect a bitfield
+   such as options, flags. The following functions are merged by
+   using this function.
+     - dissect_ospf_lls_extended_options()
+     - dissect_ospf_dbd()
+
+
+     - dissect_ospf_options()
+     - dissect_ospf_v3_prefix_options()
+ - dissect the flags and prefix-options bitfield.
 
-C89 doesn't allow a comma after the end of the last value in an
-enumerator list, and some compilers don't allow it as an extension.
+- lldp Bugfix Bug 596  LLDP TIA Network Policy Decode is not correct 
 
+- Camel make it possible to dissect based on OID.
 ------------------------------------------------------------------------
-r16074 | etxrab | 2005-10-03 00:59:17 -0500 (Mon, 03 Oct 2005) | 1 line
+r16821 | etxrab | 2005-12-16 10:31:46 -0600 (Fri, 16 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-sigcomp.c
+   M /trunk/epan/dissectors/packet-dccp.c
+
+From Jaap Keuter:
+Bug 373 complains about a field type. Trivial fix attached.
 
-Fix a typo.
 ------------------------------------------------------------------------
-r16073 | etxrab | 2005-10-03 00:55:26 -0500 (Mon, 03 Oct 2005) | 12 lines
+r16820 | ulfl | 2005-12-16 02:20:22 -0600 (Fri, 16 Dec 2005) | 6 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-t38.c
-   M /trunk/epan/dissectors/packet-t38.h
-   M /trunk/epan/libethereal.def
-   M /trunk/gtk/Makefile.common
-   M /trunk/gtk/graph_analysis.c
-   M /trunk/gtk/graph_analysis.h
-   M /trunk/gtk/voip_calls.c
+   M /trunk/config.nmake
 
-From Alejandro Vaquero:
+Declare the GTK 2.6 as the official mainline now!!!
 
- New "Fax T38 Analysis" added to the "Statistics" menu to:
+(as per mailing list discussions and mainly as the Gimp windows port also uses this version)
 
-- Reassemble the HDLC t30 frames and dissect the header.
-- Analyze the UPDTLPacket seq num for packet lost
-- Stats of V.x Data:
-    - Count the Data bytes
-    - Duration
-    - Wrong seq num
-    - Max Burst of packet lost
 
+fix the NSIS install settings for GTK 2.6 of GTK-Wimp
 ------------------------------------------------------------------------
-r16072 | etxrab | 2005-10-03 00:17:51 -0500 (Mon, 03 Oct 2005) | 5 lines
+r16819 | ulfl | 2005-12-16 01:43:24 -0600 (Fri, 16 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-acse.c
-   M /trunk/epan/dissectors/packet-acse.h
-   M /trunk/epan/dissectors/packet-cms.c
-   M /trunk/epan/dissectors/packet-cms.h
-   M /trunk/epan/dissectors/packet-ess.c
-   M /trunk/epan/dissectors/packet-ess.h
-   M /trunk/epan/dissectors/packet-rtse.c
-   M /trunk/epan/dissectors/packet-rtse.h
-   M /trunk/epan/dissectors/packet-x420.c
-
-From Graeme Lunt
-X420 - incorrect ExtendedBodyPart handling
-ACSE - support for implicitly tagged EXTERNALs and dissection based upon direct-reference RTSE - same change for RTSE EXTERNAL handling as above CMS  - support for ContentType, MessageDigest, SigningTime and CounterSignature attributes ESS  - support for ESSSecurityLabel and EquivalentLabels attributes
-
+   M /trunk/dumpcap.c
+   M /trunk/log.h
+   M /trunk/tethereal.c
 
+some minor fixes: logging and comments fixed
 ------------------------------------------------------------------------
-r16071 | etxrab | 2005-10-03 00:16:57 -0500 (Mon, 03 Oct 2005) | 5 lines
+r16818 | etxrab | 2005-12-16 01:37:28 -0600 (Fri, 16 Dec 2005) | 12 lines
 Changed paths:
-   M /trunk/asn1/cms/CryptographicMessageSyntax.asn
-   M /trunk/asn1/cms/cms.cnf
-   M /trunk/asn1/ess/ExtendedSecurityServices.asn
-   M /trunk/asn1/ess/ess.cnf
-   M /trunk/asn1/rtse/rtse-exp.cnf
-   M /trunk/asn1/rtse/rtse.cnf
-   M /trunk/asn1/x420/x420.asn
-   M /trunk/asn1/x420/x420.cnf
-
-From Graeme Lunt
-X420 - incorrect ExtendedBodyPart handling
-ACSE - support for implicitly tagged EXTERNALs and dissection based upon direct-reference RTSE - same change for RTSE EXTERNAL handling as above CMS  - support for ContentType, MessageDigest, SigningTime and CounterSignature attributes ESS  - support for ESSSecurityLabel and EquivalentLabels attributes
+   M /trunk/epan/dissectors/packet-ospf.c
 
+From Michael Rozhavsky:
 
-------------------------------------------------------------------------
-r16070 | etxrab | 2005-10-03 00:14:39 -0500 (Mon, 03 Oct 2005) | 5 lines
-Changed paths:
-   M /trunk/asn1/acse/acse.cnf
+This patch adds support for draft-nguyen-ospf-lls-05.txt, draft-nguyen-ospf-oob-resync-05.txt and draft-nguyen-ospf-restart-05.txt. These are an alternative way to do OSPF graceful restart.
 
-From Graeme Lunt
-X420 - incorrect ExtendedBodyPart handling
-ACSE - support for implicitly tagged EXTERNALs and dissection based upon direct-reference RTSE - same change for RTSE EXTERNAL handling as above CMS  - support for ContentType, MessageDigest, SigningTime and CounterSignature attributes ESS  - support for ESSSecurityLabel and EquivalentLabels attributes
+These drafts are implemented by cisco and several other vendors that want to interoperate with cisco. My patch adds a dissectors for LLS TLVs.
 
+I had to modify the existing ospf dissector as it assumed that all the data after IP header is OSPF packet. This is not true anymore and probably was not true before as well.
 
+Also please find attached an example of OSPF packets with LLS data blocks.
+-- 
+   
+   
 ------------------------------------------------------------------------
-r16069 | etxrab | 2005-10-02 16:14:35 -0500 (Sun, 02 Oct 2005) | 3 lines
+r16817 | etxrab | 2005-12-16 01:20:13 -0600 (Fri, 16 Dec 2005) | 11 lines
 Changed paths:
-   M /trunk/asn1/cms/cms.cnf
-   M /trunk/epan/dissectors/packet-cms.c
+   M /trunk/gtk/flow_graph.c
 
-From Graeme Lunt
-allows the dissection of ContentInfo based upon it's OID - something that is used for a secure X.400 messages (Protecting Content Type (PCT)).
+From Jacques, Olivier (OCBU-Test Infra)
+
+> here is a small patch for the flow graph feature. It allows 
+> to have SS7 nodes (network indicator/point codes) to be 
+> recognized as nodes in the graphs.
+> The patch consists in using "pinfo->net_src" or 
+> "pinfo->net_dst" instead of "pinfo->src" or "pinfo->dst".
+> I did some tests with other IP protocols and behavior was 
+> still the same as before. But I do not guaranty that it 
+> doesn't have some bad side effects for some protocols.
 
 ------------------------------------------------------------------------
-r16068 | etxrab | 2005-10-02 15:59:54 -0500 (Sun, 02 Oct 2005) | 20 lines
+r16816 | etxrab | 2005-12-16 01:18:52 -0600 (Fri, 16 Dec 2005) | 10 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-amr.c
-   M /trunk/epan/dissectors/packet-h261.c
-   M /trunk/epan/dissectors/packet-h263.c
-   M /trunk/epan/dissectors/packet-iax2.c
+   M /trunk/epan/oid_resolv.c
 
-From Jeff Snyder
+From Grame Lunt:
+The new oid_resolv.c OID handling is more strict on what an OID is. It now requires the OID string representation to be a sequence of dotted integers - particularly when looking up an associated name.
 
-00-iax.diff
- Modifications to the IAX2 dissector so that it offers desegmentation to 
-subdissectors using the same API as TCP offers (pinfo->desegment_len etc)
+The X.411 and DISP dissectors have [ab]used the OID handling to support the dissection of x.411 standard-extensions (which are indicated by a single
+integer) and where the OID is sufficient by itself (disp). Have a look at x411.cnf and disp.cnf
 
-01-amr.diff
- Modifications to the AMR dissector to allow AMR IF2 data to be dissected via 
-call_dissector() from packet-h223.c. This patch also causes the AMR dissector 
-to append the frame type string to the info column, so that the info column 
-shows what protocols an H.223 frame contains.
+Attached is a small patch to restore the previous functionality in the new handling. If this is something you don't wish to continue to support in the OID handling, then I'll look at alternate mechanisms.
 
-02-h263-data.diff
- Modifications to packet-h263.c to separate the dissection of h.263 RTP 
-encpasulation from the dissection of the actual h.263 data. The data 
-dissection functions are added as a second dissector. This data-only 
-dissector is used to dissect the video channel in our h.223 streams. As with 
-the AMR modification, this makes the H.263 dissector append to the info 
-column.
+Graeme
 
 ------------------------------------------------------------------------
-r16067 | ulfl | 2005-10-02 10:41:11 -0500 (Sun, 02 Oct 2005) | 1 line
+r16815 | etxrab | 2005-12-16 01:05:50 -0600 (Fri, 16 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-bittorrent.c
+   M /trunk/asn1/h248/Makefile.nmake
+   M /trunk/asn1/h248/packet-h248-template.c
+   M /trunk/asn1/tcap/packet-tcap-template.c
+   M /trunk/epan/dissectors/packet-h248.c
+   M /trunk/epan/dissectors/packet-h248.h
+   M /trunk/epan/dissectors/packet-isup.c
+   M /trunk/epan/dissectors/packet-m3ua.c
+   M /trunk/epan/dissectors/packet-sccp.c
+   M /trunk/epan/dissectors/packet-sua.c
+   M /trunk/epan/dissectors/packet-tcap.c
+   M /trunk/epan/dissectors/packet-tcap.h
 
-enhancements COL_INFO output and make bittorrent protocol filterable
+Get rid of duplicted dissector tables for MTP3 Service indicator and SCCP ssn:s
 ------------------------------------------------------------------------
-r16066 | ulfl | 2005-10-02 09:56:27 -0500 (Sun, 02 Oct 2005) | 1 line
+r16814 | etxrab | 2005-12-16 00:47:22 -0600 (Fri, 16 Dec 2005) | 12 lines
 Changed paths:
-   M /trunk/epan/column-utils.c
-   M /trunk/epan/column-utils.h
-   M /trunk/epan/epan.c
+   M /trunk/asn1/dap/packet-dap-template.c
+   M /trunk/asn1/dop/dop.asn
+   M /trunk/asn1/h225/Makefile.nmake
+   M /trunk/asn1/tcap/Makefile.nmake
+   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-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-x411.c
+   M /trunk/epan/dissectors/packet-x411.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
 
-add doxygen comments to column-utils.h and do a slight code cleanup
-------------------------------------------------------------------------
-r16065 | lego | 2005-10-01 10:19:36 -0500 (Sat, 01 Oct 2005) | 8 lines
-Changed paths:
-   M /trunk/epan/tpg.c
-   M /trunk/epan/tpg.h
-   M /trunk/epan/tvbparse.c
-   M /trunk/plugins/tpg/http.tpg
-   M /trunk/plugins/tpg/packet-http.c
-   M /trunk/tools/tpg/tpg.yp
+From Graeme Lunt:
+* DOP - This has now been successfully tested and so is now enabled by default and workaround code removed. 
+Also now uses the correct EXPORTs from the other modules/dissectors.
+
+* X509SAT - Most of the selected attributes are now supported in addition to the DirectoryString syntax attributes. This includes restoring the correct DirectoryString syntax and also providing the basic syntaxes (e.g. OBJECT IDENTIFIER, PrintableString). The latter requires a sed line in the Makefile which I assume should be OK? Not all the SAT can be defined in x509sat - so some have been included in x509if and x509af - though x509sat.cnf contains the master list and references the other dissectors where appropriate.
 
-one step further... 
- TPG now uses the ignore feature of tvbparse
- named sub_rules can have cardinality
+(I still prefer a syntax registration approach but I don't think that is going to be agreed in the short term.)
 
-epan/tvbparse.c:
-   do not crash on zero cardinality
+* X509IF - a mechanism to register some formating, based upon the hf_index, that is used in the cnf file.
 
+* A couple of fixes identified by Stig.
 
 ------------------------------------------------------------------------
-r16064 | lego | 2005-10-01 06:16:17 -0500 (Sat, 01 Oct 2005) | 5 lines
+r16813 | sahlberg | 2005-12-15 18:32:12 -0600 (Thu, 15 Dec 2005) | 7 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-radius.c
+   M /trunk/epan/dissectors/packet-clnp.c
+   M /trunk/epan/dissectors/packet-frame.c
+   M /trunk/epan/dissectors/packet-frame.h
 
-propperly initialize vendor->ett if the vendor is not found while radius_register_avp_dissector().
+From Stig B
+Patch for COTP reassembly.
 
-fixes bug 488.
+There does not seem to be any reasonable or cleaner way to fix COTP 
+reassembly than adding the frame.[ch] patch.
 
 
 ------------------------------------------------------------------------
-r16063 | lego | 2005-10-01 05:41:00 -0500 (Sat, 01 Oct 2005) | 3 lines
+r16812 | sahlberg | 2005-12-15 17:17:01 -0600 (Thu, 15 Dec 2005) | 5 lines
 Changed paths:
-   M /trunk/plugins/tpg/http.tpg
-   M /trunk/plugins/tpg/packet-http.c
+   M /trunk/epan/dissectors/packet-ip.c
 
-match changes to tpg infrastructure.
+from Jaap K
+
+fix for bug 306
 
 
 ------------------------------------------------------------------------
-r16062 | lego | 2005-10-01 05:39:38 -0500 (Sat, 01 Oct 2005) | 3 lines
+r16811 | sahlberg | 2005-12-15 16:54:33 -0600 (Thu, 15 Dec 2005) | 16 lines
 Changed paths:
-   M /trunk/tools/tpg/tpg.yp
+   M /trunk/epan/dissectors/packet-mbtcp.c
 
-Some changes in tpg's grammar to avoid constructing elements that cannot be dereferenced
+update to modbus/tcp
 
+Make the dissector new-style and add simple (better than nothing) heuristics so that it can reject some packets that are obviously not modbus.
 
-------------------------------------------------------------------------
-r16061 | lego | 2005-10-01 05:36:57 -0500 (Sat, 01 Oct 2005) | 8 lines
-Changed paths:
-   M /trunk/epan/emem.c
-   M /trunk/epan/emem.h
-   M /trunk/epan/tpg.c
-   M /trunk/epan/tpg.h
+change the constants to upper case
+
+
+ the horrors:
+replace two instances where tvb_memcpy()  were used to read straight into a structure to instead read the structure field by field using tvb_get_...()
+This may allow the modbus dissector to actually work.
 
-emem.[ch]:
-Add a simple stack implememtation that uses ep_alloc
-Add ep_new() ep_new0() macros
 
-tpg.[ch]:
-use the stack in tpg helpers
 
 
-------------------------------------------------------------------------
-r16060 | obiot | 2005-09-30 14:29:21 -0500 (Fri, 30 Sep 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-wsp.c
 
-Fix bug 492 - the MMSE dissector calls add_content_type() defined in WSP, which
-uses proto_item_append_string(). The visibility hack must be present, otherwise
-a dissector assert is generated within the MMSE dissector.
 
 ------------------------------------------------------------------------
-r16059 | etxrab | 2005-09-30 13:20:44 -0500 (Fri, 30 Sep 2005) | 1 line
+r16810 | gerald | 2005-12-15 13:12:51 -0600 (Thu, 15 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/diameter/dictionary.xml
+   M /trunk/config.nmake
+   M /trunk/packaging/nsis/Makefile.nmake
+   M /trunk/packaging/nsis/ethereal.nsi
+
+Fix themeing for GTK+ 2.8.  This hasn't been tested under 2.6 or 2.4.
 
-Update AVP:s and error codes.
 ------------------------------------------------------------------------
-r16058 | lego | 2005-09-29 15:38:41 -0500 (Thu, 29 Sep 2005) | 3 lines
+r16809 | gerald | 2005-12-14 21:36:17 -0600 (Wed, 14 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/plugins/tpg/packet-http.c
-
-this struct moved to tvbparse.c
+   M /trunk/config.nmake
+   M /trunk/packaging/nsis/Makefile.nmake
+   M /trunk/packaging/nsis/ethereal.nsi
 
+Make sure we install the libpng and cairo DLLs if needed.
 
 ------------------------------------------------------------------------
-r16057 | lego | 2005-09-29 15:37:05 -0500 (Thu, 29 Sep 2005) | 5 lines
+r16808 | guy | 2005-12-14 20:44:26 -0600 (Wed, 14 Dec 2005) | 9 lines
 Changed paths:
-   M /trunk/epan/tvbparse.c
+   M /trunk/epan/dissectors/packet-tipc.c
 
-I needed to cut'n'paste something more...
+Use the reported length, not the length, to figure out how much to
+dissect (so that we report a packet cut short by the snapshot length).
 
-I did not even try to compile it before check it in, sorry!
+Get rid of an unused variable..
 
+As we restore "pinfo->fragmented" from "save_fragmented" regardless of
+whether we're defragmenting or not, we have to save its previous value
+in "save_fragmented" regardless of whether we're defragmenting or not.
 
 ------------------------------------------------------------------------
-r16056 | etxrab | 2005-09-29 15:24:02 -0500 (Thu, 29 Sep 2005) | 1 line
+r16807 | ulfl | 2005-12-14 18:48:59 -0600 (Wed, 14 Dec 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-uma.c
+   M /trunk/capture_sync.c
 
-Update to the latest version of the standard.
-------------------------------------------------------------------------
-r16055 | etxrab | 2005-09-29 15:22:55 -0500 (Thu, 29 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/sigcomp_state_hdlr.c
+remove the setting of no longer required command line options:
 
-make n a guint32 to not wrap around at 65536
+-H (Hide capture info dialog)
+-m (font to use)
 ------------------------------------------------------------------------
-r16054 | lego | 2005-09-29 15:07:29 -0500 (Thu, 29 Sep 2005) | 3 lines
+r16806 | ulfl | 2005-12-14 18:46:23 -0600 (Wed, 14 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/tvbparse.c
-   M /trunk/epan/tvbparse.h
-
-add a debugging function that creates a tree exploding the parsed elements
-
+   M /trunk/gtk/main.c
 
+remove a missplaced comment
 ------------------------------------------------------------------------
-r16053 | lego | 2005-09-29 15:05:24 -0500 (Thu, 29 Sep 2005) | 3 lines
+r16805 | ulfl | 2005-12-14 18:45:29 -0600 (Wed, 14 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/plugins/tpg/http.tpg
-   M /trunk/plugins/tpg/packet-http.c
-
-at this point this makes a good parser for http headers...
+   M /trunk/dumpcap.c
 
+use capture_opts_trim_iface() instead of duplicated code
 
+various minor code cleanup
 ------------------------------------------------------------------------
-r16052 | lego | 2005-09-29 14:56:21 -0500 (Thu, 29 Sep 2005) | 3 lines
+r16804 | etxrab | 2005-12-14 15:46:56 -0600 (Wed, 14 Dec 2005) | 4 lines
 Changed paths:
-   M /trunk/tools/tpg/tpg.pl
-   M /trunk/tools/tpg/tpg.yp
-
-another step closer
+   M /trunk/asn1/camel/camel.cnf
+   M /trunk/epan/dissectors/packet-camel.c
 
+Fix Bug 628  Bugzilla 2.18.3  
+CAMEL - Connect decoding error 
+- Calledparty number included first two octets
 
 ------------------------------------------------------------------------
-r16051 | etxrab | 2005-09-29 00:37:27 -0500 (Thu, 29 Sep 2005) | 5 lines
+r16803 | etxrab | 2005-12-14 15:40:04 -0600 (Wed, 14 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-jxta.c
-
-From Mike Duigou
-A patch to allow the JXTA dissector to pass fuzz testing. It 
-also removes a couple of unused things and optimizes handling of the raw 
-data dissector.
+   M /trunk/epan/dissectors/packet-tipc.c
 
+Add possibility to try to dissect IP over TIPC.
 ------------------------------------------------------------------------
-r16050 | guy | 2005-09-28 21:20:29 -0500 (Wed, 28 Sep 2005) | 13 lines
+r16802 | gerald | 2005-12-14 15:19:39 -0600 (Wed, 14 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/Makefile.am
-   A /trunk/diameter
-   A /trunk/diameter/dictionary.dtd (from /trunk/dictionary.dtd:16044)
-   A /trunk/diameter/dictionary.xml (from /trunk/dictionary.xml:16044)
-   A /trunk/diameter/imscxdx.xml (from /trunk/imscxdx.xml:16044)
-   A /trunk/diameter/mobileipv4.xml (from /trunk/mobileipv4.xml:16044)
-   A /trunk/diameter/nasreq.xml (from /trunk/nasreq.xml:16044)
-   A /trunk/diameter/sunping.xml (from /trunk/sunping.xml:16044)
-   D /trunk/dictionary.dtd
-   D /trunk/dictionary.xml
-   M /trunk/epan/dissectors/packet-cops.c
-   D /trunk/imscxdx.xml
-   D /trunk/mobileipv4.xml
-   D /trunk/nasreq.xml
+   M /trunk/Makefile.nmake
+   M /trunk/config.nmake
+   M /trunk/packaging/nsis/Makefile.nmake
    M /trunk/packaging/nsis/ethereal.nsi
-   D /trunk/sunping.xml
-
-Move the Diameter dictionary files to a "diameter" subdirectory, along
-the lines of what's done for RADIUS.  That keeps them together (and
-separate from other files), and makes the layout of the top-level source
-directory closer to the layout of the installation directory, so that if
-you run Ethereal or Tethereal from the top-level directory on Windows
-it'll pick up the Diameter dictionary files (if it supports loading
-them), and can do so on UN*X if we support a mechanism to let it find
-its control files in the directory in which the binary resides.
+   M /trunk/tools/win32-setup.sh
 
-Use the diameter_DATA, dtds_DATA, and radius_DATA macros in the
-EXTRA_DIST macro, so you only have to change the lists of Diameter, DTD,
-and RADIUS files in one place if you add or remove a file.
+Add support for GLib/GTK+ 2.8.  Point to the latest tag.
 
 ------------------------------------------------------------------------
-r16049 | guy | 2005-09-28 20:31:19 -0500 (Wed, 28 Sep 2005) | 4 lines
+r16801 | etxrab | 2005-12-14 15:14:57 -0600 (Wed, 14 Dec 2005) | 8 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-sigcomp.c
-   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/AUTHORS
+   M /trunk/epan/dissectors/packet-udp.c
+   M /trunk/epan/dissectors/packet-udp.h
 
-Make "top_tree" static; nobody else uses it, and if they're both not
-static, they collide with one another in builds on at least some
-platforms.
+From Jaap Keuter:
+> Two patch files are attached adding UDP-Lite dissection to the UDP 
+> dissector. Wiki page is available at the normal location, including 
+> sample captures courtesy of Gerrit Renker of the University of 
+> Aberdeen Electronics Research Group. The patch has been tested with 
+> both the sample captures and Fuzz test.
 
+And add Marc Petit-Huguenin to AUTHORS
 ------------------------------------------------------------------------
-r16048 | ulfl | 2005-09-28 17:15:38 -0500 (Wed, 28 Sep 2005) | 3 lines
+r16800 | etxrab | 2005-12-14 15:04:42 -0600 (Wed, 14 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-clnp.c
-   M /trunk/epan/dissectors/packet-dcerpc.c
-   M /trunk/epan/dissectors/packet-http.c
-   M /trunk/epan/dissectors/packet-ip.c
-   M /trunk/epan/dissectors/packet-ipv6.c
-   M /trunk/epan/dissectors/packet-ldp.c
-   M /trunk/epan/dissectors/packet-mq.c
-   M /trunk/epan/dissectors/packet-ndmp.c
-   M /trunk/epan/dissectors/packet-rpc.c
-   M /trunk/epan/dissectors/packet-rtsp.c
-   M /trunk/epan/dissectors/packet-sip.c
-   M /trunk/epan/dissectors/packet-smb.c
-   M /trunk/epan/dissectors/packet-smpp.c
-   M /trunk/epan/dissectors/packet-sna.c
-   M /trunk/epan/dissectors/packet-x25.c
-   M /trunk/plugins/opsi/packet-opsi.c
+   M /trunk/asn1/ros/Makefile.nmake
+   M /trunk/asn1/x509sat/Makefile.nmake
 
-fix #480: Change defaults for all reassembling settings to ON
+Add makefiles
+------------------------------------------------------------------------
+r16799 | etxrab | 2005-12-14 15:02:56 -0600 (Wed, 14 Dec 2005) | 15 lines
+Changed paths:
+   M /trunk/asn1/dap/dap-exp.cnf
+   M /trunk/asn1/dap/dap.asn
+   M /trunk/asn1/dap/dap.cnf
+   M /trunk/asn1/dap/packet-dap-template.c
+   M /trunk/asn1/disp/disp.asn
+   M /trunk/asn1/disp/disp.cnf
+   M /trunk/asn1/disp/packet-disp-template.c
+   M /trunk/asn1/disp/packet-disp-template.h
+   M /trunk/asn1/dop/dop-exp.cnf
+   M /trunk/asn1/dop/dop.cnf
+   M /trunk/asn1/dop/packet-dop-template.c
+   M /trunk/asn1/dsp/dsp.asn
+   M /trunk/asn1/ros/packet-ros-template.c
+   M /trunk/asn1/rtse/packet-rtse-template.c
+   M /trunk/asn1/x411/Makefile
+   M /trunk/asn1/x509if/packet-x509if-template.c
+   M /trunk/asn1/x509if/packet-x509if-template.h
+   M /trunk/asn1/x509if/x509if.cnf
+   M /trunk/asn1/x509sat/Makefile
+   M /trunk/asn1/x509sat/SelectedAttributeTypes.asn
+   M /trunk/asn1/x509sat/x509sat-exp.cnf
+   M /trunk/asn1/x509sat/x509sat.cnf
 
-I've changed all settings I could find to TRUE. It might be reasonable to change some protocol settings back to FALSE, if reassembling fails very often.
-------------------------------------------------------------------------
-r16047 | lego | 2005-09-28 16:35:14 -0500 (Wed, 28 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dtd_preparse.l
+From Grame Lunt:
+Attached is a patch that updates - 
 
-be more flexible in what's a name
+* DOP - This has now been successfully tested and so is now enabled by default and workaround code removed. 
+Also now uses the correct EXPORTs from the other modules/dissectors.
 
+* X509SAT - Most of the selected attributes are now supported in addition to the DirectoryString syntax attributes. This includes restoring the correct DirectoryString syntax and also providing the basic syntaxes (e.g. OBJECT IDENTIFIER, PrintableString). The latter requires a sed line in the Makefile which I assume should be OK? Not all the SAT can be defined in x509sat - so some have been included in x509if and x509af - though x509sat.cnf contains the master list and references the other dissectors where appropriate.
 
-------------------------------------------------------------------------
-r16046 | lego | 2005-09-28 16:33:44 -0500 (Wed, 28 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/stats_tree.c
+(I still prefer a syntax registration approach but I don't think that is going to be agreed in the short term.)
 
-one leak less...
+* X509IF - a mechanism to register some formating, based upon the hf_index, that is used in the cnf file.
 
+* A couple of fixes identified by Stig.
 
+Note the patc for dop did not apply don't regenerate dissectors yet.
 ------------------------------------------------------------------------
-r16045 | lego | 2005-09-28 16:32:47 -0500 (Wed, 28 Sep 2005) | 9 lines
+r16798 | etxrab | 2005-12-14 14:45:15 -0600 (Wed, 14 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-xml.c
-   M /trunk/epan/tvbparse.c
-   M /trunk/epan/tvbparse.h
-
-tvbparse.[ch]:
-- add a tvbparse_handle() (for recursion)
-- change tvbparse_until() to allow more control when parsing
-- make the wanted control an union so that different types of data can be used
-
-packet-xml.c:
-- change the parser definition to match changes to tvbparse_until()
-
+   M /trunk/epan/dissectors/packet-ber.c
 
+From Graeme Lunt:
+Here is a patch for packet-ber.c that only includes the upgraded dissect_unknown_ber()
 ------------------------------------------------------------------------
-r16044 | etxrab | 2005-09-28 15:06:58 -0500 (Wed, 28 Sep 2005) | 1 line
+r16797 | etxrab | 2005-12-14 14:43:39 -0600 (Wed, 14 Dec 2005) | 10 lines
 Changed paths:
-   M /trunk/Makefile.am
+   M /trunk/epan/dissectors/packet-stun.c
 
-Add radius/dictionary.ericsson  \
-------------------------------------------------------------------------
-r16043 | etxrab | 2005-09-28 14:57:45 -0500 (Wed, 28 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-sigcomp.c
+From Marc Petit-Huguenin
 
-Handle sigcomp over TCP.
-------------------------------------------------------------------------
-r16042 | jmayer | 2005-09-28 12:16:30 -0500 (Wed, 28 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-ethertype.c
-   M /trunk/epan/etypes.h
-   M /trunk/manuf
-   M /trunk/wka.tmpl
+This is a patch that add support for the latest drafts[1] in the STUN dissectors. I choose to add TURN directly in the STUN dissector instead of creating a new dissector because of the decision at the latest IETF meeting[2] to redefine TURN as an use case of STUN.
 
-Updates for foundry addresses/protocols
-------------------------------------------------------------------------
-r16041 | etxrab | 2005-09-28 11:39:20 -0500 (Wed, 28 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/packaging/nsis/ethereal.nsi
 
-Add disctionary.ericsson
+[1] ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-ietf-behave-rfc3489bis-02.txt
+ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-rosenberg-midcom-turn-08.txt
+ftp://ftp.rfc-editor.org/in-notes/internet-drafts/draft-camarillo-midcom-turn-ipv6-00.txt
+[2] http://www3.ietf.org/proceedings/05nov/minutes/behave.txt
+
 ------------------------------------------------------------------------
-r16040 | etxrab | 2005-09-28 11:38:40 -0500 (Wed, 28 Sep 2005) | 1 line
+r16796 | etxrab | 2005-12-14 14:01:21 -0600 (Wed, 14 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/sigcomp_state_hdlr.c
+   M /trunk/epan/dissectors/packet-mtp3.c
+   M /trunk/epan/dissectors/packet-sccp.c
 
-It's the UDVM_MEMORY_SIZE that should be checked.
+Use src and dst instead of net_src.
 ------------------------------------------------------------------------
-r16039 | guy | 2005-09-28 11:16:37 -0500 (Wed, 28 Sep 2005) | 5 lines
+r16795 | lego | 2005-12-14 03:50:11 -0600 (Wed, 14 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/ncp2222.py
-   M /trunk/epan/dissectors/packet-bssgp.c
-   M /trunk/epan/dissectors/packet-dcom.c
-   M /trunk/epan/dissectors/packet-esis.c
-   M /trunk/epan/dissectors/packet-frame.c
-   M /trunk/epan/dissectors/packet-frame.h
-   M /trunk/epan/dissectors/packet-gsm_sms_ud.c
-   M /trunk/epan/dissectors/packet-msdp.c
-   M /trunk/epan/dissectors/packet-pim.c
-   M /trunk/epan/dissectors/packet-ppp.c
-   M /trunk/epan/dissectors/packet-pppoe.c
-   M /trunk/epan/dissectors/packet-smb-pipe.c
-   M /trunk/epan/dissectors/packet-sna.c
-   M /trunk/epan/dissectors/packet-udp.c
-   M /trunk/epan/ftypes/ftype-string.c
-   M /trunk/epan/proto.c
-   M /trunk/epan/proto.h
+   M /trunk/epan/radius_dict.l
+
+Close the dictionary files after reading from them.
 
-Have show_exception() take a "const char *" as its exception message,
-and not free the string to which it points.  Pass to
-REPORT_DISSECTOR_BUG() strings allocated with ep_strdup_printf(), so
-that they're freed automatically.
 
 ------------------------------------------------------------------------
-r16038 | guy | 2005-09-28 04:31:37 -0500 (Wed, 28 Sep 2005) | 7 lines
+r16794 | ulfl | 2005-12-14 03:43:16 -0600 (Wed, 14 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-hsrp.c
-
-Don't change the Info column if we have an unknown opcode; we've already
-set it to a value that should indicate that the opcode is unknown, and
-also indicates what the value is.  (Especially don't do it without
-calling check_col() to check whether we *should* change the info column,
-as we'll dereference a null pointer if we shouldn't; this change should
-fix bug 489.)
+   M /trunk/docbook/eug_src/EUG_chapter_customize.xml
 
+update Ethereal command line options -D and -i
 ------------------------------------------------------------------------
-r16037 | jmayer | 2005-09-28 03:14:54 -0500 (Wed, 28 Sep 2005) | 5 lines
+r16793 | ulfl | 2005-12-14 03:16:30 -0600 (Wed, 14 Dec 2005) | 6 lines
 Changed paths:
-   M /trunk/tools/fuzz-test.sh
+   M /trunk/doc/ethereal.pod
 
-In case the paths to the tools are wrong, inform the
-user about it instead of complaining that no capture files
-could be found.
+document latest command line changes:
 
+new: -D to list interfaces
+changed: -i will also accept indices (rather than complete names only)
 
+text copied from the tethereal.pod file
 ------------------------------------------------------------------------
-r16036 | guy | 2005-09-28 03:01:54 -0500 (Wed, 28 Sep 2005) | 3 lines
+r16792 | guy | 2005-12-14 01:33:07 -0600 (Wed, 14 Dec 2005) | 7 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-snmp.c
+   M /trunk/epan/dissectors/packet-isup.c
+
+"a & b == c" is, in C, parsed as "a & (b == c)" - and if b and c are the
+same, and have only one bit set, "(a & b) == c", which is what is
+intended, is the same as "a & b".
 
-Note that we should redo the handling of OIDs when
-"dissect_ber_object_identifier()" can return the OID in a binary form.
+In addition, we don't want to do desegmentation if "isup_apm_desegment"
+isn't set, so that test should be ANDed with the other two tests.
 
 ------------------------------------------------------------------------
-r16035 | obiot | 2005-09-28 02:08:57 -0500 (Wed, 28 Sep 2005) | 11 lines
+r16791 | guy | 2005-12-14 01:29:38 -0600 (Wed, 14 Dec 2005) | 14 lines
 Changed paths:
-   M /trunk/epan/proto.c
+   M /trunk/capture-pcap-util.c
+   M /trunk/capture-pcap-util.h
+   M /trunk/capture_loop.c
+   M /trunk/capture_loop.h
+   M /trunk/capture_ui_utils.c
+   M /trunk/capture_ui_utils.h
+   M /trunk/gtk/capture_dlg.c
+   M /trunk/gtk/capture_info_dlg.c
+   M /trunk/tethereal.c
+
+Constify a bunch of arguments and variables, to squelch compiler
+warnings.
 
-The TRY_TO_FAKE_THIS_ITEM() speed optimization has a side effect in that it
-will only process FT_PROTOCOL fields. As a result, proto_item_append_string()
-calls may throw a dissector exception, as only a FT_STRING or FT_STRINGZ can be
-appended to with this call.
+Include "wiretap/libpcap.h" in "capture_loop.h", to get its declarations
+of data structures for headers in libpcap files.  This lets us remove
+the includes of "wiretap/libpcap.h from files including
+"capture_loop.h".
 
-In order to prevent these dissector assertions, silently return from the append
-call if the field is a FT_PROTOCOL.
+Make "log_func_ignore()" in "tethereal.c" static, and declare some of
+its arguments unused.  Also get rid of an unused variable.
 
-Note that when the tree is visible, the updates of the fields occur normally,
-as expected.
+Include <pcap.h> before including "wiretap/wtap-capture.h", to declare
+"struct pcap_pkthdr".
 
 ------------------------------------------------------------------------
-r16034 | etxrab | 2005-09-28 00:16:51 -0500 (Wed, 28 Sep 2005) | 1 line
+r16790 | ulfl | 2005-12-13 19:45:09 -0600 (Tue, 13 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/Makefile.am
+   M /trunk/gtk/capture_info_dlg.c
 
-Add dictionarry.ericsson
+hmmm, the include sequence might be important too ...
 ------------------------------------------------------------------------
-r16033 | lego | 2005-09-27 20:17:45 -0500 (Tue, 27 Sep 2005) | 3 lines
+r16789 | ulfl | 2005-12-13 18:10:23 -0600 (Tue, 13 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-xml.c
-
-make sure we tell tvbparse_until() to include the last token.
+   M /trunk/gtk/capture_info_dlg.c
 
+add missing include
+------------------------------------------------------------------------
+r16788 | ulfl | 2005-12-13 17:15:20 -0600 (Tue, 13 Dec 2005) | 1 line
+Changed paths:
+   A /trunk/test
+   A /trunk/test/README.test
+   A /trunk/test/config.sh
+   A /trunk/test/dhcp.pcap
+   A /trunk/test/suite-capture.sh
+   A /trunk/test/suite-clopts.sh
+   A /trunk/test/test-backend.sh
+   A /trunk/test/test.sh
 
+add a new directory 'test', currently containing an alpha test (using some simple bash scripts) of the ethereal/tethereal command line parameters. See the file README.test for details.
 ------------------------------------------------------------------------
-r16032 | lego | 2005-09-27 20:06:39 -0500 (Tue, 27 Sep 2005) | 6 lines
+r16787 | ulfl | 2005-12-13 16:48:58 -0600 (Tue, 13 Dec 2005) | 9 lines
 Changed paths:
-   M /trunk/epan/tpg.h
-   M /trunk/epan/tvbparse.c
-   M /trunk/plugins/tpg/http.tpg
-   M /trunk/tools/tpg/tpg.pl
-   M /trunk/tools/tpg/tpg.yp
+   M /trunk/Makefile.common
+   M /trunk/capture_loop.c
+   M /trunk/capture_loop.h
+   M /trunk/capture_opts.c
+   M /trunk/capture_opts.h
+   M /trunk/dumpcap.c
+   M /trunk/gtk/main.c
+   M /trunk/tethereal.c
+
+HUGE STEP (hopefully toward the right direction):
+remove a lot of redundant code from tethereal and use (move) stuff from capture_loop.c instead.
 
-update tpg
+concentrate common capture related code in capture_opts.c, e.g. trying to find the right interface to capture from (command line option, preference, first usable) instead of duplicating this code over several files.
 
-tvbparse:
-     - for tvbparse_until spend the target token even if it isn't included
+remove redundant code from dumpcap.c
 
+this also implements command line option -D (and indexed interfaces at -i) for Ethereal and Dumpcap (as we have it in Tethereal already for a while)
 
 ------------------------------------------------------------------------
-r16031 | lego | 2005-09-27 17:57:07 -0500 (Tue, 27 Sep 2005) | 10 lines
+r16786 | ulfl | 2005-12-13 16:35:28 -0600 (Tue, 13 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-xml.c
-   M /trunk/epan/tvbparse.c
-   M /trunk/epan/tvbparse.h
-
-in tvbparse:
-  - tvbparse_some now handles 0 items.
-  - added accessors for a tt's offset and remaining length.
-
-in packet-xml:
-  - min_len=0 for tvbparse_chars() is soon going to mean zero instead of 1 change the 0s to 1s.
-  - attribute names can have ':' even if it's namespaces isn't managed yet.
-  - split the xml grammar in more elements so It can be actually read by a human being.
+   M /trunk/capture_sync.c
 
+we don't use the command line option -W any longer, remove it from a comment
+------------------------------------------------------------------------
+r16785 | ulfl | 2005-12-13 16:33:55 -0600 (Tue, 13 Dec 2005) | 1 line
+Changed paths:
+   M /trunk/capture_ui_utils.c
+   M /trunk/capture_ui_utils.h
 
+make get_if_name() parameter if_text const, it's not changed inside
 ------------------------------------------------------------------------
-r16030 | lego | 2005-09-27 17:06:36 -0500 (Tue, 27 Sep 2005) | 3 lines
+r16784 | lego | 2005-12-13 16:08:37 -0600 (Tue, 13 Dec 2005) | 3 lines
 Changed paths:
-   A /trunk/plugins/tpg
-   A /trunk/plugins/tpg/Makefile.am
-   A /trunk/plugins/tpg/Makefile.nmake
-   A /trunk/plugins/tpg/http.tpg
-   A /trunk/plugins/tpg/packet-http.c
+   M /trunk/plugins/mate/mate_grammar.lemon
 
-A "working" example of TPG...
+we are opening the file for writing....
 
 
 ------------------------------------------------------------------------
-r16029 | lego | 2005-09-27 16:56:14 -0500 (Tue, 27 Sep 2005) | 3 lines
+r16783 | lego | 2005-12-13 16:07:09 -0600 (Tue, 13 Dec 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/tpg.c
+   M /trunk/epan/dissectors/packet-sccp.c
+
+handle sccp connections.
+(first step towards RANAP analysis).
 
-http_dissector_add doesn't belong here!
 
 
 ------------------------------------------------------------------------
-r16028 | lego | 2005-09-27 16:54:45 -0500 (Tue, 27 Sep 2005) | 3 lines
+r16782 | lego | 2005-12-13 16:04:02 -0600 (Tue, 13 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/tools/tpg/tpg.pl
+   M /trunk/asn1/tcap/packet-tcap-template.c
+   M /trunk/epan/dissectors/packet-tcap.c
 
-now it starts to work...
+Avoid the default sccp.ssn range to overwrite sccp.ssns of other dissectors.
 
 
 ------------------------------------------------------------------------
-r16027 | ulfl | 2005-09-27 16:51:08 -0500 (Tue, 27 Sep 2005) | 1 line
+r16781 | etxrab | 2005-12-13 15:14:54 -0600 (Tue, 13 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/gtk/font_utils.c
-   M /trunk/gtk/gui_prefs.c
-   M /trunk/gtk/menu.c
-   M /trunk/gtk/packet_list.c
-   M /trunk/gtk/packet_list.h
-   M /trunk/gtk/stream_prefs.c
+   M /trunk/epan/dissectors/packet-isup.c
+   M /trunk/epan/dissectors/packet-m3ua.c
 
-code cleanup: use the prefix packet_list_ for every function mentioned in packet_list.h
+Change reassembly to include first empty segment, check if SLR exists.
+Change pinfo->src/dst to use SS7 address for reassembly to use the correct key.
 ------------------------------------------------------------------------
-r16026 | jmayer | 2005-09-27 16:50:50 -0500 (Tue, 27 Sep 2005) | 1 line
+r16780 | gerald | 2005-12-13 11:00:03 -0600 (Tue, 13 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-hsrp.c
+   M /trunk/epan/dissectors/packet-ncp2222.inc
 
-Op Code 3 (Advertisement) dissection
-------------------------------------------------------------------------
-r16025 | ulfl | 2005-09-27 16:48:17 -0500 (Tue, 27 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/capture_loop.c
+Throw an exception if we have an invalid offset.  Fixes bug 585.
 
-mention "http://wiki.ethereal.com/CaptureSetup" in the error dialog, when the capture interface couldn't be opened
 ------------------------------------------------------------------------
-r16024 | ulfl | 2005-09-27 16:46:39 -0500 (Tue, 27 Sep 2005) | 1 line
+r16779 | guy | 2005-12-13 04:59:33 -0600 (Tue, 13 Dec 2005) | 7 lines
 Changed paths:
-   M /trunk/file.c
+   M /trunk/epan/dissectors/packet-isup.c
+
+Fix some bit mask tests - & has lower priority than !=, so "a & b != c"
+means "a & (b != c)", not "(a & b) != c".
+
+Put in a comment noting a potential problem with defragmentation,
+pointed out by a compiler warning that apm_Segmentation_local_ref might
+not be set before it's used.
 
-minor bugfix: call cf_callback_invoke() from cf_close() even if the file is already closed. Otherwise the GUI will remain in the wrong state if a capture couldn't be started (e.g. wrong interface).
 ------------------------------------------------------------------------
-r16023 | ulfl | 2005-09-27 16:44:46 -0500 (Tue, 27 Sep 2005) | 1 line
+r16778 | guy | 2005-12-13 04:54:11 -0600 (Tue, 13 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/docbook/edg_src/EDG_chapter_sources.xml
+   M /trunk/epan/dissectors/packet-3com-njack.c
+
+Escape question marks when they could be interpreted as part of a
+trigraph.
 
-add a new subsection "Code Requirements" and mention fuzz testing there
 ------------------------------------------------------------------------
-r16022 | etxrab | 2005-09-27 16:04:59 -0500 (Tue, 27 Sep 2005) | 1 line
+r16777 | guy | 2005-12-13 04:09:52 -0600 (Tue, 13 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/radius/dictionary
-   A /trunk/radius/dictionary.ericsson
+   M /trunk/epan/libethereal.def
+
+Add tvb_fake_unicode().
 
-Add a miniscule ericsson radius dictionary.
 ------------------------------------------------------------------------
-r16021 | lego | 2005-09-27 15:48:48 -0500 (Tue, 27 Sep 2005) | 9 lines
+r16776 | jmayer | 2005-12-13 03:30:09 -0600 (Tue, 13 Dec 2005) | 11 lines
 Changed paths:
-   A /trunk/epan/tpg.c
-   A /trunk/epan/tpg.h
-   A /trunk/tools/tpg
-   A /trunk/tools/tpg/Makefile.am
-   A /trunk/tools/tpg/Makefile.nmake
-   A /trunk/tools/tpg/V2P.pm
-   A /trunk/tools/tpg/tpg.pl
-   A /trunk/tools/tpg/tpg.yp
-
-TPG TVB Parser Generator
+   M /trunk/tools/pidl/lib/Parse/Pidl/Ethereal/Conformance.pm
+   M /trunk/tools/pidl/lib/Parse/Pidl/Ethereal/NDR.pm
 
-Given a bnf-like grammar generate a set of helpers for a dissector
+Update from samba tree revision 12185 to 12205
+============================ Samba log start ============
+------------------------------------------------------------------------
+r12205 | jelmer | 2005-12-13 02:56:04 +0100 (Tue, 13 Dec 2005) | 2 lines
 
-It's not working yet, however I need this checkin as a cheeckpoint
+Support 'TFS' command in conformance files
 
-(I'll write the doc when it starts to be ready)
+------------------------------------------------------------------------
+============================ Samba log end ==============
 
 
 ------------------------------------------------------------------------
-r16020 | kukosa | 2005-09-27 05:05:42 -0500 (Tue, 27 Sep 2005) | 1 line
+r16775 | sahlberg | 2005-12-13 01:53:52 -0600 (Tue, 13 Dec 2005) | 4 lines
 Changed paths:
-   M /trunk/asn1/h225/h225.cnf
-   M /trunk/asn1/h225/packet-h225-template.c
-   M /trunk/epan/dissectors/packet-h225.c
+   A /trunk/epan/dissectors/pidl/wkssvc.cnf
+   M /trunk/epan/dissectors/pidl/wkssvc.idl
+
+update the work-in-progress pidl generated wkssvc dissector and add a conformance file using the new nice TFS conformance file directive
+
+
 
-new option whether tunnelled H.245 and tunnelled protocol are displayed inside H.225 tree or outside
 ------------------------------------------------------------------------
-r16019 | sahlberg | 2005-09-27 03:03:13 -0500 (Tue, 27 Sep 2005) | 6 lines
+r16774 | sahlberg | 2005-12-13 00:36:30 -0600 (Tue, 13 Dec 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-fc.c
-   M /trunk/epan/dissectors/packet-fcels.c
+   M /trunk/epan/dissectors/packet-dnp.c
 
-remove all strcpy from fcels
-ito make it easier to read use doublespace to separate the items on the expansion line instead of ',' since so many of the strings contain spaces.
+swap Trip/Close as per bug 579
 
-cleanup fc slightly and remove a redundant parameter
 
 
 ------------------------------------------------------------------------
-r16018 | kukosa | 2005-09-27 02:14:07 -0500 (Tue, 27 Sep 2005) | 1 line
+r16773 | gerald | 2005-12-12 21:48:26 -0600 (Mon, 12 Dec 2005) | 9 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-per.c
+   M /trunk/asn1/h248/h248.cnf
+   M /trunk/epan/dissectors/packet-h248.c
+   M /trunk/tools/asn2eth.py
 
-bug in dissect_per_object_identifier_str() fixed, wrong pointer was passed to oid_to_str()
-------------------------------------------------------------------------
-r16017 | kukosa | 2005-09-27 01:09:14 -0500 (Tue, 27 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/except.c
-   M /trunk/epan/except.h
+asn2eth.py:
 
-get rid of warnings about qualifier discarding
-------------------------------------------------------------------------
-r16016 | etxrab | 2005-09-27 00:39:58 -0500 (Tue, 27 Sep 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-tcp.c
-   M /trunk/epan/dissectors/packet-tpkt.c
+Catch a TypeError that gets thrown if we don't use any conversion
+specifiers during string formatting.
 
-- Make the reassemble TCP preference default TRUE.
-- in dissect_tpkt_encap() only check the desegment flag passed in the function.
+H.248:
 
+Don't dereference a null pointer.  Fixes bug 626.
 
 ------------------------------------------------------------------------
-r16015 | guy | 2005-09-26 19:03:45 -0500 (Mon, 26 Sep 2005) | 17 lines
+r16772 | ulfl | 2005-12-12 20:09:14 -0600 (Mon, 12 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-radius.c
-
-Give more details about too-short AVPs, give up immediately for AVPs
-shorter than 2 bytes, and make the item for an AVP with a length < 2 a
-generated item.
-
-Put the top-level item for an AVP into the tree the same way regardless
-of whether it's Vendor-Specific or not, and skip past the type and
-length right after that, before we check for Vendor-Specific.  (This
-means we no longer treat "vendor ID = 0" as an indication that this
-isn't Vendor-Specific - nothing prevents a packet from getting onto the
-wire with a vendor ID of 0; this fixes bug 485.)
-
-Don't require a Vendor-Specific AVP to be at least 6 bytes long; it
-might not be particularly useful to have one that has a vendor ID and
-nothing else, but we might as well dissect the vendor ID portion.
+   M /trunk/gtk/main.c
 
-Do some other cleanups.
+We should really do quit Ethereal if user asked us to do so with the -Q option!
 
+Update the window title, right after the fixed capture finished. This might be required if the loading of the capture file afterwards just fails, leaving the title unchanged.
 ------------------------------------------------------------------------
-r16014 | obiot | 2005-09-26 15:49:33 -0500 (Mon, 26 Sep 2005) | 2 lines
+r16771 | ulfl | 2005-12-12 19:17:36 -0600 (Mon, 12 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-wsp.c
+   M /trunk/capture_info.c
 
-Part 2 of the fix: also add the correct offset for non-WSP address records.
+don't try to close wtap, if we couldn't load the wiretap file
+------------------------------------------------------------------------
+r16770 | jmayer | 2005-12-12 17:38:04 -0600 (Mon, 12 Dec 2005) | 1 line
+Changed paths:
+   M /trunk/epan/dissectors/packet-3com-njack.c
 
+Convert to new style dissector (hopefully done right)
 ------------------------------------------------------------------------
-r16013 | guy | 2005-09-26 15:34:13 -0500 (Mon, 26 Sep 2005) | 5 lines
+r16769 | lego | 2005-12-12 17:23:32 -0600 (Mon, 12 Dec 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/proto.h
+   M /trunk/plugins/mate/mate_grammar.lemon
+   M /trunk/plugins/mate/mate_parser.l
+   M /trunk/plugins/mate/mate_runtime.c
+   M /trunk/plugins/mate/mate_setup.c
+   M /trunk/plugins/mate/packet-mate.c
+
+- add Debug and Default declarations.
+- supress unwanted console printouts.
 
-Make "REPORT_DISSECTOR_BUG()" (and the macros that use it) call
-"abort()" if the ETHEREAL_ABORT_ON_DISSECTOR_BUG environment variable is
-set; this is for debugging purposes, to make it easier to get a stack
-trace of the offending call.
 
 ------------------------------------------------------------------------
-r16012 | obiot | 2005-09-26 15:00:37 -0500 (Mon, 26 Sep 2005) | 8 lines
+r16768 | jmayer | 2005-12-12 17:14:41 -0600 (Mon, 12 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-wsp.c
+   M /trunk/epan/dissectors/packet-3com-njack.c
 
-Fix WSP redirect and SIR address parsing:
+Dissect type 0x0c as 'remove tag' flag
+------------------------------------------------------------------------
+r16767 | ulfl | 2005-12-12 16:29:00 -0600 (Mon, 12 Dec 2005) | 5 lines
+Changed paths:
+   M /trunk/docbook/edg_src/EDG_chapter_tools.xml
 
- - The incorrect number of octets were highlighted (bearer type and port number
-   were disregarded).
+Add a note that the Win32 tool recommendations should be strictly followed.
 
- - In SIR version 1 content, correct the parsing (full WSP address length was
-   not added to the offset for parsing the non-WSP contact points).
+Change tool headers: "UNIX:" -> "UNIX or Win32 Cygwin:"
 
+Update output of verify_tools target
 ------------------------------------------------------------------------
-r16011 | ulfl | 2005-09-26 14:24:06 -0500 (Mon, 26 Sep 2005) | 1 line
+r16766 | gerald | 2005-12-12 10:49:49 -0600 (Mon, 12 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/gtk/prefs_dlg.c
+   M /trunk/epan/dissectors/packet-juniper.c
+
+Use "guint" instead of "u_int".
 
-fix #322, 2nd try: don't pass NULL to gtk_tree_iter_free(), this seems to cause an assert on some GTK versions
 ------------------------------------------------------------------------
-r16010 | etxrab | 2005-09-26 13:18:06 -0500 (Mon, 26 Sep 2005) | 1 line
+r16765 | etxrab | 2005-12-12 09:17:53 -0600 (Mon, 12 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/format-oid.h
-   M /trunk/epan/dissectors/packet-cops.c
+   M /trunk/epan/dissectors/packet-isup.c
 
-Remove dependencies on asn1.c, stil endes to be included to define subid_t.
+Reassmble apm messages.
 ------------------------------------------------------------------------
-r16009 | sahlberg | 2005-09-26 05:11:38 -0500 (Mon, 26 Sep 2005) | 13 lines
+r16764 | etxrab | 2005-12-12 04:28:57 -0600 (Mon, 12 Dec 2005) | 8 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-fc.c
-
-remove all strcpy() from packet-fc.c
+   M /trunk/epan/dissectors/packet-juniper.c
 
-rewrite the functions to do proto_item_append_text() instead of building a string and then printing it.
+From Hannes Gredler
 
-The new function is functionally equivalent to the previous function except it does not print the values of the multi-bit fields to the expansion
-(the expansion line is already a km wide as it is)
+-add codepoint to name resolution for Juniper IFMT, IFLE extension TLVs
+-bugfix: DLT_JUNIPER_PPP, correct the calculate offset for PPP payload
+-bugfix: DLT_JUNIPER_CHDLC, add CHDLC handler
+-bugfix: add a more flexible TLV value extraction function which
+   does not bail if the assumed TLV length does not match
 
+------------------------------------------------------------------------
+r16763 | guy | 2005-12-12 04:15:56 -0600 (Mon, 12 Dec 2005) | 4 lines
+Changed paths:
+   M /trunk/epan/dissectors/pidl/atsvc.idl
+   M /trunk/epan/dissectors/pidl/dssetup.idl
 
+OK, if we're not going to have our "idl_types.h" different from Samba's,
+we have to put the definition of "unistr" as "[string] wchar_t *" into
+the IDL files that use "unistr".
 
-there are now only 202 strcpy() left in epan/dissectors  down from 300+ instances some weeks ago.
+------------------------------------------------------------------------
+r16762 | lego | 2005-12-11 19:32:31 -0600 (Sun, 11 Dec 2005) | 3 lines
+Changed paths:
+   M /trunk/plugins/mate/mate_setup.c
 
+Avoid to crash if we are given an unexistent field.
 
 
 ------------------------------------------------------------------------
-r16008 | guy | 2005-09-26 03:48:19 -0500 (Mon, 26 Sep 2005) | 13 lines
+r16761 | lego | 2005-12-11 19:27:51 -0600 (Sun, 11 Dec 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-radius.c
-   M /trunk/epan/dissectors/packet-radius.h
-   M /trunk/epan/radius_dict.l
+   M /trunk/plugins/mate/mate_grammar.lemon
 
-Add a new "ipxnet" type for the RADIUS dictionary, for IPX network
-numbers.  (Currently, we don't have any dictionary entries with that
-type, although we have an attribute with special code to handle it that
-uses that type.)
+Done is not needed anymore; 
+in Pdus transforms go before Criteria (because they are evaluated before)
 
-Specially handle Framed-IP-Address, Login-IP-Host, and
-Framed-IPX-Network, so that the special values are displayed specially.
 
-Clean up indentation.
+------------------------------------------------------------------------
+r16760 | jmayer | 2005-12-11 18:07:54 -0600 (Sun, 11 Dec 2005) | 3 lines
+Changed paths:
+   M /trunk/AUTHORS
+   M /trunk/epan/dissectors/Makefile.common
+   A /trunk/epan/dissectors/packet-3com-njack.c
 
-Don't specify a number base for IPv4 or IPv6 addresses; the number base
-is ignored.
+Dissect the management protocol between 3com Netjack200 devices and the
+Windows managment application.
 
 ------------------------------------------------------------------------
-r16007 | guy | 2005-09-26 03:44:31 -0500 (Mon, 26 Sep 2005) | 3 lines
+r16759 | lego | 2005-12-11 17:22:14 -0600 (Sun, 11 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-gtp.c
+   M /trunk/plugins/mate/mate_grammar.lemon
+
+Cleanup the grammar.
 
-Use VENDOR_THE3GPP, rather than a hardcoded 10415, for the vendor ID for
-the 3GPP.
 
 ------------------------------------------------------------------------
-r16006 | ulfl | 2005-09-26 02:08:42 -0500 (Mon, 26 Sep 2005) | 1 line
+r16758 | jmayer | 2005-12-11 16:54:43 -0600 (Sun, 11 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/gtk/packet_list.c
+   M /trunk/epan/dissectors/pidl/idl_types.h
 
-compiler warning removed
+Updates from samba svn
 ------------------------------------------------------------------------
-r16005 | etxrab | 2005-09-26 00:43:25 -0500 (Mon, 26 Sep 2005) | 9 lines
+r16757 | jmayer | 2005-12-11 16:53:25 -0600 (Sun, 11 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-stun.c
-   M /trunk/epan/dissectors/packet-ymsg.c
-
-From Martin Mathieson:
-
-stun -  add support for 3 extra Message Attributes as described in draft-ietf-behave-rfc3489bis-00
-
-ymsg 
- - avoid looking beyond the tvb while looking for content item delimiters (causing most frames to be shown as malformed packet)
-- makes content items (and their keys and values) filterable  (includes fix to bug 415)
-
+   M /trunk/epan/dissectors/packet-skinny.c
 
+Start the function name on a new line to make it easier to search
 ------------------------------------------------------------------------
-r16004 | ulfl | 2005-09-25 17:46:49 -0500 (Sun, 25 Sep 2005) | 3 lines
+r16756 | jmayer | 2005-12-11 16:52:20 -0600 (Sun, 11 Dec 2005) | 5 lines
 Changed paths:
-   M /trunk/gtk/prefs_dlg.c
+   M /trunk/epan/dissectors/packet-dtp.c
 
-fix #322: packet detail window -> Protocol Preferences: tree not expanded
+Port some information from yersinia
+(http://yersinia.sourceforge.net/index.html)
+by Alfredo Andres and David Barroso. There's more information to be put
+into Ethereal but it's a start.
 
-also removed global notebook value
 ------------------------------------------------------------------------
-r16003 | gerald | 2005-09-25 17:19:57 -0500 (Sun, 25 Sep 2005) | 3 lines
+r16755 | sahlberg | 2005-12-11 16:29:39 -0600 (Sun, 11 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/docbook/release-notes.xml
-   M /trunk/plugins/agentx/packet-agentx.c
+   M /trunk/epan/dissectors/packet-smb.c
+
+implement SMB_FILE_ALL_INFO properly once and for all
 
-Don't write before the beginning of a buffer.  Add an item to the
-release notes.
 
 ------------------------------------------------------------------------
-r16002 | guy | 2005-09-25 04:32:01 -0500 (Sun, 25 Sep 2005) | 17 lines
+r16754 | guy | 2005-12-10 16:42:19 -0600 (Sat, 10 Dec 2005) | 10 lines
 Changed paths:
-   M /trunk/asn1/gsmmap/gsmmap.cnf
-   M /trunk/asn1/gsmmap/packet-gsm_map-template.c
-   M /trunk/epan/dissectors/packet-gsm_map.c
-
-A loop processing all the bytes in a tvbuff from a given offset to the
-end of the data in the tvbuff should stop when the offset is >= the
-total amount of data in the tvbuff, not when it's > the total amount in
-the tvbuff following the starting offset.
+   M /trunk/epan/dissectors/packet-dcerpc-atsvc.c
+   M /trunk/epan/dissectors/packet-dcerpc-dssetup.c
+   M /trunk/epan/dissectors/packet-dcerpc-initshutdown.c
+   M /trunk/epan/dissectors/packet-dcerpc-winreg.c
+   M /trunk/epan/dissectors/pidl/idl_types.h
+   M /trunk/epan/dissectors/pidl/packet-dcerpc-atsvc.c
+   M /trunk/epan/dissectors/pidl/packet-dcerpc-initshutdown.c
+   M /trunk/epan/dissectors/pidl/packet-dcerpc-winreg.c
+   M /trunk/tools/pidl/lib/Parse/Pidl/Ethereal/NDR.pm
 
-In "unpack_digits()", return a null string, not a null pointer, if
-there's nothing left in the tvbuff starting at the starting offset, so
-that the caller doesn't have to check for a null pointer, and return an
-ep_alloc()ed buffer, so the caller doesn't have to worry about freeing
-the result.
+The Bitmap routine in lib/Parse/Pidl/Ethereal/NDR.pm in Pidl generates
+fields as BASE_DEC; bitmaps are typically displayed in hex in Ethereal,
+so it should generate BASE_HEX instead.  (Submitted to
+bugzilla.samba.org as bug 3313.)
 
-If we see a filler digit, don't advance the offset in the string buffer;
-we want to put the terminating '\0' right after the character we just
-put into the string.
+A couple of the IDL files use "unistr"; define it as "[string] uint16",
+so that the resulting dissectors work correctly.
 
-Fuzzed against some GSM captures.
+Regenerate dissectors.
 
 ------------------------------------------------------------------------
-r16001 | guy | 2005-09-25 04:07:41 -0500 (Sun, 25 Sep 2005) | 2 lines
+r16753 | ulfl | 2005-12-10 05:14:36 -0600 (Sat, 10 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
+   M /trunk/Makefile.nmake
 
-Show unsigned quantities as such.
+the verify_tool target should check for /usr/bin/find (I errorneously did changed it a while ago)
 
+add a comment why we should check for exactly that version
 ------------------------------------------------------------------------
-r16000 | guy | 2005-09-25 04:06:48 -0500 (Sun, 25 Sep 2005) | 8 lines
+r16752 | sahlberg | 2005-12-09 16:06:38 -0600 (Fri, 09 Dec 2005) | 11 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc.c
-
-If "dissect_dcerpc_cn()" throws an exception when called by
-"dissect_dcerpc_cn_bs_body()", it's because it recognized the packet as
-a DCE RPC packet, but it ran out of data dissecting it as such;
-increment the count of DCE RPC PDUs, so "dissect_dcerpc_cn_bs_body()"
-returns TRUE, and its caller doesn't think nothing was dissected.
+   M /trunk/epan/emem.c
 
-Fuzzed with some DCE RPC captures.
+if passed a NULL string, make se_strdup() return the static string
+"<NULL>" instead of dumping.
 
-------------------------------------------------------------------------
-r15999 | lego | 2005-09-24 21:50:03 -0500 (Sat, 24 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-radius.c
+This allows callers to not have to check if the string is NULL or not.
 
-test the avp_vsa_len not the avp_lenght!
 
+This fixes bugs 614 615 617 620 621 and 623
 
-------------------------------------------------------------------------
-r15998 | lego | 2005-09-24 21:48:53 -0500 (Sat, 24 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-radius.c
 
-Don't ASSERT if a VSA is too short, add an item reporting the error and leave.
 
 
 ------------------------------------------------------------------------
-r15997 | lego | 2005-09-24 21:44:37 -0500 (Sat, 24 Sep 2005) | 2 lines
+r16751 | etxrab | 2005-12-09 12:02:18 -0600 (Fri, 09 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/dtds/rss.dtd
-
-rating was defined twice
+   M /trunk/epan/dissectors/Makefile.common
 
+Add packet-nhrp.h
 ------------------------------------------------------------------------
-r15996 | sahlberg | 2005-09-24 20:44:23 -0500 (Sat, 24 Sep 2005) | 4 lines
+r16750 | jmayer | 2005-12-09 10:51:56 -0600 (Fri, 09 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-ospf.c
-
-remove some redundant code that would always evaluate to true anyway.
-
+   M /trunk/epan/dissectors/packet-iuup.c
+   M /trunk/epan/dtd.h
+   M /trunk/epan/dtd_parse.h
+   M /trunk/plugins/mate/examples/pasv_ftp.mate
+   M /trunk/plugins/mate/examples/tcp.mate
+   M /trunk/plugins/mate/examples/web.mate
+   M /trunk/plugins/mate/mate_grammar.lemon
+   M /trunk/plugins/tpg/http.tpg
+   M /trunk/tools/tpg/V2P.pm
+   M /trunk/tools/tpg/tpg.pl
+   M /trunk/tools/tpg/tpg.yp
 
+Fix ...$ to : $
+------------------------------------------------------------------------
+r16749 | jmayer | 2005-12-09 10:46:24 -0600 (Fri, 09 Dec 2005) | 1 line
+Changed paths:
+   M /trunk/asn1/ldap/Lightweight-Directory-Access-Protocol-V3.asn
+   M /trunk/asn1/ldap/Lightweight-Directory-Access-Protocol-V3.asn.orig
+   M /trunk/asn1/ldap/Makefile.nmake
+   M /trunk/asn1/ldap/README
+   M /trunk/asn1/ldap/ldap.cnf
+   M /trunk/asn1/ldap/packet-ldap-template.c
+   M /trunk/asn1/ldap/packet-ldap-template.h
 
+Add missing propset ...
 ------------------------------------------------------------------------
-r15995 | sahlberg | 2005-09-24 18:25:38 -0500 (Sat, 24 Sep 2005) | 5 lines
+r16748 | jmayer | 2005-12-09 10:40:06 -0600 (Fri, 09 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-fcp.c
+   M /trunk/epan/make-sminmpec.pl
 
-prettify the previous patch
+Maybe Id will work now
+------------------------------------------------------------------------
+r16747 | jmayer | 2005-12-09 10:24:05 -0600 (Fri, 09 Dec 2005) | 1 line
+Changed paths:
+   M /trunk/epan/enterprise-numbers
 
-remove the remaining strcpy() from this dissector and make it decode the bitmap PROPERLY.
+Update enterprise-numbers
+------------------------------------------------------------------------
+r16746 | etxrab | 2005-12-09 10:19:49 -0600 (Fri, 09 Dec 2005) | 1 line
+Changed paths:
+   M /trunk/AUTHORS
 
+Add  Deepak Jain as author of Next Hop Resolution Protocol
+------------------------------------------------------------------------
+r16745 | etxrab | 2005-12-09 10:15:25 -0600 (Fri, 09 Dec 2005) | 1 line
+Changed paths:
+   M /trunk/epan/dissectors/packet-tipc.c
 
+Minor bug fixes.
 ------------------------------------------------------------------------
-r15994 | sahlberg | 2005-09-24 17:43:15 -0500 (Sat, 24 Sep 2005) | 8 lines
+r16744 | etxrab | 2005-12-09 10:14:42 -0600 (Fri, 09 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-fcp.c
+   M /trunk/epan/dissectors/Makefile.common
+   M /trunk/epan/dissectors/packet-gre.c
+   A /trunk/epan/dissectors/packet-nhrp.c
+   A /trunk/epan/dissectors/packet-nhrp.h
+   M /trunk/epan/greproto.h
 
-refactor the "dissector" for task management flags to dissect the bits properly
-and get rid of the silly  strcpy() stuff.
+From: Deepak Jain
 
+changes/addition to support decode for Next Hop Resolution Protocol
+------------------------------------------------------------------------
+r16743 | jmayer | 2005-12-09 09:56:07 -0600 (Fri, 09 Dec 2005) | 1 line
+Changed paths:
+   M /trunk/epan/make-sminmpec.pl
 
-there is a HUGE number of these kinds of very ugly bitmap dissection in all the fibre channel related dissectors and all need to be converted to proer dissection.
+propset svn:executable *
+------------------------------------------------------------------------
+r16742 | jmayer | 2005-12-09 09:53:40 -0600 (Fri, 09 Dec 2005) | 3 lines
+Changed paths:
+   M /trunk/FAQ
+   M /trunk/help/faq.txt
+   M /trunk/manuf
 
 
+Regenerate manuf and FAQ
 
 ------------------------------------------------------------------------
-r15993 | sahlberg | 2005-09-24 16:22:24 -0500 (Sat, 24 Sep 2005) | 3 lines
+r16741 | jmayer | 2005-12-09 09:49:57 -0600 (Fri, 09 Dec 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ospf.c
+   M /trunk/wka.tmpl
 
-remove an array from the stack,   remove some strcpy() and strcat() calls
+Add Cisco-ISL MAC-addresses
 
+Remove IETF-VRRP: This is a generic multicast address, and there are 31
+other IP-multicast addresses mapping to the same mac address.
 
 ------------------------------------------------------------------------
-r15992 | sahlberg | 2005-09-24 16:14:47 -0500 (Sat, 24 Sep 2005) | 3 lines
+r16740 | jmayer | 2005-12-09 09:47:50 -0600 (Fri, 09 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-quakeworld.c
-
-get rid of one array from the stack and convert all strcpy() to pointers to literal strings.
+   M /trunk/manuf.tmpl
 
+Whitespace change
+------------------------------------------------------------------------
+r16739 | jmayer | 2005-12-09 09:46:09 -0600 (Fri, 09 Dec 2005) | 1 line
+Changed paths:
+   M /trunk/epan/make-sminmpec.pl
 
+Add comment how to regenerate the file
 ------------------------------------------------------------------------
-r15991 | guy | 2005-09-24 14:09:40 -0500 (Sat, 24 Sep 2005) | 2 lines
+r16738 | guy | 2005-12-08 21:24:52 -0600 (Thu, 08 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-isakmp.c
+   M /trunk/epan/dissectors/packet-MAP_DialoguePDU.c
+   M /trunk/epan/dissectors/packet-MAP_DialoguePDU.h
 
-Squelch some compiler warnings.
+Re-generate one more BER dissector.
 
 ------------------------------------------------------------------------
-r15990 | lego | 2005-09-24 14:03:35 -0500 (Sat, 24 Sep 2005) | 4 lines
+r16737 | guy | 2005-12-08 20:59:36 -0600 (Thu, 08 Dec 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-xml.c
-   M /trunk/epan/dtd_grammar.lemon
-   M /trunk/epan/dtd_parse.l
-
-get rid of most dtd leaks.
-There's just one left I'm aware of (the doctype name).
+   M /trunk/doc/tethereal.pod
 
+Repeatedly indicate that "-w" is for writing binary packet data, and
+that if you want to send text to a file, just redirect the standard
+output.  I've seen at least one message on the Ethereal lists from
+somebody who didn't realize that, and I think I've seen more.
 
 ------------------------------------------------------------------------
-r15989 | lego | 2005-09-24 11:37:48 -0500 (Sat, 24 Sep 2005) | 2 lines
+r16736 | guy | 2005-12-08 17:29:21 -0600 (Thu, 08 Dec 2005) | 2 lines
 Changed paths:
-   D /trunk/plugins/xml
+   M /trunk/asn1/pkixcmp/cmp-exp.cnf
+   M /trunk/asn1/x509ce/x509ce-exp.cnf
+   M /trunk/asn1/x509if/x509if-exp.cnf
+   M /trunk/epan/dissectors/packet-acse.c
+   M /trunk/epan/dissectors/packet-acse.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-crmf.c
+   M /trunk/epan/dissectors/packet-crmf.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-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-h450.c
+   M /trunk/epan/dissectors/packet-h450.h
+   M /trunk/epan/dissectors/packet-inap.c
+   M /trunk/epan/dissectors/packet-inap.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-nbap.c
+   M /trunk/epan/dissectors/packet-nbap.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-ranap.c
+   M /trunk/epan/dissectors/packet-ranap.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-x509if.c
+   M /trunk/epan/dissectors/packet-x509if.h
+   M /trunk/epan/dissectors/packet-x509sat.c
+   M /trunk/epan/dissectors/packet-x509sat.h
 
-delete the xml plugin
+Regenerate with the latest asn2eth, to get FT_OID used, and to add #line.
 
 ------------------------------------------------------------------------
-r15988 | jmayer | 2005-09-24 10:52:42 -0500 (Sat, 24 Sep 2005) | 1 line
+r16735 | guy | 2005-12-08 17:21:26 -0600 (Thu, 08 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-isakmp.c
+   M /trunk/epan/dissectors/packet-ber.c
+
+"get_oid_name()" can return a null pointer; don't try to add the name if
+it does.
 
-That code was never even compiled for testing
 ------------------------------------------------------------------------
-r15987 | jmayer | 2005-09-24 10:42:37 -0500 (Sat, 24 Sep 2005) | 10 lines
+r16734 | guy | 2005-12-08 05:27:14 -0600 (Thu, 08 Dec 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-isakmp.c
-
-Shoichi Sakane:
-Hi, I fixed some bugs to decoding IKEv2 payloads.  the following things
-have been checked at the IPsec bake off in Toronto this week.
+   M /trunk/epan/dissectors/packet-ber.c
 
-        - fixed decoding IP address in TS payload
-        - fixed decoding IPv6 address in ID payload
-        - fixed decoding IKEv2 Delete payload
-        - SPI printing
+Clean up indentation.
 
+For OID fields of type FT_STRING, put back the code to append the OID
+name.  (Ultimately, we should probably convert them all to type FT_OID.)
 
 ------------------------------------------------------------------------
-r15986 | lego | 2005-09-24 10:07:38 -0500 (Sat, 24 Sep 2005) | 4 lines
+r16733 | guy | 2005-12-08 04:56:51 -0600 (Thu, 08 Dec 2005) | 8 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-radius.c
-   M /trunk/epan/radius_dict.l
+   M /trunk/epan/dissectors/packet-cigi.c
+
+When checking whether a packet is for a protocol or not, make sure the
+bytes you'll be checking are available in the tvbuff first.
 
-- There can be '/' in attribute names as well
-- 140Kb of leaks less.
+Don't require *all* of the packet data to be available, however.
 
+Heuristic dissectors should return TRUE or FALSE.  Non-heuristic
+"new-style" dissectors should return the amount of data dissected or 0. 
 
 ------------------------------------------------------------------------
-r15985 | sahlberg | 2005-09-23 16:33:02 -0500 (Fri, 23 Sep 2005) | 5 lines
+r16732 | guy | 2005-12-08 03:56:19 -0600 (Thu, 08 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-irc.c
-
-From MartinM
-
-IRC update and fix for bug 218
+   M /trunk/epan/dissectors/packet-x509ce.c
+   M /trunk/epan/dissectors/packet-x509ce.h
 
+Regenerate, so that it handles OIDs as FT_OID.
 
 ------------------------------------------------------------------------
-r15984 | jmayer | 2005-09-23 16:27:03 -0500 (Fri, 23 Sep 2005) | 1 line
+r16731 | guy | 2005-12-08 03:05:23 -0600 (Thu, 08 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/tools/Makefile.am
+   M /trunk/asn1/dop/packet-dop-template.c
+   M /trunk/epan/dissectors/packet-dop.c
+   M /trunk/epan/dissectors/packet-dop.h
+
+Squelch a const vs. non-const pointer warning.
 
-Add MANIFEST
 ------------------------------------------------------------------------
-r15983 | sahlberg | 2005-09-23 16:26:09 -0500 (Fri, 23 Sep 2005) | 5 lines
+r16730 | guy | 2005-12-08 02:55:15 -0600 (Thu, 08 Dec 2005) | 9 lines
 Changed paths:
-   M /trunk/AUTHORS
-   M /trunk/epan/dissectors/packet-dcerpc-netlogon.c
+   M /trunk/epan/dissectors/packet-cigi.c
+
+From Kyle J. Harms:
 
-From Kaul
+       Fix a few problems.
 
-One of the "unknown" fields are actually a digest.
+       CIGI 1 and 2 are only big-endian; CIGI 3 can be little-endian or
+       big-endian.
 
+       Remove the port preferences.
 
 ------------------------------------------------------------------------
-r15982 | sahlberg | 2005-09-23 15:51:09 -0500 (Fri, 23 Sep 2005) | 6 lines
+r16729 | sahlberg | 2005-12-08 01:54:13 -0600 (Thu, 08 Dec 2005) | 6 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-radius.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Dont decrement the length by 2 if it is already less than two
-since then the length will wrap and become +4G or so.
+add decoding of the share type   that metze found in the tree connect response
 
-This fixes bug 479
 
+prettify tid and uid 
 
-------------------------------------------------------------------------
-r15981 | ulfl | 2005-09-23 13:50:07 -0500 (Fri, 23 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/gtk/file_dlg.c
 
-disable gzip output compression for now, as it won't work in some cases (see source commment for details)
 ------------------------------------------------------------------------
-r15980 | ulfl | 2005-09-23 13:27:30 -0500 (Fri, 23 Sep 2005) | 3 lines
+r16728 | etxrab | 2005-12-08 01:29:15 -0600 (Thu, 08 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/tvbuff.c
+   A /trunk/epan/dissectors/packet-dop.c
+   A /trunk/epan/dissectors/packet-dop.h
 
-as tvb functions are frequently used by a lot of dissectors, use DISSECTOR_ASSERT() like instead of g_assert throughout tvbuff, so a malicious dissector won't crash Ethereal (at least at the ways we can detect it)
-
-of course this won't catch e.g. NULL pointers, but far better than nothing ...
+Also add the new dissectors
 ------------------------------------------------------------------------
-r15979 | ulfl | 2005-09-23 13:05:36 -0500 (Fri, 23 Sep 2005) | 1 line
+r16727 | etxrab | 2005-12-08 00:43:01 -0600 (Thu, 08 Dec 2005) | 9 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-frame.c
+   M /trunk/epan/dissectors/Makefile.common
+   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-dsp.c
+   M /trunk/epan/dissectors/packet-dsp.h
+   D /trunk/epan/dissectors/packet-x501.c
+   D /trunk/epan/dissectors/packet-x501.h
+
+Commit the actual diissectors:
+Log:
+ From Grame Lunt:
+  updated X.500 dissectors to include DOP support.
+ The "dop" dissector is the renamed "x501" dissector consequently the asn/x501 directory should be removed. The patch includes the changes to epan/dissectors/Makefile.common to reflect this.
+ As the DOP dissection is not fully tested, I have disabled it by default for now (like DSP) but it can be enabled by the user.
 
-show the same [Packet size limited during capture] message in the column info, instead of the former (unintuitive) [Short Frame]
 ------------------------------------------------------------------------
-r15978 | ulfl | 2005-09-23 12:53:37 -0500 (Fri, 23 Sep 2005) | 1 line
+r16726 | etxrab | 2005-12-07 17:20:11 -0600 (Wed, 07 Dec 2005) | 8 lines
 Changed paths:
-   M /trunk/docbook/developer-guide.xml
+   M /trunk/asn1/Makefile.nmake
+   A /trunk/asn1/dap/Makefile.nmake
+   M /trunk/asn1/dap/packet-dap-template.c
+   A /trunk/asn1/disp/Makefile.nmake
+   M /trunk/asn1/disp/disp.asn
+   M /trunk/asn1/disp/disp.cnf
+   M /trunk/asn1/disp/packet-disp-template.c
+   A /trunk/asn1/dop
+   A /trunk/asn1/dop/Makefile
+   A /trunk/asn1/dop/Makefile.nmake
+   A /trunk/asn1/dop/dop-exp.cnf
+   A /trunk/asn1/dop/dop.asn
+   A /trunk/asn1/dop/dop.cnf
+   A /trunk/asn1/dop/packet-dop-template.c
+   A /trunk/asn1/dop/packet-dop-template.h
+   A /trunk/asn1/dsp/Makefile.nmake
+   M /trunk/asn1/dsp/dsp-exp.cnf
+   M /trunk/asn1/dsp/dsp.asn
+   M /trunk/asn1/dsp/dsp.cnf
+   M /trunk/asn1/dsp/packet-dsp-template.c
+   D /trunk/asn1/x501/Makefile
+   D /trunk/asn1/x501/packet-x501-template.c
+   D /trunk/asn1/x501/packet-x501-template.h
+   D /trunk/asn1/x501/x501-exp.cnf
+   D /trunk/asn1/x501/x501.asn
+   D /trunk/asn1/x501/x501.cnf
+
+From Grame Lunt:
+ updated X.500 dissectors to include DOP support.
+
+The "dop" dissector is the renamed "x501" dissector consequently the asn/x501 directory should be removed. The patch includes the changes to epan/dissectors/Makefile.common to reflect this.
+
+As the DOP dissection is not fully tested, I have disabled it by default for now (like DSP) but it can be enabled by the user.
+
 
-The Ethereal version is 0.10.12 for some time now ...
 ------------------------------------------------------------------------
-r15977 | ulfl | 2005-09-23 12:26:59 -0500 (Fri, 23 Sep 2005) | 3 lines
+r16725 | lego | 2005-12-07 15:08:51 -0600 (Wed, 07 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/docbook/edg_src/EDG_chapter_tools.xml
+   M /trunk/asn1/h248/packet-h248-template.c
+   M /trunk/epan/dissectors/packet-h248.c
+
+Avoid dereferencing pointers to the message, context and transaction object if they have not been created.
 
-from Jaap Keuter: fixed the package names for yacc and lexx (being bison and flex)
 
-and from myself: add a section about GNU unzip and add it to the optional tools
 ------------------------------------------------------------------------
-r15976 | ulfl | 2005-09-23 12:01:19 -0500 (Fri, 23 Sep 2005) | 1 line
+r16724 | etxrab | 2005-12-07 14:07:14 -0600 (Wed, 07 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-pn-rt.c
+   M /trunk/epan/dissectors/packet-tipc.c
+   M /trunk/epan/libethereal.def
+
+libethereal: add capture_enc
 
-when I've done the last change here, I wasn't expecting to get an fcs_len value of -1, fixed now
+tipc: First stab at reassembly, as tipc reasembly is based on reading the message length from the first segmented packet and then just add the bytes received I didn't find a better way of doing it. 
 ------------------------------------------------------------------------
-r15975 | sahlberg | 2005-09-23 05:39:58 -0500 (Fri, 23 Sep 2005) | 3 lines
+r16723 | sahlberg | 2005-12-07 07:14:09 -0600 (Wed, 07 Dec 2005) | 7 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-lldp.c
+   M /trunk/epan/dissectors/packet-smb2.c
+   M /trunk/epan/dissectors/packet-smb2.h
 
-remove some compiler warnings
+tap the ntlmssp protocol and extract the account/domain names when users authenticate.
 
+If known   put the account name, domain name, host name and which frame the suer authenticated in in an expansion below UID in the SMB2 header
 
-------------------------------------------------------------------------
-r15974 | sahlberg | 2005-09-23 05:31:39 -0500 (Fri, 23 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc.c
 
-remove some compiler warnings
 
 
 ------------------------------------------------------------------------
-r15973 | etxrab | 2005-09-23 00:38:10 -0500 (Fri, 23 Sep 2005) | 1 line
+r16722 | sahlberg | 2005-12-07 07:12:39 -0600 (Wed, 07 Dec 2005) | 11 lines
 Changed paths:
-   M /trunk/radius/dictionary.3gpp
+   M /trunk/epan/tap.c
+   M /trunk/epan/tap.h
 
-Add som 3GPP AVP:s
-------------------------------------------------------------------------
-r15972 | ulfl | 2005-09-22 18:18:34 -0500 (Thu, 22 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/Makefile.nmake
-   M /trunk/config.nmake
-   M /trunk/tools/win32-setup.sh
+new function fetch_tapped_data()
 
-replace WinPcap devel pack 3.0 with current 3.1 version
-------------------------------------------------------------------------
-r15971 | gerald | 2005-09-22 17:00:06 -0500 (Thu, 22 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/tools/Makefile.am
+This function can be called from a dissector to fetch (if any) tapped data from a tap.
+This can offer an alternative method of passing data between different dissectors much cleaner than the pinfo pollition and private_data design mistake.
 
-Remove pidl.1.xml from the distribution.
 
-------------------------------------------------------------------------
-r15970 | ulfl | 2005-09-22 16:24:28 -0500 (Thu, 22 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-pn-rt.c
+The SMB2 dissector uses this method to extract vital data such as Account_Name from the ntlmssp dissector (that is 3 leveld down from smb2)
 
-fix offset calculation of DataStatus fields if Ethernet FCS (or a similar trailer) is present
-------------------------------------------------------------------------
-r15969 | ulfl | 2005-09-22 16:21:29 -0500 (Thu, 22 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-media.c
 
-bugfix: don't crash, if pinfo->match_string == NULL
-------------------------------------------------------------------------
-r15968 | ulfl | 2005-09-22 16:19:23 -0500 (Thu, 22 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-wbxml.c
 
-bugfix: don't crash, if tag_save_literal == NULL
-------------------------------------------------------------------------
-r15967 | ulfl | 2005-09-22 16:18:19 -0500 (Thu, 22 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-xml.c
 
-bugfix: don't crash, if current_frame->ns == NULL
 ------------------------------------------------------------------------
-r15966 | ulfl | 2005-09-22 16:16:54 -0500 (Thu, 22 Sep 2005) | 5 lines
+r16721 | sahlberg | 2005-12-07 07:09:42 -0600 (Wed, 07 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ses.c
+   M /trunk/epan/dissectors/packet-ntlmssp.c
+   M /trunk/epan/dissectors/packet-ntlmssp.h
+
+make ntlmssp tappable
+
 
-enhance heuristics:
-some Siemens SIMATIC protocols also use COTP, and shouldn't be 
-misinterpreted as SES.
-the starter in this case is fixed to 0x32 (SES_MINOR_SYNC_ACK for SES), 
-so if the following parameter type is unknown, it's probably SIMATIC and not SES
 ------------------------------------------------------------------------
-r15965 | ulfl | 2005-09-22 16:14:39 -0500 (Thu, 22 Sep 2005) | 1 line
+r16720 | guy | 2005-12-07 04:44:55 -0600 (Wed, 07 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/gtk/packet_list.c
+   M /trunk/epan/dissectors/packet-cigi.c
+
+Fix some more scaled-fixed-point values, and have a 2-byte spare field
+followed by a 2-byte event count.  Fixes bug 609.
 
-do freeze/thaw in packet_list_set_selected_row only, if the list must be moved. This avoids some screen flickering.
 ------------------------------------------------------------------------
-r15964 | ulfl | 2005-09-22 16:12:51 -0500 (Thu, 22 Sep 2005) | 1 line
+r16719 | guy | 2005-12-07 03:51:31 -0600 (Wed, 07 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcom-cba-acco.c
+   M /trunk/epan/dissectors/packet-pvfs2.c
+
+Fix oroperties, get rid of CRs.
 
-change ConnectCR flag item sequence, so the "most significant" bit will come first (as done in the other req/responses)
 ------------------------------------------------------------------------
-r15963 | ulfl | 2005-09-22 16:09:02 -0500 (Thu, 22 Sep 2005) | 1 line
+r16718 | guy | 2005-12-07 03:48:08 -0600 (Wed, 07 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc-lsa.c
+   M /trunk/epan/dissectors/packet-cigi.c
+
+Squelch a narrowing-conversion warning.
 
-bugfix: don't simply use length field value from packet data, ensure the bytes really exist
 ------------------------------------------------------------------------
-r15962 | ulfl | 2005-09-22 16:07:25 -0500 (Thu, 22 Sep 2005) | 1 line
+r16717 | guy | 2005-12-07 03:38:57 -0600 (Wed, 07 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc.c
+   M /trunk/util.c
+
+Clear up const vs. non-const warnings.
 
-add two more bind reject reasons from the specs
 ------------------------------------------------------------------------
-r15961 | guy | 2005-09-22 13:39:25 -0500 (Thu, 22 Sep 2005) | 9 lines
+r16716 | guy | 2005-12-06 21:03:37 -0600 (Tue, 06 Dec 2005) | 9 lines
 Changed paths:
-   M /trunk/epan/dtd_parse.l
-   M /trunk/epan/dtd_preparse.l
-   M /trunk/plugins/mate/mate_parser.l
+   M /trunk/epan/dissectors/packet-rtcp.c
+
+Why duplicate the code of "tvb_get_string()" when you could just use
+"tvb_get_string()"?
 
-Make the private variables for various lexical analyzers static, so
-that we don't have all the lexical analyzers in libethereal share them
-(note that they're already static in radius_dict.l, so they weren't
-sharing with any other lexical analyzer), and so that OS X 10.3.9's
-run-time linker doesn't get upset at finding them defined in libethereal
-and the MATE plugin.
+Why even bother with "tvb_get_string()" when you can just use
+"proto_tree_add_item()" with a string item?
 
-Fix up indentation.
+Make sure that the prefix in a PRIV item isn't bigger than the item
+itself.  That fixes bug 603.
 
 ------------------------------------------------------------------------
-r15960 | lego | 2005-09-22 12:01:06 -0500 (Thu, 22 Sep 2005) | 4 lines
+r16715 | guy | 2005-12-06 19:45:44 -0600 (Tue, 06 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/stats_tree.c
-   M /trunk/epan/stats_tree_priv.h
-   M /trunk/gtk/stats_tree_stat.c
-
-Instead of checking if this is a new packet at every call to avoid recounting the packets at every rerun remove the tap listener of this stats tree.
+   M /trunk/epan/dissectors/packet-cigi.c
 
-fixes bug 474
+Don't export stuff if no other dissector uses it.  "Static unless
+otherwise required."
 
 ------------------------------------------------------------------------
-r15959 | lego | 2005-09-22 11:41:53 -0500 (Thu, 22 Sep 2005) | 3 lines
+r16714 | guy | 2005-12-06 19:31:43 -0600 (Tue, 06 Dec 2005) | 11 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-xml.c
+   M /trunk/epan/dissectors/packet-cigi.c
 
-in register_dtd() do not  leak the elements hash
+Fix indentation.
 
+Gate X and Y Offset are 16-bit integral numbers of degrees, not 32-bit
+IEEE floating-point numbers, and the numbers in collision detection
+segment definitions and collision detection volume definitions are
+16-bit fixed-point numbers, not 32-bit IEEE floating-point numbers;
+handle them as such - this fixes bug 605.
 
-------------------------------------------------------------------------
-r15958 | kukosa | 2005-09-22 09:40:26 -0500 (Thu, 22 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/asn1/h225/h225.cnf
-   M /trunk/asn1/h225/packet-h225-template.c
-   M /trunk/epan/dissectors/packet-h225.c
+When displaying the packet length in the Info column, display the *real*
+length, not the sliced length.
 
-Call H245 decoding and tunelled protocols decoding at the end of H225 dissector. I makes less confusion in info column.
 ------------------------------------------------------------------------
-r15957 | jmayer | 2005-09-22 05:07:26 -0500 (Thu, 22 Sep 2005) | 1 line
+r16713 | guy | 2005-12-06 18:43:17 -0600 (Tue, 06 Dec 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-hsrp.c
+   M /trunk/epan/dissectors/packet-cigi.c
 
-Add the cisco url as well
-------------------------------------------------------------------------
-r15956 | jmayer | 2005-09-22 05:00:40 -0500 (Thu, 22 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-hsrp.c
+Unicode considered unnecessary and non-portable.  Avoid using non-ASCII
+characters in field names.
 
-Add a comment on packets with opcode 3
+Fix indentation, and fix a typo.
 
 ------------------------------------------------------------------------
-r15955 | jmayer | 2005-09-22 04:13:33 -0500 (Thu, 22 Sep 2005) | 1 line
+r16712 | sahlberg | 2005-12-06 18:35:16 -0600 (Tue, 06 Dec 2005) | 5 lines
 Changed paths:
-   A /trunk/tools/pidl/MANIFEST
-   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/NDR.pm
-   M /trunk/tools/pidl/lib/Parse/Pidl/ODL.pm
-   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/COM/Header.pm
-   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/COM/Proxy.pm
-   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/COM/Stub.pm
-   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/EJS.pm
-   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/EJSHeader.pm
-   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/Header.pm
-   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/NDR/Client.pm
-   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm
-   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/NDR/Parser.pm
-   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/NDR/Server.pm
-   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/SWIG.pm
-   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/TDR.pm
-   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/Template.pm
-   M /trunk/tools/pidl/lib/Parse/Pidl/Test.pm
-   M /trunk/tools/pidl/lib/Parse/Pidl/Typelist.pm
-   M /trunk/tools/pidl/lib/Parse/Pidl/Util.pm
+   M /trunk/epan/dissectors/packet-ppp.c
+   M /trunk/epan/dissectors/packet-pppoe.c
+   M /trunk/epan/dissectors/packet-rtcp.c
+
+From Martin M   various updates and fixes
+
+Hi, Some tiddly changes: pppoe- don't create an empty discovery tags tree when the payload length is 0 chap- make chap.value work as a filterable field rtcp- append the packet type to the protocol tree name 
+
 
-Update from samba + new file MANIFEST
 ------------------------------------------------------------------------
-r15954 | ulfl | 2005-09-21 21:18:19 -0500 (Wed, 21 Sep 2005) | 1 line
+r16711 | sahlberg | 2005-12-06 18:27:17 -0600 (Tue, 06 Dec 2005) | 10 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-netsync.c
+   M /trunk/epan/dissectors/packet-aim.c
+
+From Jelmer V   AIM bugfix
+
+Hi,
+
+The attached patch fixes the name of the version field, which I
+previously mistook for an authorization cookie (which is in fact in a
+TLV that follows this field).
+
+
 
-replace match_strval with val_to_str, where the output was used by string output, but not expecting NULL
 ------------------------------------------------------------------------
-r15953 | guy | 2005-09-21 21:08:03 -0500 (Wed, 21 Sep 2005) | 2 lines
+r16710 | guy | 2005-12-06 16:59:30 -0600 (Tue, 06 Dec 2005) | 2 lines
 Changed paths:
+   M /trunk/asn1/cms/cms.cnf
+   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/epan/dissectors/packet-cms.c
+   M /trunk/epan/dissectors/packet-cms.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
 
-Squelch some compiler warnings.
+Squelch some compiler const vs. non-const warnings.
 
 ------------------------------------------------------------------------
-r15952 | guy | 2005-09-21 21:00:38 -0500 (Wed, 21 Sep 2005) | 4 lines
+r16709 | guy | 2005-12-06 16:56:37 -0600 (Tue, 06 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/capture_loop.c
-   M /trunk/tethereal.c
+   M /trunk/capture_info.c
+   M /trunk/epan/dissectors/Makefile.common
+   M /trunk/epan/dissectors/packet-enc.c
+   A /trunk/epan/dissectors/packet-enc.h
 
-Libpcap uses u_char; use it in our calls to libpcap routines and in our
-libpcap callback routine (if it's not getting defined, <pcap.h> doesn't
-work).
+Clean up capture_enc(), export it, and use it in the capture window.
 
 ------------------------------------------------------------------------
-r15951 | guy | 2005-09-21 20:53:54 -0500 (Wed, 21 Sep 2005) | 3 lines
+r16708 | guy | 2005-12-06 16:26:10 -0600 (Tue, 06 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/capture_loop.c
-   M /trunk/tethereal.c
+   M /trunk/epan/oid_resolv.c
 
-Update to current reality (WinPcap 3.1) the messages shown on Windows if
-a capture device open fails.
+The keys for entries in the OID-to-name hash table are g_mallocated, so
+we have to g_free them when destroying the hash table.
 
 ------------------------------------------------------------------------
-r15950 | ulfl | 2005-09-21 20:16:25 -0500 (Wed, 21 Sep 2005) | 1 line
+r16707 | guy | 2005-12-06 15:07:50 -0600 (Tue, 06 Dec 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-gsm_a.c
+   M /trunk/epan/oid_resolv.c
+   M /trunk/epan/oid_resolv.h
+
+Set svn:keywords to Id to get RCS IDs expanded.
+
+Set svn:eol-style to native to handle line endings appropriately, and
+trim off CRs.
 
-prevent output of NULL strings
 ------------------------------------------------------------------------
-r15949 | ulfl | 2005-09-21 20:09:01 -0500 (Wed, 21 Sep 2005) | 1 line
+r16706 | sahlberg | 2005-12-06 14:29:46 -0600 (Tue, 06 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-giop.c
+   M /trunk/epan/oid_resolv.c
+
+g_hash_table_new_full() does not exist for glib1
+
 
-replace match_strval with val_to_str in several places, where the output was used by string output, but not expecting NULL
 ------------------------------------------------------------------------
-r15948 | guy | 2005-09-21 19:51:11 -0500 (Wed, 21 Sep 2005) | 4 lines
+r16705 | lego | 2005-12-06 13:47:22 -0600 (Tue, 06 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/asn1/camel/camel.cnf
-   M /trunk/asn1/gsm_ss/gsm_ss.cnf
    M /trunk/asn1/h248/h248.cnf
    M /trunk/asn1/h248/packet-h248-template.c
-   M /trunk/asn1/x411/x411.cnf
-   M /trunk/epan/dissectors/packet-camel.c
    M /trunk/epan/dissectors/packet-h248.c
-   M /trunk/epan/dissectors/packet-kerberos.c
-   M /trunk/epan/dissectors/packet-x411.c
 
-Fix a bunch of places where we were calling "dissect_ber_octet_string()"
-with a non-null pointer-to-pointer-to-tvbuff and not checking whether
-the returned tvbuff pointer was non-null.
+It crashed when keep_persistent_data == FALSE
+
 
 ------------------------------------------------------------------------
-r15947 | guy | 2005-09-21 18:30:26 -0500 (Wed, 21 Sep 2005) | 3 lines
+r16704 | ulfl | 2005-12-06 13:41:45 -0600 (Tue, 06 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/asn1/gsm_ss/gsm_ss.cnf
+   M /trunk/capture.c
 
-Set svn:eol-style properly, and get rid of a bogus proprty.  Fix the
-line endings.
+we can even get error messages while we are capturing (e.g. when a network cable is unplugged)
 
+problem found by Joerg Mayer
 ------------------------------------------------------------------------
-r15946 | guy | 2005-09-21 18:23:58 -0500 (Wed, 21 Sep 2005) | 5 lines
+r16703 | lego | 2005-12-06 12:52:17 -0600 (Tue, 06 Dec 2005) | 6 lines
 Changed paths:
-   M /trunk/asn1/spnego/spnego.cnf
-   M /trunk/epan/dissectors/packet-spnego.c
+   M /trunk/asn1/h248/h248.cnf
+   M /trunk/asn1/h248/packet-h248-template.c
+   M /trunk/asn1/h248/packet-h248-template.h
+   M /trunk/epan/dissectors/packet-h248.c
+   M /trunk/epan/dissectors/packet-h248.h
 
-dissect_ber_octet_string() can return a null tvbuff pointer, if the
-putative octet string isn't one; always check before using it to
-dissect, and don't call the dissector if the tvbuff is null.  This
-should fix bug 472.
+- Fix few issues with context analysis
+- Add used terminations tree to the context analysis tree
 
-------------------------------------------------------------------------
-r15945 | guy | 2005-09-21 18:07:07 -0500 (Wed, 21 Sep 2005) | 4 lines
-Changed paths:
-   M /trunk/asn1/gsmmap/packet-gsm_map-template.c
-   M /trunk/epan/dissectors/packet-gsm_map.c
-   M /trunk/epan/dissectors/packet-gsm_map.h
+Regenerate Dissector
 
-OIDs are put into the protocol tree as strings containing a textual
-representation of the OID, so the fields for them should be of type
-FT_STRING.  This should fix bug 470.
 
 ------------------------------------------------------------------------
-r15944 | jmayer | 2005-09-21 17:41:47 -0500 (Wed, 21 Sep 2005) | 5 lines
+r16702 | etxrab | 2005-12-06 11:54:40 -0600 (Tue, 06 Dec 2005) | 1 line
 Changed paths:
-   D /trunk/tools/pidl/pidl.1.xml
-
-
-pidl.1.xml doesn't exist any more in this form. It's now integrated
-into pidl itself. So remove the file again and also the reference to
-the file in tools/Makefile.am
+   M /trunk/epan/dissectors/packet-tipc.c
 
+Fill in Column info, Dissect some more user info.
 ------------------------------------------------------------------------
-r15943 | ulfl | 2005-09-21 15:33:12 -0500 (Wed, 21 Sep 2005) | 1 line
+r16701 | etxrab | 2005-12-06 11:53:28 -0600 (Tue, 06 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/gtk/main.c
+   M /trunk/asn1/camel/camel.asn
+   M /trunk/asn1/camel/camel.cnf
+   M /trunk/epan/dissectors/packet-camel.c
+   M /trunk/epan/dissectors/packet-camel.h
 
-fix 467: when using -k command line option, convert interface name display string ("user_description: devicename" from Preferences) into device name. Hopefully this won't break the UNIX version.
+Dissect Cause  and use %(DEFAULT_BODY)s use import for IMSI.
 ------------------------------------------------------------------------
-r15942 | ulfl | 2005-09-21 15:27:32 -0500 (Wed, 21 Sep 2005) | 1 line
+r16700 | kukosa | 2005-12-06 06:50:11 -0600 (Tue, 06 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/gtk/main.c
+   M /trunk/epan/ftypes/ftype-bytes.c
 
-fix #465: replace all fprintf(stderr, ...) with g_warning(...) calls
+mark unused parameter
 ------------------------------------------------------------------------
-r15941 | ulfl | 2005-09-21 15:11:55 -0500 (Wed, 21 Sep 2005) | 1 line
+r16699 | kukosa | 2005-12-06 05:45:55 -0600 (Tue, 06 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/tvbuff.h
-   M /trunk/epan/xmlstub.h
-   M /trunk/gtk/capture_if_details_dlg.h
-   M /trunk/gtk/cfilter_combo_utils.h
-   M /trunk/gtk/fileset_dlg.h
-   M /trunk/gtk/main.h
-   M /trunk/gtk/range_utils.h
+   M /trunk/epan/Makefile.common
+   M /trunk/epan/dissectors/packet-ber.c
+   M /trunk/epan/dissectors/packet-ber.h
+   M /trunk/epan/dissectors/packet-per.c
+   M /trunk/epan/epan.c
+   A /trunk/epan/oid_resolv.c
+   A /trunk/epan/oid_resolv.h
+   M /trunk/epan/proto.c
 
-fix/add doxygen comments
+OBJECT IDENTIFIER name resolution moved to oid_resolv.c
 ------------------------------------------------------------------------
-r15940 | ulfl | 2005-09-21 15:08:32 -0500 (Wed, 21 Sep 2005) | 1 line
+r16698 | kukosa | 2005-12-06 04:50:21 -0600 (Tue, 06 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/gtk/fileset_dlg.c
+   M /trunk/epan/dissectors/packet-q931.c
 
-fix a copy/paste error inside of a comment 
+protocol discriminator byte has to be taken into info_element_len
 ------------------------------------------------------------------------
-r15939 | sahlberg | 2005-09-21 15:05:13 -0500 (Wed, 21 Sep 2005) | 6 lines
+r16697 | ulfl | 2005-12-06 02:40:17 -0600 (Tue, 06 Dec 2005) | 7 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-3g-a11.c
-   M /trunk/epan/dissectors/packet-mip.c
-   M /trunk/epan/dissectors/packet-mpls-echo.c
-   M /trunk/epan/dissectors/packet-ntp.c
-   M /trunk/epan/dissectors/packet-ntp.h
-   M /trunk/epan/dissectors/packet-rtcp.c
+   M /trunk/Makefile.nmake
 
-get rid of strcpy in packet-ntp.c
+both the buildbot and I have problems with setargv.obj
 
-at the same time  change ntp_fmt_ts to return a pointer to ian ep-allocated buffer.
-remove the redundant buffer parameter in the signature and change all callers.
+trying to comment it out, so the build should work again.
 
+don't know what this file is all about :-( 
 
+I just don't have that file and it doesn't seem to be generated ... 
 ------------------------------------------------------------------------
-r15938 | guy | 2005-09-21 13:27:28 -0500 (Wed, 21 Sep 2005) | 4 lines
+r16696 | guy | 2005-12-06 00:09:28 -0600 (Tue, 06 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/asn1/spnego/packet-spnego-template.c
-   M /trunk/asn1/spnego/spnego.cnf
-   M /trunk/epan/dissectors/packet-spnego.c
+   M /trunk/epan/dissectors/packet-cigi.c
 
-Some compilers don't allow a static declaration of a function inside
-another function, so move the declaration of
-dissect_spnego_PrincipalSeq() to the top of the file.
+Note what we have to be careful of before we start using Unicode in the
+packet list or packet details.
 
 ------------------------------------------------------------------------
-r15937 | guy | 2005-09-21 12:42:11 -0500 (Wed, 21 Sep 2005) | 26 lines
+r16695 | guy | 2005-12-06 00:03:34 -0600 (Tue, 06 Dec 2005) | 8 lines
 Changed paths:
-   M /trunk/asn1/spnego/packet-spnego-template.c
-   M /trunk/asn1/spnego/spnego.asn
-   M /trunk/asn1/spnego/spnego.cnf
-   M /trunk/epan/dissectors/packet-spnego.c
-
-An InnerContextToken comes with an OID for the mechanism, which is what
-we use to determine how to interpret the token; don't bother fetching
-the OID attached to the frame or conversation, as we're not using it.
-
-Indent code in the .cnf file to match the code generated by asn2eth.
-
-The mechListMIC in a NegTokenInit is sometimes a sequence containing a
-string; check the header of the mechListMIC and dissect it as such a
-sequence or as a regular item depending on whether it's a sequence or
-not.
-
-If we see a supportedMech in a NegTokenTarg, save next_level_value for
-that OID with the conversation.
+   M /trunk/Makefile.nmake
 
-Dissect a responseToken in a NegTokenTarg, and a mechListMIC in a
-NegTokenTarg, appropriately.
+Make $(command_line_OBJECTS) a dependency of the stuff that links with
+it.
 
-Get rid of "gssapi_dissector_handle()", and just use
-next_level_value->handle - it was never being called if next_level_value
-was null.
+Link dumpcap with mkstemp.obj, as it needs mkstemp().
 
-When we're dissecting a KRB5 blob, just use get_ber_identifier() to get
-the header, so we don't report an ASN.1 error if there isn't a BER
-identifier there; dissect the identifier and length only if we know we
-have them.
+Make dumpcap depend only on its resource file, as we do with other
+programs, not on all of them.
 
 ------------------------------------------------------------------------
-r15936 | guy | 2005-09-21 12:33:04 -0500 (Wed, 21 Sep 2005) | 12 lines
+r16694 | sahlberg | 2005-12-05 19:05:48 -0600 (Mon, 05 Dec 2005) | 5 lines
 Changed paths:
-   D /trunk/epan/dissectors/packet-winsrepl.h
-
-Don't fill in a data structure for the packet while dissecting; we use
-almost none of the data - fill in only variables for what we need, and
-use proto_tree_add_item() in most cases.
+   M /trunk/epan/dissectors/packet-cigi.c
 
-Move what's left of the packet-winsrepl.h header into packet-winsrepl.c,
-and get rid of the header.
+from Kyle Harms
 
-Dissect the name flags field in detail, as per the Samba code.
+CIGI updates
 
-We don't do any checks for whether the packet is a valid WINS
-replication packet, so don't make the dissector a new-style dissector.
 
 ------------------------------------------------------------------------
-r15935 | guy | 2005-09-21 12:32:21 -0500 (Wed, 21 Sep 2005) | 12 lines
+r16693 | ulfl | 2005-12-05 19:04:55 -0600 (Mon, 05 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/Makefile.common
-   M /trunk/epan/dissectors/packet-winsrepl.c
-
-Don't fill in a data structure for the packet while dissecting; we use
-almost none of the data - fill in only variables for what we need, and
-use proto_tree_add_item() in most cases.
-
-Move what's left of the packet-winsrepl.h header into packet-winsrepl.c,
-and get rid of the header.
-
-Dissect the name flags field in detail, as per the Samba code.
-
-We don't do any checks for whether the packet is a valid WINS
-replication packet, so don't make the dissector a new-style dissector.
+   M /trunk/capture_errs.h
+   M /trunk/gtk/capture_dlg.c
 
+add a short comment to cant_load_winpcap_err() and use it in gtk/capture_dlg.c
 ------------------------------------------------------------------------
-r15934 | gerald | 2005-09-21 11:18:30 -0500 (Wed, 21 Sep 2005) | 3 lines
+r16692 | sahlberg | 2005-12-05 18:27:51 -0600 (Mon, 05 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcp.c
+   M /trunk/epan/dissectors/packet-smb2.c
+
+objectid updates
 
-Use a proper length for booleans.  If we have a malformed packet, throw an
-exception.  Fixes bug 468.
 
 ------------------------------------------------------------------------
-r15933 | gerald | 2005-09-21 11:06:59 -0500 (Wed, 21 Sep 2005) | 3 lines
+r16691 | ulfl | 2005-12-05 18:07:13 -0600 (Mon, 05 Dec 2005) | 5 lines
 Changed paths:
-   A /trunk/tools/pidl/pidl.1.xml
-   A /trunk/tools/pidl/tests
-   A /trunk/tools/pidl/tests/ndr_align.pl
-   A /trunk/tools/pidl/tests/ndr_alloc.pl
-   A /trunk/tools/pidl/tests/ndr_array.pl
-   A /trunk/tools/pidl/tests/ndr_refptr.pl
-   A /trunk/tools/pidl/tests/ndr_simple.pl
-   A /trunk/tools/pidl/tests/ndr_string.pl
+   M /trunk/Makefile.am
+   M /trunk/Makefile.common
+   A /trunk/capture-pcap-util-int.h (from /trunk/pcap-util-int.h:16690)
+   A /trunk/capture-pcap-util-unix.c (from /trunk/pcap-util-unix.c:16690)
+   A /trunk/capture-pcap-util.c (from /trunk/pcap-util.c:16690)
+   A /trunk/capture-pcap-util.h (from /trunk/pcap-util.h:16690)
+   M /trunk/capture-wpcap.c
+   M /trunk/capture.c
+   M /trunk/capture_loop.c
+   M /trunk/capture_ui_utils.c
+   M /trunk/doc/README.capture
+   M /trunk/dumpcap.c
+   M /trunk/gtk/capture_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/main.c
+   D /trunk/pcap-util-int.h
+   D /trunk/pcap-util-unix.c
+   D /trunk/pcap-util.c
+   D /trunk/pcap-util.h
+   M /trunk/tethereal.c
+   M /trunk/version_info.c
 
-Add the "test" directory and man page to pidl.  This should hopefully
-fix the current distcheck and RPM build failures.
+rename pcap-....c/.h files to capture-pcap-....c/.h
 
+this way, the capture prefix will "logically" group the files together and file browsers will also group them
+
+we may want to move the files into a subdir capture later
 ------------------------------------------------------------------------
-r15932 | gerald | 2005-09-21 10:54:09 -0500 (Wed, 21 Sep 2005) | 2 lines
+r16690 | ulfl | 2005-12-05 17:22:59 -0600 (Mon, 05 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/plugins/agentx/packet-agentx.c
-
-Move a comment to the right place.
+   M /trunk/ringbuffer.h
 
+requested by Cory Perry:
+increase the maximum number of ringbuffer files from 1024 to 10000.
 ------------------------------------------------------------------------
-r15931 | sahlberg | 2005-09-21 10:38:12 -0500 (Wed, 21 Sep 2005) | 3 lines
+r16689 | etxrab | 2005-12-05 17:00:03 -0600 (Mon, 05 Dec 2005) | 9 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-afs.c
+   A /trunk/asn1/Makefile.nmake
+   M /trunk/asn1/cms/cms-exp.cnf
+   M /trunk/asn1/cms/cms.cnf
+   M /trunk/asn1/x411/x411-exp.cnf
+   M /trunk/asn1/x411/x411.asn
+   M /trunk/asn1/x411/x411.cnf
+   M /trunk/asn1/x420/Makefile.nmake
+   M /trunk/asn1/x420/packet-x420-template.c
+   M /trunk/asn1/x420/x420.asn
+   M /trunk/asn1/x420/x420.cnf
+   M /trunk/epan/dissectors/packet-cms.c
+   M /trunk/epan/dissectors/packet-cms.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
 
-remove some strcpy() with g_snprintf()
+From Grame Lunt:
+a patch for the X.411, X420 and CMS dissectors to implement the remaining heading extensions and bodyparts.
 
+This includes GeneralText BP, forwarded content BP (forwarded p22 and forwarded p772), PKCS#7 BP, and "business class" messaging extensions.
 
-------------------------------------------------------------------------
-r15930 | gerald | 2005-09-21 10:26:12 -0500 (Wed, 21 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/docbook/release-notes.xml
+The X.411 extensions using the SIGNATURE macro have also been implemented. There is also a fix for a bug in the dissection of integer 22 content type.
 
-Add an item about the X11 dissector.
+Graeme
 
 ------------------------------------------------------------------------
-r15929 | gerald | 2005-09-21 10:03:19 -0500 (Wed, 21 Sep 2005) | 4 lines
+r16688 | ulfl | 2005-12-05 16:49:10 -0600 (Mon, 05 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-xml.c
-
-If pinfo->match_string is null (e.g. when we're called from the Jabber
-dissector), don't try to look it up in a hash table.  Fixes the current
-Buildbot failure.
+   M /trunk/tethereal.c
 
+fixed a typo
 ------------------------------------------------------------------------
-r15928 | gerald | 2005-09-21 09:20:43 -0500 (Wed, 21 Sep 2005) | 3 lines
+r16687 | ulfl | 2005-12-05 16:45:54 -0600 (Mon, 05 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/docbook/release-notes.xml
-   M /trunk/gtk/graph_analysis.c
-
-Free our flow graph strings when we're done with them.  Add a note about
-flow graphs to the release notes, along with other stuff.
+   M /trunk/gtk/file_dlg.h
+   M /trunk/gtk/main.c
+   M /trunk/gtk/packet_win.h
+   M /trunk/gtk/proto_draw.h
+   M /trunk/ui_util.h
 
+move some GTK only function declarations from ui_util.h to the appropriate header files in the gtk dir, as these declarations are obsolete and only confuses (at least me)
 ------------------------------------------------------------------------
-r15927 | ulfl | 2005-09-21 05:29:22 -0500 (Wed, 21 Sep 2005) | 1 line
+r16686 | ulfl | 2005-12-05 16:28:42 -0600 (Mon, 05 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-x11.c
+   M /trunk/util.h
 
-fix #372: the bug raised a "division by zero" exception. I've add a check for this and simply replaced the expression with 0 in that case. Don't know if it's correct to do so, but fixes the exception at least :-)
+enhance the comments
 ------------------------------------------------------------------------
-r15926 | ulfl | 2005-09-21 05:22:14 -0500 (Wed, 21 Sep 2005) | 1 line
+r16685 | ulfl | 2005-12-05 15:32:12 -0600 (Mon, 05 Dec 2005) | 6 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-sip.c
+   M /trunk/tethereal.c
+
+replace all appearances of 'fprintf(stderr, "tethereal: ' with 'cmdarg_err("', this is:
+a) smaller
+b) makes it possible to use some functions for Ethereal too
+c) is the wrong name now, as some outputs are not command line related :-(
 
-bugfix: break out of an endless loop, if dissect_sip_common() returns 0 or -2, found in a file send to me by david martin in an attempt to fix #372
+use capture_opts_trim()
 ------------------------------------------------------------------------
-r15925 | jmayer | 2005-09-21 04:50:09 -0500 (Wed, 21 Sep 2005) | 1 line
+r16684 | ulfl | 2005-12-05 15:28:34 -0600 (Mon, 05 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/pidl/README
+   M /trunk/Makefile.common
+   M /trunk/Makefile.nmake
+   M /trunk/dumpcap.c
 
-manpages are now done automagically
+no more usage of Ethereal.lib in dumpcap any longer :-)
+use capture_opts_trim()
+output of command line usage and version "enhanced"
 ------------------------------------------------------------------------
-r15924 | jmayer | 2005-09-21 04:40:45 -0500 (Wed, 21 Sep 2005) | 1 line
+r16683 | ulfl | 2005-12-05 15:26:01 -0600 (Mon, 05 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/tools/pidl/Makefile.PL
-   M /trunk/tools/pidl/README
-   M /trunk/tools/pidl/pidl
-   D /trunk/tools/pidl/pidl.1.xml
+   M /trunk/capture_opts.c
+   M /trunk/capture_opts.h
+   M /trunk/gtk/main.c
 
-Sync with samba: Update to fix manpage handling
+add capture_opts_trim(), as this sequence is used three times now (will replace the other appearances later) ...
 ------------------------------------------------------------------------
-r15923 | gerald | 2005-09-20 22:28:22 -0500 (Tue, 20 Sep 2005) | 3 lines
+r16682 | sahlberg | 2005-12-05 15:22:06 -0600 (Mon, 05 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/gtk/graph_analysis.c
+   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/epan/dissectors/packet-smb2.c
+   M /trunk/epan/dissectors/packet-smb2.h
+
+updates for FILE_OBJECTID_BUFFER   and have smb call this (no more unknown bytes in smb for objectid)
 
-In an attempt to fix bug 396, switch over to GStrings.  There still appears
-to be a problem with formatting, but we don't crash any more.
 
 ------------------------------------------------------------------------
-r15922 | guy | 2005-09-20 21:12:24 -0500 (Tue, 20 Sep 2005) | 4 lines
+r16681 | sahlberg | 2005-12-05 14:54:42 -0600 (Mon, 05 Dec 2005) | 17 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ip.c
+   M /trunk/AUTHORS
+   M /trunk/epan/dissectors/Makefile.common
+   A /trunk/epan/dissectors/packet-cigi.c
 
-Use BASE_DEC_HEX for the identifier field; that means we don't have to
-use "proto_tree_add_uint_format()", we can just let the Ethereal core
-format it.
+From Kyle J Harms
+
+New protocol : CIGI  (with minor updates to make it heuristic)
+
+Hi,
+
+This patch is for a CIGI dissector (complete versions 2 and 3). Â It has
+been [fuzz] tested on GNU/Linux using the Ethereal 0.10.13 codebase.
+However, the patch here is against the svn repository.
+
+More information about CIGI can be found at http://cigi.sourceforge.net/
+
+Kyle Harms
 
-------------------------------------------------------------------------
-r15921 | guy | 2005-09-20 20:47:46 -0500 (Tue, 20 Sep 2005) | 5 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
 
-Squelch some compiler wranings, and fix up the creation of a subset
-tvbuff.
 
-Fix indentation.
 
 ------------------------------------------------------------------------
-r15920 | guy | 2005-09-20 20:39:39 -0500 (Tue, 20 Sep 2005) | 2 lines
+r16680 | etxrab | 2005-12-05 11:24:19 -0600 (Mon, 05 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-user_encap.c
+   M /trunk/epan/dissectors/packet-ber.c
+   M /trunk/epan/dissectors/packet-per.c
 
-Squelch a compiler warning.
+If we don't have the OID name let the SNMP dissector try to get it from the MIB:s
+------------------------------------------------------------------------
+r16679 | ulfl | 2005-12-04 20:30:04 -0600 (Sun, 04 Dec 2005) | 1 line
+Changed paths:
+   M /trunk/capture_loop.c
 
+I've forgot to put one line under _WIN32, should fix the unix build
 ------------------------------------------------------------------------
-r15919 | guy | 2005-09-20 20:39:00 -0500 (Tue, 20 Sep 2005) | 2 lines
+r16678 | lego | 2005-12-04 19:46:07 -0600 (Sun, 04 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/sigcomp-udvm.c
+   M /trunk/asn1/h248/packet-h248-template.c
+
+Analysis starts to work
 
-I think this is the check that was intended....
 
 ------------------------------------------------------------------------
-r15918 | guy | 2005-09-20 20:34:40 -0500 (Tue, 20 Sep 2005) | 2 lines
+r16677 | ulfl | 2005-12-04 19:23:18 -0600 (Sun, 04 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/image/stock_dialog_stop_48.xpm
-
-Fix a compiler warning.
+   M /trunk/capture_loop.c
 
+Win32: fix signal_pipe handling if we run dumpcap as a standalone application (no signal_pipe)
 ------------------------------------------------------------------------
-r15917 | guy | 2005-09-20 20:34:04 -0500 (Tue, 20 Sep 2005) | 4 lines
+r16676 | jmayer | 2005-12-04 17:50:57 -0600 (Sun, 04 Dec 2005) | 5 lines
 Changed paths:
-   M /trunk/gtk/main.c
+   M /trunk
+   M /trunk/dumpcap.c
 
-Squelch a compiler warning (the argument might be used later).
+We need AF_INET6 on linux, so include netdb.h if available.
+
+Add dumpcap to svn:ignore.
 
-Clean up indentation.
 
 ------------------------------------------------------------------------
-r15916 | guy | 2005-09-20 20:33:16 -0500 (Tue, 20 Sep 2005) | 2 lines
+r16675 | etxrab | 2005-12-04 15:50:31 -0600 (Sun, 04 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/asn1/h450/packet-h450-template.c
-   M /trunk/epan/dissectors/packet-h450.c
-   M /trunk/epan/dissectors/packet-h450.h
+   M /trunk/epan/dissectors/packet-tipc.c
 
-Fix a compiler warning.
+Connection and name manager uses data type hdr
+------------------------------------------------------------------------
+r16674 | etxrab | 2005-12-04 15:45:38 -0600 (Sun, 04 Dec 2005) | 1 line
+Changed paths:
+   A /trunk/asn1/snmp
+   A /trunk/asn1/snmp/Makefile
+   A /trunk/asn1/snmp/Makefile.nmake
+   A /trunk/asn1/snmp/README.txt
+   A /trunk/asn1/snmp/packet-snmp-template.c
+   A /trunk/asn1/snmp/packet-snmp-template.h
+   A /trunk/asn1/snmp/snmp.asn
+   A /trunk/asn1/snmp/snmp.cnf
 
+Work in progress an asn2eth generated snmp dissector.
 ------------------------------------------------------------------------
-r15915 | guy | 2005-09-20 20:15:32 -0500 (Tue, 20 Sep 2005) | 2 lines
+r16673 | jmayer | 2005-12-04 02:48:38 -0600 (Sun, 04 Dec 2005) | 38 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-nbns.c
+   M /trunk/tools/pidl/lib/Parse/Pidl/Ethereal/NDR.pm
+   M /trunk/tools/pidl/lib/Parse/Pidl/NDR.pm
+   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/EJS.pm
+   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/NDR/Parser.pm
 
-Fix a comment.
+Update to samba svn revision 12055:
+========== Samba changelog start ========================
+r11959 | jelmer | 2005-11-29 14:54:51 +0100 (Tue, 29 Nov 2005) | 2 lines
+
+Use DOS_errors array for displaying WERROR values
 
 ------------------------------------------------------------------------
-r15914 | guy | 2005-09-20 19:00:43 -0500 (Tue, 20 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-winsrepl.c
+r11972 | metze | 2005-11-30 13:40:26 +0100 (Wed, 30 Nov 2005) | 3 lines
 
-Put in some comments based on stuff seen in the Samba code
-(include/nameserv.h, code in wrepld).
+handle [noejs] property also on functions
 
+metze
 ------------------------------------------------------------------------
-r15913 | guy | 2005-09-20 17:55:48 -0500 (Tue, 20 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-app-pkix-cert.c
+r11974 | metze | 2005-11-30 18:07:02 +0100 (Wed, 30 Nov 2005) | 3 lines
 
-Give it an RCS ID.
+only look at $pl->{POINTER_TYPE} when $pl is defined
 
+metze
 ------------------------------------------------------------------------
-r15912 | guy | 2005-09-20 17:53:31 -0500 (Tue, 20 Sep 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-h221_nonstd.c
+r11997 | metze | 2005-12-01 13:39:33 +0100 (Thu, 01 Dec 2005) | 14 lines
+
+for multidimentional array like this:
+uint32 [num_level2][num_level1][num_level0]
+
+fix the order they're pushed and pulled, it should be like this
+
+for (l2=0; l2 < num_level2; l2++) {
+        for (l1=0; l1 < num_level1; l1++) {
+                for (l0=0; l0 < num_level0; l0++) {
+                        ndr_pull_uint32(...);
+                }
+        }
+}
 
-Fix the name in the comment.
+metze
+========== Samba changelog end ========================
 
-Give it an RCS ID.
 
 ------------------------------------------------------------------------
-r15911 | guy | 2005-09-20 17:52:31 -0500 (Tue, 20 Sep 2005) | 2 lines
+r16672 | guy | 2005-12-03 22:22:43 -0600 (Sat, 03 Dec 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-actrace.c
-   M /trunk/epan/dissectors/packet-actrace.h
+   M /trunk/epan/proto.c
+   M /trunk/gtk/supported_protos_dlg.c
 
-Give them RCS IDs.
+Check for a null blurb pointer for a field, as is done in some other
+locations, and initialize the blurb field to NULL for protocols, now
+that we support the blurb being a null pointer.
 
 ------------------------------------------------------------------------
-r15910 | guy | 2005-09-20 17:51:42 -0500 (Tue, 20 Sep 2005) | 2 lines
+r16671 | guy | 2005-12-03 22:20:18 -0600 (Sat, 03 Dec 2005) | 6 lines
 Changed paths:
-   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/capture_info.c
 
-Give them RCS IDs.
+Declare "capture_info_packet()"'s as static, to match the definition.
+
+Declare the "pd" argument to be "const guchar *", to match the way
+packet data is declared elsewhere, and so that if the headers
+"capture_info.c" includes don't define "u_char" it still compiles.
 
 ------------------------------------------------------------------------
-r15909 | guy | 2005-09-20 17:49:54 -0500 (Tue, 20 Sep 2005) | 2 lines
+r16670 | guy | 2005-12-03 22:13:07 -0600 (Sat, 03 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-lldp.c
+   M /trunk/epan/strutil.c
 
-Give it an RCS ID.
+Squelch a GCC complaint.
 
 ------------------------------------------------------------------------
-r15908 | etxrab | 2005-09-20 15:25:55 -0500 (Tue, 20 Sep 2005) | 5 lines
+r16669 | ulfl | 2005-12-03 20:04:18 -0600 (Sat, 03 Dec 2005) | 6 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-juniper.c
-   M /trunk/wiretap/libpcap.c
-   M /trunk/wiretap/wtap.c
-   M /trunk/wiretap/wtap.h
+   M /trunk/Makefile.common
+   M /trunk/capture.c
+   M /trunk/capture_info.c
+   M /trunk/capture_info.h
+   M /trunk/capture_loop.c
+   M /trunk/capture_sync.c
+   M /trunk/capture_sync.h
+   M /trunk/dumpcap.c
+   M /trunk/gtk/capture_info_dlg.c
 
-From Hannes Gredler:
-patch to support 4 additional juniper DLTs.
+move the complete functionality of the capture info dialog from capture_loop.c to capture_info.c and call it from capture.c (instead of capture_loop.c).
 
-all those are wrappers for exisiting media types augmented with meta-information which gets also displayed using this patch;
+This way, the capture child don't need to now any of the packet_counter things (no epan/packet.h and all alike).
+
+Currently the capture_info code will always open another wiretap file instance to build it's own counter values. This isn't optimized for now (next step: use data from cf_continue_tail() somehow).
 
 ------------------------------------------------------------------------
-r15907 | etxrab | 2005-09-20 15:20:08 -0500 (Tue, 20 Sep 2005) | 2 lines
+r16668 | ulfl | 2005-12-03 16:38:50 -0600 (Sat, 03 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-jabber.c
+   M /trunk/Makefile.common
+   A /trunk/capture_info.c
+   A /trunk/capture_info.h
+   M /trunk/capture_loop.c
+   M /trunk/capture_loop.h
+   M /trunk/dumpcap.c
+   M /trunk/gtk/capture_info_dlg.c
+   M /trunk/gtk/dlg_utils.h
 
-From Kaul:
-Jabber traffic is XML, attached patch dissects it as such
+split some parts of the packet counting functions into their own files capture_info(.c/.h),
+so we can use it from the main program
 ------------------------------------------------------------------------
-r15906 | etxrab | 2005-09-20 15:04:01 -0500 (Tue, 20 Sep 2005) | 1 line
+r16667 | ulfl | 2005-12-03 15:12:59 -0600 (Sat, 03 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/asn1/gsmmap/packet-gsm_map-template.c
-   M /trunk/epan/dissectors/packet-gsm_map.c
+   M /trunk/capture.c
 
-Fix bug #404 Decoding of MSISDN on GSM is incomplete.  
+clarify a comment
 ------------------------------------------------------------------------
-r15905 | sahlberg | 2005-09-20 14:42:40 -0500 (Tue, 20 Sep 2005) | 6 lines
+r16666 | ulfl | 2005-12-03 15:09:56 -0600 (Sat, 03 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcp.c
-
-from francesco
+   M /trunk/Makefile.common
 
-update to remove sprintf()
+forgot to checkin that file ... so buildbot became unhappy!
+------------------------------------------------------------------------
+r16665 | lego | 2005-12-03 13:41:18 -0600 (Sat, 03 Dec 2005) | 3 lines
+Changed paths:
+   M /trunk/epan/make-sminmpec.pl
 
+Escape non ascii characters
 
 
 ------------------------------------------------------------------------
-r15904 | sahlberg | 2005-09-20 14:36:38 -0500 (Tue, 20 Sep 2005) | 6 lines
+r16664 | ulfl | 2005-12-03 13:32:54 -0600 (Sat, 03 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcp.c
-
-make options field  filterable
+   M /trunk/capture.h
+   M /trunk/capture_loop.c
+   A /trunk/capture_loop.h
+   M /trunk/capture_opts.c
+   A /trunk/capture_opts.h
+   M /trunk/capture_sync.h
+   M /trunk/dumpcap.c
+   M /trunk/gtk/capture_info_dlg.c
+   M /trunk/gtk/main.c
 
-remove silly rotating buffers
+split capture.h into capture.h, capture_loop.h and capture_opts.h and place the parts into the corresponding files
+------------------------------------------------------------------------
+r16663 | ulfl | 2005-12-03 12:15:02 -0600 (Sat, 03 Dec 2005) | 6 lines
+Changed paths:
+   M /trunk/capture.c
+   M /trunk/capture.h
+   M /trunk/capture_sync.c
 
+add missing functions (to complete/cleanup of interface):
 
+capture_input_drops
+capture_input_error_message
 
+and move the functionality from capture_sync.c to capture.c (just where it belongs)
 ------------------------------------------------------------------------
-r15903 | guy | 2005-09-20 14:01:04 -0500 (Tue, 20 Sep 2005) | 2 lines
+r16662 | ulfl | 2005-12-03 06:56:57 -0600 (Sat, 03 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-winsrepl.c
+   M /trunk/capture_loop.c
 
-Set EOL type and expansion of $Id$.
+the function capture_loop_popup_errmsg seems to be useless and misleading, 
+simply call sync_pipe_errmsg_to_parent directly instead
 
 ------------------------------------------------------------------------
-r15902 | etxrab | 2005-09-20 13:45:21 -0500 (Tue, 20 Sep 2005) | 1 line
+r16661 | ulfl | 2005-12-03 06:42:25 -0600 (Sat, 03 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/plugins/megaco/packet-megaco.c
+   M /trunk/docbook/edg_graphics/ethereal-capture-sync.dia
+   M /trunk/docbook/edg_graphics/ethereal-capture-sync.png
 
-Fix bug #343 Parsing Problem - TransactionResponseAck (MEGACO).
+add the (Win32 only) signal pipe
 ------------------------------------------------------------------------
-r15901 | gerald | 2005-09-20 12:26:43 -0500 (Tue, 20 Sep 2005) | 2 lines
+r16660 | ulfl | 2005-12-03 06:32:41 -0600 (Sat, 03 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/docbook/release-notes.xml
-   M /trunk/epan/sigcomp-udvm.c
-
-Be more paranoid about buffer overruns.
+   M /trunk/capture_sync.c
 
+precise some pipe message comments
 ------------------------------------------------------------------------
-r15900 | gerald | 2005-09-20 12:24:23 -0500 (Tue, 20 Sep 2005) | 2 lines
+r16659 | ulfl | 2005-12-03 05:47:48 -0600 (Sat, 03 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/asn1.c
-   M /trunk/epan/dtd_parse.l
-
-Fix a couple of errors found by valgrind.
+   M /trunk/docbook/edg_graphics/ethereal-capture-sync.dia
+   M /trunk/docbook/edg_graphics/ethereal-capture-sync.png
 
+the capture child don't use capture.c, remove it from the drawing
 ------------------------------------------------------------------------
-r15899 | gerald | 2005-09-20 12:23:19 -0500 (Tue, 20 Sep 2005) | 3 lines
+r16658 | lego | 2005-12-03 05:43:19 -0600 (Sat, 03 Dec 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
-   M /trunk/epan/reassemble.c
+   M /trunk/asn1/h248/Makefile
+   M /trunk/asn1/h248/h248.cnf
+   M /trunk/asn1/h248/packet-h248-template.c
+   M /trunk/asn1/h248/packet-h248-template.h
 
-Don't try to reassemble a zero-length fragment.  Add a comment to
-reassemble.c about the handling of zero-length fragments.
+Rewrite of the analisys and summary code.
 
-------------------------------------------------------------------------
-r15898 | jmayer | 2005-09-20 10:19:11 -0500 (Tue, 20 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/Makefile.common
+Analysis code is still  not working so it is disabled.
 
-Francesco Fondelli: Add dcp support (forgot this file)
 
 ------------------------------------------------------------------------
-r15897 | jmayer | 2005-09-20 10:18:28 -0500 (Tue, 20 Sep 2005) | 3 lines
+r16657 | sahlberg | 2005-12-02 16:01:00 -0600 (Fri, 02 Dec 2005) | 8 lines
 Changed paths:
-   M /trunk/AUTHORS
-   M /trunk/epan/addr_resolv.c
-   M /trunk/epan/addr_resolv.h
-   M /trunk/epan/address.h
-   A /trunk/epan/dissectors/packet-dcp.c
-   A /trunk/epan/dissectors/packet-dcp.h
-   M /trunk/epan/ipproto.c
-   M /trunk/epan/ipproto.h
+   M /trunk/asn1/x411/packet-x411-template.c
+   M /trunk/epan/dissectors/packet-p_mul.c
+   M /trunk/epan/dissectors/packet-x411.c
+   M /trunk/epan/dissectors/packet-x411.h
+
+from Stig B:
+
+I have made a small change in packet-x411-template.c to make the X.
+411 message heading in CDT look like in COTP.
+
 
 
-Francesco Fondelli; Add dcp support
 
 ------------------------------------------------------------------------
-r15896 | jmayer | 2005-09-20 10:08:14 -0500 (Tue, 20 Sep 2005) | 3 lines
+r16656 | sahlberg | 2005-12-02 15:12:22 -0600 (Fri, 02 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/tools/Makefile.am
+   M /trunk/epan/dissectors/packet-rtcp.c
 
+rtcp fix for sdes_prefix_string
 
-Add the pidl files.
 
 ------------------------------------------------------------------------
-r15895 | kukosa | 2005-09-20 09:14:07 -0500 (Tue, 20 Sep 2005) | 1 line
+r16655 | etxrab | 2005-12-02 13:33:40 -0600 (Fri, 02 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/asn1/h225/packet-h225-template.c
-   M /trunk/asn1/h245/packet-h245-template.c
-   M /trunk/epan/dissectors/packet-h225.c
-   M /trunk/epan/dissectors/packet-h245.c
-   M /trunk/epan/dissectors/packet-per.c
+   M /trunk/epan/t35.c
 
-get rid of few warnings
+From  Lukasz Apiecionek
+Add Vendor id 
+0x8a000003, "Teldat H. Kruszynski, M. Cichocki Sp. J." } ,
 ------------------------------------------------------------------------
-r15894 | kukosa | 2005-09-20 05:56:08 -0500 (Tue, 20 Sep 2005) | 8 lines
+r16654 | lego | 2005-12-02 11:49:47 -0600 (Fri, 02 Dec 2005) | 5 lines
+Changed paths:
+   M /trunk/tools/asn2eth.py
+
+Add #line directives to the genertated dissector.
+
+Now the compiler knows where a line comes from and errors point to the .cnf or -template.[ch] file instead of the generated code.
+
+
+------------------------------------------------------------------------
+r16653 | kukosa | 2005-12-02 07:21:43 -0600 (Fri, 02 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/asn1/h225/h225.cnf
-   M /trunk/asn1/h225/packet-h225-template.c
-   M /trunk/asn1/h245/h245.cnf
-   M /trunk/asn1/h245/packet-h245-template.c
-   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-per.c
-   M /trunk/epan/dissectors/packet-per.h
-   M /trunk/tools/asn2eth.py
 
-asn2eth 
- - #.FN_BODY accepts parameters too
- - single line variant of #.FN_PAR is possible
- - new parameter FN_VARIANT for OBJECT IDENTIFIER
-packet-per.c
- - dissect_per_object_identifier() returns value as tvb
- - new dissect_per_object_identifier_str() function
-PER dissectors adapted and regenerated
+PER dissectors regenerated with FT_OID
 ------------------------------------------------------------------------
-r15893 | ulfl | 2005-09-20 04:02:38 -0500 (Tue, 20 Sep 2005) | 1 line
+r16652 | kukosa | 2005-12-02 07:16:58 -0600 (Fri, 02 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-lldp.c
+   M /trunk/epan/dfilter/semcheck.c
+   M /trunk/epan/dissectors/packet-ber.c
+   M /trunk/epan/dissectors/packet-per.c
+   M /trunk/epan/ftypes/ftype-bytes.c
+   M /trunk/epan/ftypes/ftypes.h
+   M /trunk/epan/proto.c
+   M /trunk/epan/proto.h
+   M /trunk/epan/strutil.c
+   M /trunk/epan/strutil.h
+   M /trunk/epan/to_str.c
+   M /trunk/tools/asn2eth.py
 
-fix: packet-lldp.c(2071) : warning C4761: integral size mismatch in argument; conversion supplied
+new field type FT_OID for OBJECT IDENTIFIERs
 ------------------------------------------------------------------------
-r15892 | ulfl | 2005-09-20 03:55:50 -0500 (Tue, 20 Sep 2005) | 1 line
+r16651 | sahlberg | 2005-12-02 05:33:34 -0600 (Fri, 02 Dec 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc.c
+   A /trunk/epan/dissectors/pidl/wkssvc.idl
 
-fix: packet-dcerpc.c(4019) : warning C4018: '<' : signed/unsigned mismatch
-------------------------------------------------------------------------
-r15891 | ulfl | 2005-09-20 03:42:35 -0500 (Tue, 20 Sep 2005) | 6 lines
-Changed paths:
-   M /trunk/capture.c
-   M /trunk/file.c
-   M /trunk/file.h
-   M /trunk/gtk/main.c
+check in a version of wkssvc that contains all the constructs of the etehreal dissector.
 
-add two new callbacks:
-cf_cb_file_closing (called before closing a capture file) cf_cb_file_closed will be called afterwards, but both only if a file is really closed as cf_close is called more often ...
+the generated dissector is still "ugly" compared to the handwritten one so there needs a bit of conformance file magic and maybe pidl enhancements before it can go in.
 
-If we are closing large capture files (~20MB), the screen looks ugly while the file is closed. Change this so the screen will immediately go back to initial state and a dialog (without buttons) is shown that the file is currently closed. As the operation which takes most of the time to close the file is a single eth_clist_clear call, we can't use a progress bar here.
 
-cf_cb_live_capture_stopping: called when the user wants to stop the capture (toolbar or menu clicked). At least on Win32, the time between this and the actual stop completed can be noticeable (1-2 seconds), so the user doesn't know if the button press did anything at all. Do something similar as above, show a dialog box without buttons to inform that the close is in progress.
 ------------------------------------------------------------------------
-r15890 | ulfl | 2005-09-20 03:31:09 -0500 (Tue, 20 Sep 2005) | 1 line
+r16650 | sahlberg | 2005-12-02 04:54:05 -0600 (Fri, 02 Dec 2005) | 7 lines
 Changed paths:
-   M /trunk/capture_wpcap_packet.c
+   M /trunk/epan/dissectors/packet-dcerpc-dssetup.c
+   M /trunk/epan/dissectors/packet-dcerpc-initshutdown.c
+   M /trunk/epan/dissectors/packet-dcerpc-initshutdown.h
+   M /trunk/epan/dissectors/packet-dcerpc-winreg.c
+   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
 
-fix a compiler warning (... copied from RFC2553 :-)
-------------------------------------------------------------------------
-r15889 | ulfl | 2005-09-20 03:18:41 -0500 (Tue, 20 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/gtk/main.c
+regenerate the pidl dissectors with the latest version of pidl   so it will put the text representation of DOS errors in the decode as well.
 
-if the capture child pops up it's own console, title it as such
-------------------------------------------------------------------------
-r15888 | guy | 2005-09-20 03:01:00 -0500 (Tue, 20 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/gtk/capture_if_details_dlg.c
 
-Squelch a compiler warning.
+(the hf field for doserrors did not come with the value_string)
 
-------------------------------------------------------------------------
-r15887 | ulfl | 2005-09-19 21:10:48 -0500 (Mon, 19 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/capture_wpcap_packet.c
-   M /trunk/gtk/capture_if_details_dlg.c
 
-the buildbot has a problem not knowing sa_family_t, define eth_sa_family_t and use it here (ok, this *is* a dirty hack)
 
-don't know why the last commit compiled on my machine and not on the buildbot.
 ------------------------------------------------------------------------
-r15886 | ulfl | 2005-09-19 20:53:38 -0500 (Mon, 19 Sep 2005) | 1 line
+r16649 | sahlberg | 2005-12-02 04:41:46 -0600 (Fri, 02 Dec 2005) | 7 lines
 Changed paths:
-   M /trunk/gtk/dlg_utils.c
-   M /trunk/gtk/simple_dialog.c
-   M /trunk/simple_dialog.h
+   A /trunk/asn1/ldap
+   A /trunk/asn1/ldap/Lightweight-Directory-Access-Protocol-V3.asn
+   A /trunk/asn1/ldap/Lightweight-Directory-Access-Protocol-V3.asn.orig
+   A /trunk/asn1/ldap/Makefile.nmake
+   A /trunk/asn1/ldap/README
+   A /trunk/asn1/ldap/ldap.cnf
+   A /trunk/asn1/ldap/packet-ldap-template.c
+   A /trunk/asn1/ldap/packet-ldap-template.h
+
+add work in progress asn2eth generated ldap dissector from AndersB's email of
+Nov 15
+
+it is checked in but not copied to epan/dissectors so that those interested can work on it until it gets ready to replace the old one.
+
 
-enhance simple dialog: add the possibility to use no buttons at all and add a stop icon (similar to the splash_window, but with a slightly different layout and a way to choose the icon shown)
-------------------------------------------------------------------------
-r15885 | ulfl | 2005-09-19 20:45:35 -0500 (Mon, 19 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/Makefile.am
-   M /trunk/image/README.image
-   A /trunk/image/stock_dialog_stop_48.xpm
 
-add a new stop icon 48x48 for (simple) dialogs (derived from the openoffice stock icons and slightly enlarged using the Gimp)
 ------------------------------------------------------------------------
-r15884 | lego | 2005-09-19 19:31:53 -0500 (Mon, 19 Sep 2005) | 5 lines
+r16648 | sahlberg | 2005-12-02 04:25:05 -0600 (Fri, 02 Dec 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dtd_parse.l
+   M /trunk/epan/ipproto.c
+   M /trunk/epan/ipproto.h
 
- avoid freeing the last location twice.
+add two new ip protocol numbers
 
-add some #ifed out code to help debugging the parser
+from Jaap K
 
 
 ------------------------------------------------------------------------
-r15883 | jmayer | 2005-09-19 18:33:45 -0500 (Mon, 19 Sep 2005) | 1 line
+r16647 | ulfl | 2005-12-02 03:24:55 -0600 (Fri, 02 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/tools/pidl
+   M /trunk/capture_loop.c
 
-Add svn:ignore from samba
+performance improvement: if the packet info dialog is hidden, we don't need to call the capture_... packet count functions
 ------------------------------------------------------------------------
-r15882 | jmayer | 2005-09-19 18:31:47 -0500 (Mon, 19 Sep 2005) | 3 lines
+r16646 | sahlberg | 2005-12-02 03:19:05 -0600 (Fri, 02 Dec 2005) | 3 lines
 Changed paths:
-   A /trunk/tools/pidl
-   A /trunk/tools/pidl/Makefile.PL
-   A /trunk/tools/pidl/README
-   A /trunk/tools/pidl/TODO
-   A /trunk/tools/pidl/idl.yp
-   A /trunk/tools/pidl/lib
-   A /trunk/tools/pidl/lib/Parse
-   A /trunk/tools/pidl/lib/Parse/Pidl
-   A /trunk/tools/pidl/lib/Parse/Pidl/Compat.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Dump.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Ethereal
-   A /trunk/tools/pidl/lib/Parse/Pidl/Ethereal/Conformance.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Ethereal/NDR.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/IDL.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/NDR.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/ODL.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/COM
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/COM/Header.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/COM/Proxy.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/COM/Stub.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/EJS.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/EJSHeader.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/Header.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/NDR
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/NDR/Client.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/NDR/Parser.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/NDR/Server.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/SWIG.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/TDR.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/Template.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Test.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Typelist.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Util.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl.pm
-   A /trunk/tools/pidl/pidl
-   A /trunk/tools/pidl/pidl.1.xml
-   A /trunk/tools/pidl/ref_notes.txt
-   A /trunk/tools/pidl/smb_interfaces.pm
-   A /trunk/tools/pidl/smb_interfaces.yp
+   M /trunk/epan/dissectors/packet-smb2.c
+
+add some more ioctls
 
-Revert back to local copy: The samba svn server does not support svn
-over http - this was a much requested feature for Ethereals svn server.
 
 ------------------------------------------------------------------------
-r15881 | jmayer | 2005-09-19 18:29:03 -0500 (Mon, 19 Sep 2005) | 3 lines
+r16645 | sahlberg | 2005-12-02 00:49:52 -0600 (Fri, 02 Dec 2005) | 4 lines
 Changed paths:
-   M /trunk/tools
+   M /trunk/epan/dissectors/packet-smb2.c
+
+add dissection of 
+FSCTL_CREATE_OR_GET_OBJECT_ID
 
-pidl: Revert back to local copy. The samba svn server does not support svn
-over http - this was a much requested feature for Ethereal's svn server.
 
 ------------------------------------------------------------------------
-r15880 | jmayer | 2005-09-19 16:24:46 -0500 (Mon, 19 Sep 2005) | 1 line
+r16644 | etxrab | 2005-12-01 14:29:24 -0600 (Thu, 01 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/FAQ
-   M /trunk/help/faq.txt
+   M /trunk/epan/dissectors/packet-isup.c
 
-Update faq
+Handle empty APM message
 ------------------------------------------------------------------------
-r15879 | jmayer | 2005-09-19 16:24:07 -0500 (Mon, 19 Sep 2005) | 1 line
+r16643 | ulfl | 2005-12-01 14:19:30 -0600 (Thu, 01 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/AUTHORS
-   M /trunk/epan/dissectors/packet-lldp.c
-   M /trunk/manuf
-   M /trunk/wka.tmpl
+   M /trunk/dumpcap.c
 
-Jim Young: LLDP improvements
+fix OPTINIT string, help output and add an exit_main function
 ------------------------------------------------------------------------
-r15878 | ulfl | 2005-09-19 15:59:50 -0500 (Mon, 19 Sep 2005) | 1 line
+r16642 | ulfl | 2005-12-01 14:04:55 -0600 (Thu, 01 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/capture_wpcap_packet.c
-   M /trunk/gtk/capture_if_details_dlg.c
+   M /trunk/gtk/main.c
+   M /trunk/tethereal.c
 
-fix #340: define the missing sockaddr_storage struct to be able to use Packet32.h even with WinPcap 3.1 and without the platform SDK
+fix alphabetical order of OPTINIT string, v seems to be a controversial character :-)
 ------------------------------------------------------------------------
-r15877 | gerald | 2005-09-19 15:50:51 -0500 (Mon, 19 Sep 2005) | 2 lines
+r16641 | etxrab | 2005-12-01 14:02:45 -0600 (Thu, 01 Dec 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dtd.h
-
-Small whitespace cleanup.
+   M /trunk/epan/address.h
+   M /trunk/epan/dissectors/packet-tipc.c
+   M /trunk/epan/to_str.c
+   M /trunk/epan/to_str.h
 
+Add TIPC address as address type and use it in TIPC.
 ------------------------------------------------------------------------
-r15876 | gerald | 2005-09-19 15:50:10 -0500 (Mon, 19 Sep 2005) | 3 lines
+r16640 | etxrab | 2005-12-01 12:43:26 -0600 (Thu, 01 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/sigcomp-udvm.c
-
-Throw an exception instead of trying to read past the end of a buffer.
-Fixes bug 455.
+   A /trunk/diameter/chargecontrol.xml
+   M /trunk/diameter/dictionary.xml
 
+From Thomas Steffen:
+Add chargecontrol.xml 
 ------------------------------------------------------------------------
-r15875 | lego | 2005-09-19 14:48:55 -0500 (Mon, 19 Sep 2005) | 3 lines
+r16639 | tuexen | 2005-12-01 09:15:42 -0600 (Thu, 01 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-gtp.c
-
-display something useful in the radius VSA item
+   M /trunk/gtk/sctp_byte_graph_dlg.c
 
+Bug fixes from Irene.
 
 ------------------------------------------------------------------------
-r15874 | gerald | 2005-09-19 14:46:25 -0500 (Mon, 19 Sep 2005) | 2 lines
+r16638 | sahlberg | 2005-12-01 07:06:20 -0600 (Thu, 01 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/asn1/spnego/spnego.cnf
-   M /trunk/epan/dissectors/packet-spnego.c
+   M /trunk/epan/dissectors/packet-smb2.c
+
+add dissection of FSCTL_GET_SHADOW_COPY_DATA
 
-Don't dereference a null pointer.  Fixes bug 460.
 
 ------------------------------------------------------------------------
-r15873 | lego | 2005-09-19 14:36:32 -0500 (Mon, 19 Sep 2005) | 2 lines
+r16637 | sahlberg | 2005-12-01 06:34:53 -0600 (Thu, 01 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-radius.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Change "Value" into "VSA" for Vendor SPecific Attributes
+swap in/out to be more consistent with sane naming conventions
 
-------------------------------------------------------------------------
-r15872 | etxrab | 2005-09-19 14:11:50 -0500 (Mon, 19 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-amr.c
 
-Add a preference to decode different types of AMR payload.
 ------------------------------------------------------------------------
-r15871 | gerald | 2005-09-19 12:50:38 -0500 (Mon, 19 Sep 2005) | 2 lines
+r16636 | sahlberg | 2005-12-01 04:34:00 -0600 (Thu, 01 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc-afs4int.c
+   M /trunk/epan/dissectors/packet-smb2.c
+
+start implementing an ioctl dispatcher for different ioctl functions
 
-Throw an exception if our ACL length is flat-out wrong.
 
 ------------------------------------------------------------------------
-r15870 | lego | 2005-09-19 12:42:02 -0500 (Mon, 19 Sep 2005) | 6 lines
+r16635 | sahlberg | 2005-12-01 04:18:14 -0600 (Thu, 01 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-radius.c
-   M /trunk/epan/dissectors/packet-radius.h
-   M /trunk/epan/radius_dict.l
-
+   M /trunk/epan/dissectors/packet-smb2.c
 
-- allow multiple attributes inside one VSA (fixes bug 438)
-- preference to choose whether to add the AVP's payload length items
-- preference to add an alternate UDP port
+add decoding of some ioctl names    copied from packet-smb.c
 
 
 ------------------------------------------------------------------------
-r15869 | gerald | 2005-09-19 11:23:05 -0500 (Mon, 19 Sep 2005) | 5 lines
+r16634 | sahlberg | 2005-12-01 03:42:39 -0600 (Thu, 01 Dec 2005) | 3 lines
 Changed paths:
-   M /trunk/asn1/spnego/spnego.cnf
-   M /trunk/epan/dissectors/packet-ber.c
-   M /trunk/epan/dissectors/packet-spnego.c
+   M /trunk/epan/dissectors/packet-smb2.c
+   M /trunk/epan/dissectors/packet-smb2.h
 
-In the SPNEGO dissector, don't call a subdissector if we don't have a TVB.
-Fixes bugs 448, 449, 451, 452, 454, 456, and 461.
+move the ioctl function code to the si structure so we can switch on this later in the ioctl_data dissector
 
-Add similar TVB checks to the BER dissector.
 
 ------------------------------------------------------------------------
-r15868 | jmayer | 2005-09-19 09:59:32 -0500 (Mon, 19 Sep 2005) | 4 lines
+r16633 | sahlberg | 2005-12-01 03:20:29 -0600 (Thu, 01 Dec 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/pidl/README
-
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Change README to reflect the fact that tools/pidl is now a
-svn:externals reference.
+0x0b is ioctl not transaction
 
 ------------------------------------------------------------------------
-r15867 | jmayer | 2005-09-19 09:53:46 -0500 (Mon, 19 Sep 2005) | 5 lines
+r16632 | etxrab | 2005-12-01 00:28:04 -0600 (Thu, 01 Dec 2005) | 4 lines
 Changed paths:
-   M /trunk/tools
+   M /trunk/epan/dissectors/packet-ses.c
+   M /trunk/epan/dissectors/packet-ses.h
 
-Add svn:externals for pidl: That way svn up will pull the pidl sources
-directly from the samba svn instead of keeping a copy of them in the
-Ethereal svn.
+From Stig Bjørlykke
 
+Added "Activity Identifier" PI in the OSI Session Protocol dissector. 
 
 ------------------------------------------------------------------------
-r15866 | jmayer | 2005-09-19 09:50:23 -0500 (Mon, 19 Sep 2005) | 1 line
+r16631 | etxrab | 2005-12-01 00:20:17 -0600 (Thu, 01 Dec 2005) | 2 lines
 Changed paths:
-   D /trunk/tools/pidl
+   M /trunk/epan/dissectors/packet-q931.c
 
-Change pidl to svn:externals
+From Jaap Keuter:
+Q.931 fails to pass long message to H.225
 ------------------------------------------------------------------------
-r15865 | jmayer | 2005-09-19 08:26:49 -0500 (Mon, 19 Sep 2005) | 1 line
+r16630 | etxrab | 2005-12-01 00:18:30 -0600 (Thu, 01 Dec 2005) | 1 line
 Changed paths:
-   A /trunk/epan/dissectors/pidl/idl_types.h
+   M /trunk/asn1/inap/packet-inap-template.c
+   M /trunk/epan/dissectors/packet-inap.c
 
-Add idl_types.h from samba to fix warning
+Fix a typo
 ------------------------------------------------------------------------
-r15864 | jmayer | 2005-09-19 04:23:52 -0500 (Mon, 19 Sep 2005) | 1 line
+r16629 | etxrab | 2005-11-30 14:14:18 -0600 (Wed, 30 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/pidl/README
+   M /trunk/asn1/inap/inap.asn
+   M /trunk/asn1/inap/inap.cnf
+   M /trunk/asn1/inap/packet-inap-template.c
+   M /trunk/epan/dissectors/packet-inap.c
 
-Point to tools/pidl/README.ethereal
+Connec all op types to the asn1 code. Use #.PDU to get hf fields auto generated.
 ------------------------------------------------------------------------
-r15863 | guy | 2005-09-19 03:09:41 -0500 (Mon, 19 Sep 2005) | 2 lines
+r16628 | etxrab | 2005-11-30 14:12:44 -0600 (Wed, 30 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-winsrepl.c
-
-Fix a typo.
+   M /trunk/epan/address.h
 
+Add circuit ID BICC_CIC
 ------------------------------------------------------------------------
-r15862 | sahlberg | 2005-09-19 03:06:25 -0500 (Mon, 19 Sep 2005) | 9 lines
+r16627 | etxrab | 2005-11-30 14:11:45 -0600 (Wed, 30 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/asn1/h248/packet-h248-template.c
-   M /trunk/epan/dissectors/packet-h248.c
-
-sometimes it seems that we have the text based h248/megaco running ontop of
-m3ua  and not the binary one.
-
-
-make the binary dissector check if it is really the text based one to be used and if so
-call that dissector instead.
+   M /trunk/epan/dissectors/packet-uma.c
 
+Dissct Ptotocol Id 0
+------------------------------------------------------------------------
+r16626 | tuexen | 2005-11-29 17:09:01 -0600 (Tue, 29 Nov 2005) | 3 lines
+Changed paths:
+   M /trunk/epan/dissectors/packet-sctp.c
 
+Add support for
+- http://www.ietf.org/internet-drafts/draft-stewart-sctpstrrst-01.txt
 
 ------------------------------------------------------------------------
-r15861 | kukosa | 2005-09-19 02:35:05 -0500 (Mon, 19 Sep 2005) | 1 line
+r16625 | etxrab | 2005-11-29 12:58:18 -0600 (Tue, 29 Nov 2005) | 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-per.c
-   M /trunk/epan/dissectors/packet-per.h
-   M /trunk/epan/dissectors/packet-t38.c
-   M /trunk/tools/asn2eth.py
+   M /trunk/epan/dissectors/packet-etheric.c
 
-remove unused parameter 'name' from dissect_per_choice()
+Change the name of 'isup_calling_partys_category_value'.
 ------------------------------------------------------------------------
-r15860 | jmayer | 2005-09-18 16:58:39 -0500 (Sun, 18 Sep 2005) | 1 line
+r16624 | etxrab | 2005-11-29 11:23:50 -0600 (Tue, 29 Nov 2005) | 5 lines
 Changed paths:
-   M /trunk/tools/checkhf.pl
+   M /trunk/asn1/camel/camel.asn
+   M /trunk/asn1/camel/camel.cnf
+   M /trunk/asn1/gsmmap/gsm_map-exp.cnf
+   M /trunk/asn1/inap/inap.asn
+   M /trunk/asn1/inap/inap.cnf
+   M /trunk/asn1/inap/packet-inap-template.c
+   M /trunk/epan/dissectors/packet-camel.c
+   M /trunk/epan/dissectors/packet-gsm_map.c
+   M /trunk/epan/dissectors/packet-gsm_map.h
+   M /trunk/epan/dissectors/packet-inap.c
+   M /trunk/epan/dissectors/packet-isup.c
+   M /trunk/epan/dissectors/packet-isup.h
 
-Small update
+ISUP - Export functions used by INAP and Camel
+Gsmmap - Export asn1 structs used by Camel
+Camel - Use functions from GSMMAp and ISUP
+INAP - Rewrite of the asn1 code to correspond more to CS1 data types
+          Let ISUP and Q931 dissect apropriate stuff.
 ------------------------------------------------------------------------
-r15859 | jmayer | 2005-09-18 16:57:59 -0500 (Sun, 18 Sep 2005) | 1 line
+r16623 | guy | 2005-11-29 03:38:45 -0600 (Tue, 29 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/tools/pidl
-   M /trunk/tools/pidl/README.ethereal
-   M /trunk/tools/pidl/lib/Parse/Pidl/IDL.pm
-   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/TDR.pm
-   D /trunk/tools/pidl/pm_to_blib
+   M /trunk/epan/dissectors/packet-smb2.c
+
+"dcerpc_smb_fetch_pol()" doesn't necessarily return a name, as we might
+not have seen anything that would let us give a name to a handle.
 
-Update README.ethereal and sync with current samba tree
 ------------------------------------------------------------------------
-r15858 | ulfl | 2005-09-18 15:11:54 -0500 (Sun, 18 Sep 2005) | 1 line
+r16622 | sahlberg | 2005-11-28 21:19:52 -0600 (Mon, 28 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/tvbuff.c
+   M /trunk/epan/dissectors/packet-dcerpc-winreg.c
+   M /trunk/epan/dissectors/packet-dcerpc-winreg.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
+
+prettification and updates to winreg
+
 
-assert that tvb is not NULL
 ------------------------------------------------------------------------
-r15857 | etxrab | 2005-09-18 15:04:04 -0500 (Sun, 18 Sep 2005) | 1 line
+r16621 | ulfl | 2005-11-28 15:12:50 -0600 (Mon, 28 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-cops.c
+   M /trunk/Makefile.common
 
-Change some of the asn1 functions to use packet-ber ones.
+seems like autogen doesn't like empty lines in the makefile
 ------------------------------------------------------------------------
-r15856 | guy | 2005-09-18 11:54:00 -0500 (Sun, 18 Sep 2005) | 7 lines
+r16620 | ulfl | 2005-11-28 14:51:27 -0600 (Mon, 28 Nov 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
+   M /trunk/Makefile.common
+   M /trunk/capture_loop.c
+   M /trunk/dumpcap.c
 
-If the tag field is a bitfield, always show it as such, otherwise always
-show the value of 1 1111 as "Continued" in the bitfield and the actual
-tag value in the following bytes.
+dumpcap.c doesn't need to link with file.c!
 
-Show the BER identifier data before an OID if we're showing internal BER
-fields.
+this fortunately removes *a lot* of dependencies and make the resulting binary a lot smaller (and hopefully faster to load :-)
 
+some more cleanup (like replacing // by /**/)
 ------------------------------------------------------------------------
-r15855 | ulfl | 2005-09-18 06:18:42 -0500 (Sun, 18 Sep 2005) | 1 line
+r16619 | sharpe | 2005-11-28 11:32:30 -0600 (Mon, 28 Nov 2005) | 8 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-frame.c
+   M /trunk/epan/dissectors/packet-ldap.c
+
+
+Change the way we handle realloc so that we now compute all the space required
+up front and realloc once ...
+
+This will probably be the last changes I make on this dissector, as I want to
+concentrate on using asn2eth for LDAP, as time permits.
+
 
-as discussed in the Users list: replace "Short Frame" by "Packet size limited during capture" message
 ------------------------------------------------------------------------
-r15854 | lego | 2005-09-18 04:10:03 -0500 (Sun, 18 Sep 2005) | 3 lines
+r16618 | guy | 2005-11-28 05:40:28 -0600 (Mon, 28 Nov 2005) | 2 lines
 Changed paths:
    M /trunk/Makefile.am
+   M /trunk/configure.in
+   M /trunk/dumpcap.c
 
-add dtds to EXTRA_DIST
-
+Add support for building dumpcap, and fix dumpcap to build on UN*X.
 
 ------------------------------------------------------------------------
-r15853 | etxrab | 2005-09-17 16:02:51 -0500 (Sat, 17 Sep 2005) | 1 line
+r16617 | guy | 2005-11-28 04:28:31 -0600 (Mon, 28 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
+   M /trunk/epan/dissectors/packet-sndcp.c
+
+Update the offset correctly regardless of whether we're building a
+protocol tree or not.
 
-If unkown Tag's are found in a set add length.
 ------------------------------------------------------------------------
-r15852 | lego | 2005-09-17 12:17:42 -0500 (Sat, 17 Sep 2005) | 3 lines
+r16616 | guy | 2005-11-28 04:26:21 -0600 (Mon, 28 Nov 2005) | 11 lines
 Changed paths:
-   M /trunk/Makefile.am
-   A /trunk/dtds
-   A /trunk/dtds/dc.dtd
-   A /trunk/dtds/itunes.dtd
-   A /trunk/dtds/rss.dtd
-   A /trunk/dtds/smil.dtd
-   M /trunk/packaging/nsis/ethereal.nsi
+   M /trunk/epan/dissectors/packet-ppp.c
+
+Give the RFC number for CHAP.
+
+Don't fetch CHAP fields until we need them, so that we can at least
+partially dissect a short frame.
 
-Get the first few dtds installed.
+Even if the CHAP length is wrong, put it into the protocol tree using
+the registered field.
 
+Use "tvb_format_text()" to put text into the Info column, so we handle
+non-printable characters by escaping them.
 
 ------------------------------------------------------------------------
-r15851 | lego | 2005-09-17 12:05:46 -0500 (Sat, 17 Sep 2005) | 5 lines
+r16615 | ulfl | 2005-11-28 02:54:52 -0600 (Mon, 28 Nov 2005) | 9 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-xml.c
-   M /trunk/epan/dtd.h
-   M /trunk/epan/dtd_grammar.lemon
-   M /trunk/epan/dtd_parse.l
-   M /trunk/epan/dtd_preparse.l
+   M /trunk/Makefile.am
+   M /trunk/Makefile.common
+   M /trunk/Makefile.nmake
+   M /trunk/capture_loop.c
+   A /trunk/dumpcap.c
+   M /trunk/image/Makefile.nmake
+   A /trunk/image/dumpcap.rc.in
 
-Because there's more than just text in XML...
+first steps towards a separated capture tool, working title "dumpcap"
+personal backup only, not meant for public testing!
 
-DTDs are imported to create fields
+I've copied main.c into dumpcap.c and carved out all things not needed
 
+currently won't work as a command line tool, capture_loop.c wants an input pipe
+console output is also very ugly and the whole code needs a lot of further cleanup
 
+shouldn't break the unix build as I've only changed the nmake files so far, but who knows ...
 ------------------------------------------------------------------------
-r15850 | ulfl | 2005-09-17 09:14:24 -0500 (Sat, 17 Sep 2005) | 1 line
+r16614 | sharpe | 2005-11-28 02:31:11 -0600 (Mon, 28 Nov 2005) | 6 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-h1.c
+   M /trunk/epan/dissectors/packet-ldap.c
 
-using heur_dissector_add("cotp_is") doesn't seem to be enough, if H1 is used over TCP/TPKT (RFC1006). Add heur_dissector_add("cotp") so it will be dissected correctly, hopefully this won't introduce new problems with other "cotp" heuristics ...
-------------------------------------------------------------------------
-r15849 | sahlberg | 2005-09-17 07:16:11 -0500 (Sat, 17 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-dcm.c
 
-remove some strcpy()
+Make sure that we reset the filter pointer after we realloc the filter.
+
+This should be simplified ... calc all the space required once and then realloc once etc.
 
 
 ------------------------------------------------------------------------
-r15848 | sahlberg | 2005-09-17 07:09:36 -0500 (Sat, 17 Sep 2005) | 3 lines
+r16613 | sahlberg | 2005-11-28 02:20:12 -0600 (Mon, 28 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-fcswils.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-remove some strcpy()
+name some infolevels
 
 
 ------------------------------------------------------------------------
-r15847 | guy | 2005-09-16 21:14:44 -0500 (Fri, 16 Sep 2005) | 4 lines
+r16612 | guy | 2005-11-27 18:48:17 -0600 (Sun, 27 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/strerror.c
+   M /trunk/epan/dissectors/packet-pppoe.c
 
-Fix Gerald's e-mail address (and possibly provoke a copy of the main
-repository to the anonymous repository - the current anonymous
-repository appears to be out-of-date, which is breaking the buildbot).
+Don't show the tag twice.
 
 ------------------------------------------------------------------------
-r15846 | guy | 2005-09-16 19:39:52 -0500 (Fri, 16 Sep 2005) | 2 lines
+r16611 | guy | 2005-11-27 18:41:01 -0600 (Sun, 27 Nov 2005) | 5 lines
 Changed paths:
-   M /trunk/gtk/expert_dlg.c
+   M /trunk/epan/dissectors/packet-pppoe.c
 
-Mark some unused and unremovable arguments as unused.
+Host-Uniq is binary, not text.
+
+FT_BYTES items don't have a base - the bytes are always dumped in hex -
+so use BASE_NONE with them.
 
 ------------------------------------------------------------------------
-r15845 | guy | 2005-09-16 19:31:15 -0500 (Fri, 16 Sep 2005) | 3 lines
+r16610 | guy | 2005-11-27 06:10:03 -0600 (Sun, 27 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/Makefile.common
-   M /trunk/epan/dissectors/Makefile.common
-   A /trunk/epan/dissectors/format-oid.h (from /trunk/epan/format-oid.h:15844)
-   M /trunk/epan/dissectors/packet-cops.c
-   M /trunk/epan/dissectors/packet-ndmp.c
-   M /trunk/epan/dissectors/packet-rpc.c
-   M /trunk/epan/dissectors/packet-smb-browse.c
-   M /trunk/epan/dissectors/packet-smb-mailslot.c
-   M /trunk/epan/dissectors/packet-smb-pipe.c
-   M /trunk/epan/dissectors/packet-smb-sidsnooping.c
-   M /trunk/epan/dissectors/packet-smb.c
-   A /trunk/epan/dissectors/packet-smb.h (from /trunk/epan/smb.h:15844)
-   M /trunk/epan/dissectors/packet-snmp.c
-   M /trunk/epan/dissectors/packet-windows-common.c
-   A /trunk/epan/dissectors/rpc_defrag.h (from /trunk/epan/rpc_defrag.h:15844)
-   D /trunk/epan/format-oid.h
-   D /trunk/epan/rpc_defrag.h
-   D /trunk/epan/smb.h
-   M /trunk/gtk/smb_stat.c
-   M /trunk/tap-smbsids.c
-   M /trunk/tap-smbstat.c
+   M /trunk/wiretap/hcidump.c
 
-Move some headers for stuff defined by a dissector into epan/dissectors
-- and rename smb.h to packet-smb.h, as it's packet-smb.c's header file.
+Fail if *any* of the fields in the per-packet header of the first record
+aren't sane, rather than requiring them *all* to have invalid values.
 
 ------------------------------------------------------------------------
-r15844 | guy | 2005-09-16 19:02:31 -0500 (Fri, 16 Sep 2005) | 7 lines
+r16609 | guy | 2005-11-26 20:42:29 -0600 (Sat, 26 Nov 2005) | 10 lines
 Changed paths:
-   M /trunk/Makefile.common
-   D /trunk/aftypes.h
-   D /trunk/arcnet_pids.h
-   M /trunk/asn1/h248/packet-h248-template.c
-   D /trunk/bridged_pids.h
-   D /trunk/chdlctypes.h
-   M /trunk/configure.in
-   M /trunk/epan/Makefile.common
-   A /trunk/epan/aftypes.h (from /trunk/aftypes.h:15843)
-   A /trunk/epan/arcnet_pids.h (from /trunk/arcnet_pids.h:15843)
-   A /trunk/epan/bridged_pids.h (from /trunk/bridged_pids.h:15843)
-   A /trunk/epan/chdlctypes.h (from /trunk/chdlctypes.h:15843)
-   M /trunk/epan/dissectors/packet-3com-xns.c
-   M /trunk/epan/dissectors/packet-aarp.c
-   M /trunk/epan/dissectors/packet-ap1394.c
-   M /trunk/epan/dissectors/packet-arcnet.c
-   M /trunk/epan/dissectors/packet-arp.c
-   M /trunk/epan/dissectors/packet-asap.c
-   M /trunk/epan/dissectors/packet-atalk.c
-   M /trunk/epan/dissectors/packet-atm.c
-   M /trunk/epan/dissectors/packet-bacnet.c
-   M /trunk/epan/dissectors/packet-bpdu.c
-   M /trunk/epan/dissectors/packet-brdwlk.c
-   M /trunk/epan/dissectors/packet-cdp.c
-   M /trunk/epan/dissectors/packet-chdlc.c
-   M /trunk/epan/dissectors/packet-cisco-oui.c
-   M /trunk/epan/dissectors/packet-cisco-wireless.c
-   M /trunk/epan/dissectors/packet-clnp.c
-   M /trunk/epan/dissectors/packet-cops.c
-   M /trunk/epan/dissectors/packet-dec-bpdu.c
-   M /trunk/epan/dissectors/packet-dec-dnart.c
-   M /trunk/epan/dissectors/packet-dua.c
-   M /trunk/epan/dissectors/packet-eap.c
-   M /trunk/epan/dissectors/packet-eapol.c
-   M /trunk/epan/dissectors/packet-enc.c
-   M /trunk/epan/dissectors/packet-enrp.c
-   M /trunk/epan/dissectors/packet-esis.c
-   M /trunk/epan/dissectors/packet-eth.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-fcct.c
-   M /trunk/epan/dissectors/packet-fcdns.c
-   M /trunk/epan/dissectors/packet-fcels.c
-   M /trunk/epan/dissectors/packet-fcfcs.c
-   M /trunk/epan/dissectors/packet-fcfzs.c
-   M /trunk/epan/dissectors/packet-fclctl.c
-   M /trunk/epan/dissectors/packet-fcp.c
-   M /trunk/epan/dissectors/packet-fcsb3.c
-   M /trunk/epan/dissectors/packet-fcsp.c
-   M /trunk/epan/dissectors/packet-fcswils.c
-   M /trunk/epan/dissectors/packet-fr.c
-   M /trunk/epan/dissectors/packet-fw1.c
-   M /trunk/epan/dissectors/packet-g723.c
-   M /trunk/epan/dissectors/packet-gmrp.c
-   M /trunk/epan/dissectors/packet-gre.c
-   M /trunk/epan/dissectors/packet-gvrp.c
-   M /trunk/epan/dissectors/packet-h248.c
-   M /trunk/epan/dissectors/packet-h261.c
-   M /trunk/epan/dissectors/packet-h263.c
-   M /trunk/epan/dissectors/packet-hpext.c
-   M /trunk/epan/dissectors/packet-hpsw.c
-   M /trunk/epan/dissectors/packet-iapp.c
-   M /trunk/epan/dissectors/packet-iax2.c
-   M /trunk/epan/dissectors/packet-idp.c
-   M /trunk/epan/dissectors/packet-ieee80211.c
-   M /trunk/epan/dissectors/packet-ieee802a.c
-   M /trunk/epan/dissectors/packet-ip.c
-   M /trunk/epan/dissectors/packet-ipfc.c
-   M /trunk/epan/dissectors/packet-ipv6.c
-   M /trunk/epan/dissectors/packet-ipx.c
-   M /trunk/epan/dissectors/packet-isis-clv.c
-   M /trunk/epan/dissectors/packet-isis.c
-   M /trunk/epan/dissectors/packet-isl.c
-   M /trunk/epan/dissectors/packet-ismp.c
-   M /trunk/epan/dissectors/packet-isup.c
-   M /trunk/epan/dissectors/packet-iua.c
-   M /trunk/epan/dissectors/packet-juniper.c
-   M /trunk/epan/dissectors/packet-lapbether.c
-   M /trunk/epan/dissectors/packet-lapd.c
-   M /trunk/epan/dissectors/packet-llc.c
-   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-loop.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-mip6.c
-   M /trunk/epan/dissectors/packet-mpeg1.c
-   M /trunk/epan/dissectors/packet-mpls.c
-   M /trunk/epan/dissectors/packet-ndmp.c
-   M /trunk/epan/dissectors/packet-netbios.c
-   M /trunk/epan/dissectors/packet-nt-oui.c
-   M /trunk/epan/dissectors/packet-nt-sonmp.c
-   M /trunk/epan/dissectors/packet-null.c
-   M /trunk/epan/dissectors/packet-osi-options.c
-   M /trunk/epan/dissectors/packet-osi.c
-   M /trunk/epan/dissectors/packet-pagp.c
-   M /trunk/epan/dissectors/packet-pflog.c
-   M /trunk/epan/dissectors/packet-ppp.c
-   M /trunk/epan/dissectors/packet-pppoe.c
-   M /trunk/epan/dissectors/packet-q2931.c
-   M /trunk/epan/dissectors/packet-q931.c
-   M /trunk/epan/dissectors/packet-q933.c
-   M /trunk/epan/dissectors/packet-redback.c
-   M /trunk/epan/dissectors/packet-retix-bpdu.c
-   M /trunk/epan/dissectors/packet-rmp.c
-   M /trunk/epan/dissectors/packet-rpc.c
-   M /trunk/epan/dissectors/packet-rpl.c
-   M /trunk/epan/dissectors/packet-rsvp.c
-   M /trunk/epan/dissectors/packet-rtp.c
-   M /trunk/epan/dissectors/packet-sctp.c
-   M /trunk/epan/dissectors/packet-sdp.c
-   M /trunk/epan/dissectors/packet-sll.c
-   M /trunk/epan/dissectors/packet-slowprotocols.c
-   M /trunk/epan/dissectors/packet-smb-browse.c
-   M /trunk/epan/dissectors/packet-smb-mailslot.c
-   M /trunk/epan/dissectors/packet-smb-pipe.c
-   M /trunk/epan/dissectors/packet-smb-sidsnooping.c
-   M /trunk/epan/dissectors/packet-smb.c
-   M /trunk/epan/dissectors/packet-sna.c
-   M /trunk/epan/dissectors/packet-snaeth.c
-   M /trunk/epan/dissectors/packet-snmp.c
-   M /trunk/epan/dissectors/packet-sua.c
-   M /trunk/epan/dissectors/packet-symantec.c
-   M /trunk/epan/dissectors/packet-tcp.c
-   M /trunk/epan/dissectors/packet-teimanagement.c
-   M /trunk/epan/dissectors/packet-vines.c
-   M /trunk/epan/dissectors/packet-vj.c
-   M /trunk/epan/dissectors/packet-vlan.c
-   M /trunk/epan/dissectors/packet-wcp.c
-   M /trunk/epan/dissectors/packet-wfleet-hdlc.c
-   M /trunk/epan/dissectors/packet-windows-common.c
-   M /trunk/epan/dissectors/packet-x25.c
-   M /trunk/epan/dissectors/packet-x29.c
-   A /trunk/epan/etypes.h (from /trunk/etypes.h:15843)
-   A /trunk/epan/format-oid.h (from /trunk/format-oid.h:15843)
-   A /trunk/epan/greproto.h (from /trunk/greproto.h:15843)
-   A /trunk/epan/iax2_codec_type.h (from /trunk/iax2_codec_type.h:15843)
-   A /trunk/epan/ip_opts.h (from /trunk/ip_opts.h:15843)
-   A /trunk/epan/lapd_sapi.h (from /trunk/lapd_sapi.h:15843)
-   A /trunk/epan/llcsaps.h (from /trunk/llcsaps.h:15843)
-   A /trunk/epan/nlpid.h (from /trunk/nlpid.h:15843)
-   A /trunk/epan/oui.h (from /trunk/oui.h:15843)
-   A /trunk/epan/ppptypes.h (from /trunk/ppptypes.h:15843)
-   A /trunk/epan/rpc_defrag.h (from /trunk/rpc_defrag.h:15843)
-   A /trunk/epan/rtp_pt.h (from /trunk/rtp_pt.h:15843)
-   A /trunk/epan/sctpppids.h (from /trunk/sctpppids.h:15843)
-   A /trunk/epan/smb.h (from /trunk/smb.h:15843)
-   A /trunk/epan/x264_prt_id.h (from /trunk/x264_prt_id.h:15843)
-   D /trunk/etypes.h
-   D /trunk/format-oid.h
-   D /trunk/greproto.h
-   M /trunk/gtk/rtp_analysis.c
-   M /trunk/gtk/rtp_stream_dlg.c
-   M /trunk/gtk/smb_stat.c
-   M /trunk/gtk/tcp_graph.c
-   M /trunk/gtk/voip_calls.c
-   D /trunk/iax2_codec_type.h
-   D /trunk/ip_opts.h
-   D /trunk/lapd_sapi.h
-   D /trunk/llcsaps.h
-   D /trunk/nlpid.h
-   D /trunk/oui.h
-   M /trunk/plugins/megaco/packet-megaco.c
-   M /trunk/plugins/rdm/packet-rdm.c
-   M /trunk/plugins/rtnet/packet-rtnet.c
-   M /trunk/plugins/v5ua/packet-v5ua.c
-   D /trunk/ppptypes.h
-   D /trunk/rpc_defrag.h
-   D /trunk/rtp_pt.h
-   D /trunk/sctpppids.h
-   D /trunk/smb.h
-   M /trunk/tap-smbsids.c
-   M /trunk/tap-smbstat.c
-   D /trunk/x264_prt_id.h
+   M /trunk/epan/dissectors/packet-ldap.c
 
-Move a pile of protocol-related headers from the top-level source
-directory to the epan directory.  Some of them should perhaps ultimately
-be moved to epan/dissectors, if they pertain only to stuff exported by a
-particular dissector.
+Don't do anything to the filter string until we've successfully parsed
+the extensibleMatch.
 
-Fix Gerald's e-mail address in files we're moving.
+Make sure the filter string is always null-terminated, as we use
+"strlen()" to skip to the end of it.
 
-------------------------------------------------------------------------
-r15843 | ulfl | 2005-09-16 17:17:50 -0500 (Fri, 16 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-dcom-cba-acco.c
+On the (illegal, but not impossible) chance that we have more than one
+matching rule ID, attributeDescription, or matchValue, free any we
+already have before fetching a new one.
 
-add an expert info based on QualityCode and a COL_INFO output
 ------------------------------------------------------------------------
-r15842 | ulfl | 2005-09-16 17:14:33 -0500 (Fri, 16 Sep 2005) | 1 line
+r16608 | sahlberg | 2005-11-26 16:49:18 -0600 (Sat, 26 Nov 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-pn-rt.c
+   M /trunk/AUTHORS
+   M /trunk/epan/dissectors/packet-ppp.c
+
+from Martin M
+
+ppp chap updates
+
 
-slightly shrink COL_INFO output
 ------------------------------------------------------------------------
-r15841 | ulfl | 2005-09-16 17:05:50 -0500 (Fri, 16 Sep 2005) | 1 line
+r16607 | sahlberg | 2005-11-26 15:59:48 -0600 (Sat, 26 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc.c
+   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/epan/dissectors/packet-smb.h
+   M /trunk/epan/dissectors/packet-smb2.c
+
+add endoffile infolevel
+
 
-split call id's with a #, if more than one DCE/RPC call is in a data PDU
 ------------------------------------------------------------------------
-r15840 | gerald | 2005-09-16 11:25:53 -0500 (Fri, 16 Sep 2005) | 7 lines
+r16606 | sahlberg | 2005-11-26 15:44:37 -0600 (Sat, 26 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/Makefile.nmake
-   M /trunk/config.nmake
-   M /trunk/gtk/conversations_table.c
+   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/epan/dissectors/packet-smb.h
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Sort each conversation column numerically.  Fix up whitespace.
+more infolevels
 
-It looks like we can't put "COPYCMD=/Y" in config.nmake and expect nmake
-to do the right thing.  Add a comment, and set COPYCMD explicitly in the
-root Makefile.nmake.  The rest of the occurrences of xcopy will have to
-be taken care of at some point.
 
 ------------------------------------------------------------------------
-r15839 | tpot | 2005-09-16 07:30:33 -0500 (Fri, 16 Sep 2005) | 2 lines
+r16605 | sahlberg | 2005-11-26 15:09:53 -0600 (Sat, 26 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/Makefile.common
+   M /trunk/epan/dissectors/packet-smb2.c
+
+update setinfo response dissection
 
-Aargh - undo r15838 as I missed jmayer's commit of r15835.
 
 ------------------------------------------------------------------------
-r15838 | tpot | 2005-09-16 07:11:17 -0500 (Fri, 16 Sep 2005) | 4 lines
+r16604 | ulfl | 2005-11-26 05:57:54 -0600 (Sat, 26 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/Makefile.common
+   M /trunk/gtk/range_utils.c
 
-Comment out pidl dissectors for the moment to get the win32 build
-going again.  I have most of a patch to get it working but I don't
-think it will be finished tonight.
-
-------------------------------------------------------------------------
-r15837 | guy | 2005-09-16 04:47:18 -0500 (Fri, 16 Sep 2005) | 6 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-snmp.c
-
-If we've enabled the display of BER encapsulation tokens, only put them
-into the protocol tree once.
-
-Fix the offsets and lengths used to put the variable binding values into
-the protocol tree.
-
-------------------------------------------------------------------------
-r15836 | jmayer | 2005-09-16 04:31:05 -0500 (Fri, 16 Sep 2005) | 5 lines
-Changed paths:
-   A /trunk/tools/pidl
-   A /trunk/tools/pidl/Makefile.PL
-   A /trunk/tools/pidl/README
-   A /trunk/tools/pidl/README.ethereal
-   A /trunk/tools/pidl/TODO
-   A /trunk/tools/pidl/idl.yp
-   A /trunk/tools/pidl/lib
-   A /trunk/tools/pidl/lib/Parse
-   A /trunk/tools/pidl/lib/Parse/Pidl
-   A /trunk/tools/pidl/lib/Parse/Pidl/Compat.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Dump.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Ethereal
-   A /trunk/tools/pidl/lib/Parse/Pidl/Ethereal/Conformance.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Ethereal/NDR.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/IDL.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/NDR.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/ODL.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/COM
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/COM/Header.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/COM/Proxy.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/COM/Stub.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/EJS.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/EJSHeader.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/Header.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/NDR
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/NDR/Client.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/NDR/Parser.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/NDR/Server.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/SWIG.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/TDR.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Samba/Template.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Test.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Typelist.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl/Util.pm
-   A /trunk/tools/pidl/lib/Parse/Pidl.pm
-   A /trunk/tools/pidl/pidl
-   A /trunk/tools/pidl/pidl.1.xml
-   A /trunk/tools/pidl/pm_to_blib
-   A /trunk/tools/pidl/ref_notes.txt
-   A /trunk/tools/pidl/smb_interfaces.pm
-   A /trunk/tools/pidl/smb_interfaces.yp
-
-
-Add a local copy of pidl, add a README.ethereal to include
-minimalistic building and usage instructions.
-
-
-------------------------------------------------------------------------
-r15835 | jmayer | 2005-09-16 03:55:51 -0500 (Fri, 16 Sep 2005) | 6 lines
+fix #568: disable event "activate" handler for the range entry field. see the added comment for details
+------------------------------------------------------------------------
+r16603 | jmayer | 2005-11-26 04:05:14 -0600 (Sat, 26 Nov 2005) | 1 line
+Changed paths:
+   M /trunk/asn1/dap/Makefile
+   M /trunk/asn1/dap/dap-exp.cnf
+   M /trunk/asn1/dap/dap.asn
+   M /trunk/asn1/dap/dap.cnf
+   M /trunk/asn1/dap/packet-dap-template.c
+   M /trunk/asn1/dap/packet-dap-template.h
+   M /trunk/asn1/disp/Makefile
+   M /trunk/asn1/disp/disp.asn
+   M /trunk/asn1/disp/disp.cnf
+   M /trunk/asn1/disp/packet-disp-template.c
+   M /trunk/asn1/disp/packet-disp-template.h
+   M /trunk/asn1/dsp/Makefile
+   M /trunk/asn1/dsp/dsp-exp.cnf
+   M /trunk/asn1/dsp/dsp.asn
+   M /trunk/asn1/dsp/dsp.cnf
+   M /trunk/asn1/dsp/packet-dsp-template.c
+   M /trunk/asn1/dsp/packet-dsp-template.h
+   M /trunk/asn1/x501/Makefile
+   M /trunk/asn1/x501/packet-x501-template.c
+   M /trunk/asn1/x501/packet-x501-template.h
+   M /trunk/asn1/x501/x501-exp.cnf
+   M /trunk/asn1/x501/x501.asn
+   M /trunk/asn1/x501/x501.cnf
+   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-dsp.c
+   M /trunk/epan/dissectors/packet-dsp.h
+   M /trunk/epan/dissectors/packet-x501.c
+   M /trunk/epan/dissectors/packet-x501.h
+
+Porperties: replace executable by eol-style and keywords
+------------------------------------------------------------------------
+r16602 | guy | 2005-11-25 22:16:40 -0600 (Fri, 25 Nov 2005) | 13 lines
 Changed paths:
-   M /trunk/epan/dissectors/Makefile.common
-   A /trunk/epan/dissectors/packet-dcerpc-atsvc.c (from /trunk/epan/dissectors/pidl/packet-dcerpc-atsvc.c:15833)
-   A /trunk/epan/dissectors/packet-dcerpc-atsvc.h (from /trunk/epan/dissectors/pidl/packet-dcerpc-atsvc.h:15833)
-   A /trunk/epan/dissectors/packet-dcerpc-initshutdown.c (from /trunk/epan/dissectors/pidl/packet-dcerpc-initshutdown.c:15833)
-   A /trunk/epan/dissectors/packet-dcerpc-initshutdown.h (from /trunk/epan/dissectors/pidl/packet-dcerpc-initshutdown.h:15833)
-   A /trunk/epan/dissectors/packet-dcerpc-winreg.c (from /trunk/epan/dissectors/pidl/packet-dcerpc-winreg.c:15833)
-   A /trunk/epan/dissectors/packet-dcerpc-winreg.h (from /trunk/epan/dissectors/pidl/packet-dcerpc-winreg.h:15833)
+   M /trunk/epan/dissectors/packet-ber.c
+
+Fix typoes in comments.
 
+Update a comment, and get rid of a commented-out unused variable.
 
-Move the packet-dcerpc-*.[hc] from pidl/ back to dissectors.
-This makes Ethereal build again - there's no real reason that
-ethereal fails to build for such a long time on so many platforms.
+Use "get_ber_identifier()" and "get_ber_length()", rather than
+"dissect_ber_identifier()" and "dissect_ber_length()", if we're just
+fetching the values, rather than dissecting them.  As we're just
+fetching the values, if we get an error, put the identifer and length
+into the protocol tree (if we've enabled that) with
+"dissect_ber_identifier()" and "dissect_ber_length()".
 
+Properly declare class and tag variables as signed.
 
 ------------------------------------------------------------------------
-r15834 | jmayer | 2005-09-16 03:40:08 -0500 (Fri, 16 Sep 2005) | 5 lines
+r16601 | guy | 2005-11-25 21:09:40 -0600 (Fri, 25 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/manuf
-   M /trunk/wka.tmpl
+   M /trunk/asn1/tcap/packet-tcap-template.c
+   M /trunk/epan/dissectors/packet-tcap.c
+   M /trunk/epan/dissectors/packet-tcap.h
 
-wka.tmpl:
-        Show MS NLB Adresses individually
-manuf:
-        Update
+Get rid of unused global variables.
 
 ------------------------------------------------------------------------
-r15833 | guy | 2005-09-16 03:30:35 -0500 (Fri, 16 Sep 2005) | 3 lines
+r16600 | guy | 2005-11-25 21:08:17 -0600 (Fri, 25 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
+   M /trunk/epan/stats_tree.c
 
-Note problems with some values that appear in, for example, some SNMP
-captures.
+Get rid of unused function.
 
 ------------------------------------------------------------------------
-r15832 | guy | 2005-09-16 02:50:02 -0500 (Fri, 16 Sep 2005) | 2 lines
+r16599 | guy | 2005-11-25 21:06:25 -0600 (Fri, 25 Nov 2005) | 14 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-lldp.c
+   M /trunk/epan/dissectors/packet-rmt-norm.c
 
-Fix a type.
+Fix RFC number.
 
-------------------------------------------------------------------------
-r15831 | tpot | 2005-09-15 23:25:12 -0500 (Thu, 15 Sep 2005) | 2 lines
-Changed paths:
-   A /trunk/epan/dissectors/pidl/winreg.cnf
+Use "tvb_reported_length_remaining()" for all length checks and values,
+so we get the *actual* packet length, not the *captured* packet length
+(it's a *feature* if it reports a "packet cut short" error if the packet
+really *was* cut short by slicing).
+
+Set subtree lengths to -1, so that if an exception is throws while
+dissecting them, the length includes all the data.
+
+Get rid of unused variables, and mark unused parameters.
 
-Add conformance file used for building winreg dissector.
+In heuristic checks, give up if we don't have enough data to check.
 
 ------------------------------------------------------------------------
-r15830 | ulfl | 2005-09-15 19:02:31 -0500 (Thu, 15 Sep 2005) | 1 line
+r16598 | sahlberg | 2005-11-25 21:06:21 -0600 (Fri, 25 Nov 2005) | 5 lines
 Changed paths:
-   M /trunk/gtk/packet_list.c
+   M /trunk/epan/dissectors/packet-smb2.c
+
+many commands return a short 8 byte pdu when errors occur.
+make ethereal handle these better instead of showing them as unreassembled packet
+
+
 
-fixing the fix, it's time to go to bed ...
 ------------------------------------------------------------------------
-r15829 | ulfl | 2005-09-15 18:44:07 -0500 (Thu, 15 Sep 2005) | 1 line
+r16597 | ulfl | 2005-11-25 19:56:22 -0600 (Fri, 25 Nov 2005) | 5 lines
 Changed paths:
-   M /trunk/gtk/packet_list.c
+   M /trunk/gtk/print_dlg.c
 
-bugfix: don't crash (assert), if jumping to the first packet and packet_list is currently empty. Can happen at capture start.
-------------------------------------------------------------------------
-r15828 | guy | 2005-09-15 18:39:08 -0500 (Thu, 15 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/asn1/spnego/packet-spnego-template.c
-   M /trunk/epan/dissectors/packet-spnego.c
-   M /trunk/epan/dissectors/packet-spnego.h
+fix #358: instead of simply using tpmnam() for the Win32 print function, use the "official" function to create a temporary file
 
-Don't use u_char - not all platforms define it, and even those that do
-might require other files to be included to get it.
+Well, we actually only need the filename here, so create a temp file with the "official" create_tempfile function, keep that tempfile name and then delete this file again, leaving only the name.
 
+I know that's a bit uncommon, but should work and uses the same mechanisms as with other temporary files. So if there are still problems with the official function, we only have one place to fix :-)
 ------------------------------------------------------------------------
-r15827 | guy | 2005-09-15 18:17:42 -0500 (Thu, 15 Sep 2005) | 2 lines
+r16596 | sahlberg | 2005-11-25 18:34:22 -0600 (Fri, 25 Nov 2005) | 3 lines
 Changed paths:
-   A /trunk/asn1/spnego/Makefile
+   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/epan/dissectors/packet-smb.h
+   M /trunk/epan/dissectors/packet-smb2.c
+
+assume the four bytes after the fid in notify request is the completion mask
 
-Add a Makefile.
 
 ------------------------------------------------------------------------
-r15826 | lego | 2005-09-15 14:30:44 -0500 (Thu, 15 Sep 2005) | 4 lines
+r16595 | ulfl | 2005-11-25 17:54:19 -0600 (Fri, 25 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-alcap.c
-   M /trunk/epan/dissectors/packet-alcap.h
-
-Add more information regarding call legs.
-Make the release cause value filterable.
-
+   M /trunk/gtk/expert_comp_table.c
 
+fix a simple GTK1 warning
 ------------------------------------------------------------------------
-r15825 | lego | 2005-09-15 14:26:05 -0500 (Thu, 15 Sep 2005) | 3 lines
+r16594 | sahlberg | 2005-11-25 17:52:47 -0600 (Fri, 25 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/gtk/stats_tree_stat.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-leak fix
+add decoding of some more opcodes
 
 
 ------------------------------------------------------------------------
-r15824 | gerald | 2005-09-15 13:42:04 -0500 (Thu, 15 Sep 2005) | 2 lines
+r16593 | ulfl | 2005-11-25 17:42:52 -0600 (Fri, 25 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-fc.c
-
-Fix fragment length checks.  Fixes bugs 440 and 442-446.
+   M /trunk/epan/expert.c
+   M /trunk/epan/expert.h
+   M /trunk/gtk/Makefile.am
+   M /trunk/gtk/Makefile.common
+   A /trunk/gtk/expert_comp_dlg.c
+   A /trunk/gtk/expert_comp_table.c
+   A /trunk/gtk/expert_comp_table.h
 
+from Greg Morris:
+Composite Expert statistics, see: 
+http://www.ethereal.com/lists/ethereal-dev/200511/msg00002.html
+and the following discussions
 ------------------------------------------------------------------------
-r15823 | sahlberg | 2005-09-15 08:41:56 -0500 (Thu, 15 Sep 2005) | 3 lines
+r16592 | ulfl | 2005-11-25 16:38:02 -0600 (Fri, 25 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-vines.c
-
-remove some redundant strcpy()
+   M /trunk/capture_loop.c
+   M /trunk/tethereal.c
 
+rephrase the error dialog if an interface couldn't be opened.
 
+made the CaptureSetup wiki page more prominent
+added some "headings" so some of the help subtopics are easier for "human grep" IMHO
 ------------------------------------------------------------------------
-r15822 | sahlberg | 2005-09-15 08:36:31 -0500 (Thu, 15 Sep 2005) | 3 lines
+r16591 | ulfl | 2005-11-25 16:27:27 -0600 (Fri, 25 Nov 2005) | 8 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-isis-lsp.c
+   M /trunk/capture.c
+
+add some more help text to the "no packets captured" error dialog:
 
-remove some redundant strcpy()
+link to CaptureSetup wiki page
+Win32 only: wireless: "try switch off promicuous mode"
 
+This way we might get less user questions on the users-mailing list ...
 
+Especially the second one hopefully could save us from a lot of support mails :-)
 ------------------------------------------------------------------------
-r15821 | sahlberg | 2005-09-15 08:31:05 -0500 (Thu, 15 Sep 2005) | 3 lines
+r16590 | sahlberg | 2005-11-25 16:06:56 -0600 (Fri, 25 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ip.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-remove a whole bunch of strcpy()     fix minor bug where whe checked the wrong string before we display it
+add decoding of some more opcodes
 
 
 ------------------------------------------------------------------------
-r15820 | sahlberg | 2005-09-15 08:20:32 -0500 (Thu, 15 Sep 2005) | 3 lines
+r16589 | sahlberg | 2005-11-25 15:55:34 -0600 (Fri, 25 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/AUTHORS
-   M /trunk/epan/dissectors/packet-ospf.c
+   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-update for ospf from Senthil Kumar Nagappan
+from metze   and modified,   fix for in offset/length for transaction request
 
 
 ------------------------------------------------------------------------
-r15819 | sahlberg | 2005-09-15 05:20:08 -0500 (Thu, 15 Sep 2005) | 3 lines
+r16588 | etxrab | 2005-11-25 14:30:42 -0600 (Fri, 25 Nov 2005) | 2 lines
 Changed paths:
-   D /trunk/epan/dissectors/dcerpc/atsvc
-
-delete the old dissector
-
+   M /trunk/wiretap/Makefile.common
+   M /trunk/wiretap/file_access.c
+   A /trunk/wiretap/iseries.c
+   A /trunk/wiretap/iseries.h
+   M /trunk/wiretap/wtap-int.h
+   M /trunk/wiretap/wtap.h
 
+From Martin Warnes:
+Add Support for reading of IBM iSeries (AS/400) Comms traces
 ------------------------------------------------------------------------
-r15818 | sahlberg | 2005-09-15 05:19:25 -0500 (Thu, 15 Sep 2005) | 3 lines
+r16587 | etxrab | 2005-11-25 14:18:36 -0600 (Fri, 25 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/Makefile.common
-   D /trunk/epan/dissectors/packet-dcerpc-atsvc.c
-   D /trunk/epan/dissectors/packet-dcerpc-atsvc.h
-
-delete the old dissector and point the makefile to the new dissector
-
+   M /trunk/asn1/camel/camel.asn
+   M /trunk/asn1/camel/camel.cnf
+   M /trunk/asn1/camel/packet-camel-template.c
+   M /trunk/asn1/gsmmap/Makefile.nmake
+   M /trunk/asn1/gsmmap/gsmmap.cnf
+   M /trunk/epan/dissectors/packet-camel.c
+   M /trunk/epan/dissectors/packet-gsm_map.c
+   M /trunk/epan/dissectors/packet-gsm_map.h
 
+Update the Camel asn1 spec to 3GPP TS 29.078 version 6.4.0 and export needed stuff from gsmmap
 ------------------------------------------------------------------------
-r15817 | sahlberg | 2005-09-15 05:18:08 -0500 (Thu, 15 Sep 2005) | 3 lines
+r16586 | sahlberg | 2005-11-25 02:26:02 -0600 (Fri, 25 Nov 2005) | 3 lines
 Changed paths:
-   A /trunk/epan/dissectors/pidl/atsvc.cnf
-   A /trunk/epan/dissectors/pidl/atsvc.idl
-   A /trunk/epan/dissectors/pidl/packet-dcerpc-atsvc.c
-   A /trunk/epan/dissectors/pidl/packet-dcerpc-atsvc.h
+   M /trunk/epan/dissectors/packet-smb2.c
 
-new  pidl generated atsvc dissector and its conformance file
+add dissection of treedisconnect
 
 
 ------------------------------------------------------------------------
-r15816 | guy | 2005-09-15 04:09:00 -0500 (Thu, 15 Sep 2005) | 2 lines
+r16585 | sahlberg | 2005-11-25 02:02:40 -0600 (Fri, 25 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/value_string.c
+   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/epan/dissectors/packet-smb.h
+   M /trunk/epan/dissectors/packet-smb2.c
+
+add some more infolevels
 
-Get rid of a no-longer-used variable.
 
 ------------------------------------------------------------------------
-r15815 | guy | 2005-09-15 03:57:51 -0500 (Thu, 15 Sep 2005) | 6 lines
+r16584 | sahlberg | 2005-11-25 00:45:50 -0600 (Fri, 25 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-lldp.c
-   M /trunk/oui.h
-
-Move OUIs from LLDP dissector to oui.h.
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Get rid of remaining sprintf'ing into on-the-stack buffers.
+fix typo   it is one in buffer and one out buffer in transaction request   not two out buffers
 
-Note where some items came from.
 
 ------------------------------------------------------------------------
-r15814 | guy | 2005-09-15 03:55:43 -0500 (Thu, 15 Sep 2005) | 3 lines
+r16583 | sahlberg | 2005-11-25 00:30:47 -0600 (Fri, 25 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/value_string.c
+   M /trunk/epan/dissectors/packet-smb2.c
+
+transaction update
 
-Use ep_strdup_printf() to generate the "not found in value_string table"
-string for val_to_str().
 
 ------------------------------------------------------------------------
-r15813 | guy | 2005-09-15 03:54:56 -0500 (Thu, 15 Sep 2005) | 3 lines
+r16582 | etxrab | 2005-11-25 00:23:04 -0600 (Fri, 25 Nov 2005) | 6 lines
 Changed paths:
-   M /trunk/epan/emem.h
+   M /trunk/epan/dissectors/packet-pppoe.c
 
-Tag ep_strdup_printf() and se_strdup_printf() as printf-like functions,
-so we get compile-time checking of arguments when possible.
+From Martin Mathieson:
+Here is a patch to the PPPoED and PPPoES dissectors.
+- All fields are now filterable
+- General prettification
+- I've added a preference to PPoED to set whether or not tag values and data lengths should be shown in the tree (default is OFF)
 
 ------------------------------------------------------------------------
-r15812 | tpot | 2005-09-15 02:34:52 -0500 (Thu, 15 Sep 2005) | 7 lines
+r16581 | sahlberg | 2005-11-25 00:19:41 -0600 (Fri, 25 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/Makefile.common
-   D /trunk/epan/dissectors/packet-dcerpc-initshutdown.c
-   D /trunk/epan/dissectors/packet-dcerpc-initshutdown.h
-   D /trunk/epan/dissectors/packet-dcerpc-reg.c
-   D /trunk/epan/dissectors/packet-dcerpc-reg.h
-   M /trunk/epan/dissectors/packet-dcerpc-spoolss.c
-   A /trunk/epan/dissectors/pidl
-   A /trunk/epan/dissectors/pidl/README
-   A /trunk/epan/dissectors/pidl/initshutdown.idl
-   A /trunk/epan/dissectors/pidl/packet-dcerpc-initshutdown.c
-   A /trunk/epan/dissectors/pidl/packet-dcerpc-initshutdown.h
-   A /trunk/epan/dissectors/pidl/packet-dcerpc-winreg.c
-   A /trunk/epan/dissectors/pidl/packet-dcerpc-winreg.h
-   A /trunk/epan/dissectors/pidl/winreg.idl
-
-A first go at importing some pidl generated code into ethereal.  This 
-commit replaces the hand written dcerpc initshutdown and winreg 
-interfaces with autogenerated ones.  
-
-The pidl generated code is still a bit rought around the edges but will 
-hopefully improve with time.
-
-------------------------------------------------------------------------
-r15811 | guy | 2005-09-15 01:04:33 -0500 (Thu, 15 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/acinclude.m4
-   M /trunk/config.h.win32
-   M /trunk/configure.in
+   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/epan/dissectors/packet-smb.h
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Add PRIX64, as we now use it.
+add dissection of the smb2   impersionationlevel field
 
-------------------------------------------------------------------------
-r15810 | etxrab | 2005-09-15 00:38:37 -0500 (Thu, 15 Sep 2005) | 1 line
-Changed paths:
-   A /trunk/asn1/spnego
-   A /trunk/asn1/spnego/Makefile.nmake
-   A /trunk/asn1/spnego/packet-spnego-template.c
-   A /trunk/asn1/spnego/packet-spnego-template.h
-   A /trunk/asn1/spnego/spnego.asn
-   A /trunk/asn1/spnego/spnego.cnf
-   M /trunk/epan/dissectors/packet-spnego.c
-   A /trunk/epan/dissectors/packet-spnego.h
 
-Replace the spnego dissector with an asn2eth generated one.
 ------------------------------------------------------------------------
-r15809 | guy | 2005-09-15 00:22:20 -0500 (Thu, 15 Sep 2005) | 8 lines
+r16580 | sahlberg | 2005-11-25 00:04:11 -0600 (Fri, 25 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-lldp.c
-
-Rename TLV_INFO_MASK to TLV_INFO_LEN_MASK, to match TLV_TYPE_MASK.
+   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/epan/dissectors/packet-smb.h
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Use "tvb_format_stringzpad()" rather than "tvb_format_text()" on
-strings, as some of them are null-padded.  (XXX - are they null-padded
-or null-terminated?)
+some info level updates
 
-Clean up the TLV length checks, and do many more such checks.
 
 ------------------------------------------------------------------------
-r15808 | guy | 2005-09-14 23:08:53 -0500 (Wed, 14 Sep 2005) | 16 lines
+r16579 | sahlberg | 2005-11-24 23:41:00 -0600 (Thu, 24 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-lldp.c
-
-We already define ETHERTYPE_LLDP in "etypes.h" - use that, don't define
-our own.
-
-Get rid of MAC_to_str() - ether_to_str() suffices.
-
-Don't copy to on-the-stack fixed-size string buffers, just save the
-results of various formatting calls as pointers.
-
-Use tvb_format_text() to get displayable versions of text strings.
+   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/epan/dissectors/packet-smb.h
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Use tvb_get_ipv4() and tvb_get_ipv6().
+some info level updates
 
-Don't put an item into the protocol tree as text and then put in a
-hidden item that, if unhidden, would display the same or almost exactly
-the same; just put the item into the tree unhidden.
 
 ------------------------------------------------------------------------
-r15807 | guy | 2005-09-14 22:09:40 -0500 (Wed, 14 Sep 2005) | 22 lines
+r16578 | sahlberg | 2005-11-24 18:28:02 -0600 (Thu, 24 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-lldp.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Properly handle 64-bit integer constants (they don't happen by magic,
-and the stuff you have to do is compiler-dependent, so use
-G_GINT64_CONSTANT()).
+update the transaction code
 
-Properly handle formatting 64-bit quantities (they don't format
-correctly by magic, and the stuff you have to do is compiler-dependent,
-so use PRI[duoxX]64).
 
-Don't copy the result of tvb_bytes_to_str() to a string buffer and then
-only use it as an argument to a "%s" - just use the result directly. 
+------------------------------------------------------------------------
+r16577 | sahlberg | 2005-11-24 09:24:30 -0600 (Thu, 24 Nov 2005) | 2 lines
+Changed paths:
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Don't copy constant strings to a buffer - just use the strings directly.
+dissect some more of SMB2 Transaction command
 
-Fetch 64-bit integral quantities with tvb_get_ntoh64(); they're
-presumably in a standard byte order, which is probably big-endian for
-Internet-family protocols, and using tvb_memcpy() is *guaranteed* to be
-wrong on some platforms.
+------------------------------------------------------------------------
+r16576 | sahlberg | 2005-11-24 08:49:46 -0600 (Thu, 24 Nov 2005) | 3 lines
+Changed paths:
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Fix up a format string.
+dissect some of opcode 0x0b Transaction
 
-Fix up indentation a bit.
 
 ------------------------------------------------------------------------
-r15806 | guy | 2005-09-14 22:03:29 -0500 (Wed, 14 Sep 2005) | 2 lines
+r16575 | etxrab | 2005-11-23 23:55:18 -0600 (Wed, 23 Nov 2005) | 25 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-fcswils.c
+   M /trunk/epan/dissectors/ncp2222.py
+   M /trunk/epan/dissectors/packet-ncp-int.h
+   M /trunk/epan/dissectors/packet-ncp.c
+   M /trunk/epan/dissectors/packet-ncp2222.inc
 
-Squelch some warnings, fix some typoes.
+From Greg Morris:
+ncp2222.py.diff
+Fixed decoding of NCP 89,10 reply packet. Fixes malformed packet.
+packet-ncp.c.diff
+Adds NCP protocol preference options for enabling/disabling the echoing of data to the expert table.
+Expert: EID to Name Lookups
+Expert: NCP Connections
+Expert: NCP Errors
+Expert: Server Information
+packet-ncp2222.inc.diff
+Adds decoding of ZEN attribute values
+zendmSearchType
+zendmSearchOrder
+Fixes blank name stored in EID to Name table if tuned name was returned in resolve name reply packet
+Adds capability of reading hf values from NCP tree for exporting specific NCP info to expert table
+Adds support for new NCP protocol preference options
+Adds expert options for EID to Name Lookups, NCP connections, and Server Information
+Change nwconnection from 16bit value to 32bit
+Packet-ncp-int.h.diff
+Fix function prototypes to match new 32bit nwconnection
+Add global variables to allow for new NCP protocol preference options
 
 ------------------------------------------------------------------------
-r15805 | ulfl | 2005-09-14 18:15:12 -0500 (Wed, 14 Sep 2005) | 1 line
+r16574 | etxrab | 2005-11-23 15:32:07 -0600 (Wed, 23 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/tethereal.c
+   M /trunk/epan/dissectors/packet-tipc.c
 
-fix wtap_dump_flush function name and don't check for it's return value. We don't do this check in Ethereal either and we will recognize problems at next write anyway ...
+Pretify TIPC addr.
 ------------------------------------------------------------------------
-r15804 | ulfl | 2005-09-14 16:57:30 -0500 (Wed, 14 Sep 2005) | 11 lines
+r16573 | etxrab | 2005-11-23 15:27:39 -0600 (Wed, 23 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/capture_loop.c
-   M /trunk/editcap.c
-   M /trunk/file.c
-   M /trunk/file.h
-   M /trunk/gtk/file_dlg.c
-   M /trunk/mergecap.c
-   M /trunk/randpkt.c
-   M /trunk/ringbuffer.c
-   M /trunk/tethereal.c
-   M /trunk/wiretap/file_access.c
-   M /trunk/wiretap/libpcap.c
-   M /trunk/wiretap/wtap-int.h
-   M /trunk/wiretap/wtap.def
-   M /trunk/wiretap/wtap.h
-
-added compression support for capture file output. The Save/As dialog now has a checkbox "Compress with gzip"
-
-currently limited to Ethereal and all the variants of libpcap filetypes only.
-
-We might want to add output compression support to the other tools as well (tethereal, mergecap, ...).
-
-We might also want to add support for the other filetypes, but this is only possible if the filetype functions doesn't use special output operations like fseek.
-
-One bug is still left: if the input and output filetypes while saving are the same, Ethereal currently optimizes this by simply copy the binary file instead of using wiretap (so it will be faster but it will ignore the compress setting). 
+   M /trunk/epan/dissectors/packet-ncp-nmas.c
 
-Don't know a good workaround for this, as I don't know a way to find out if the input file is currently compressed or not. One idea might be to use a heuristic on the filesize (compared to the packet size summmary). Another workaround I see is to remove this optimization, which is of course not the way I like to do it ...
+From greg Morris:
+Fixes proper decoding of extended error 2 values
+Also adds a number of additional error codes/values
 ------------------------------------------------------------------------
-r15803 | ulfl | 2005-09-14 15:09:17 -0500 (Wed, 14 Sep 2005) | 1 line
+r16572 | etxrab | 2005-11-23 15:25:24 -0600 (Wed, 23 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc.c
+   M /trunk/epan/dissectors/packet-ndps.c
 
-add E_OUTOFMEMORY
+From Greg Morris:
+Fixes proper decoding of extended error 2 values
+Also adds a number of additional error codes/values
 ------------------------------------------------------------------------
-r15802 | etxrab | 2005-09-14 14:14:23 -0500 (Wed, 14 Sep 2005) | 4 lines
+r16571 | etxrab | 2005-11-23 15:17:58 -0600 (Wed, 23 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/proto.c
+   M /trunk/epan/dissectors/packet-srvloc.c
 
-From Peter Johansson
-I added a description for the call to DISSECTOR_ASSERT in proto.c to be 
-printed to stderr.
+From Greg Morris:
+This update adds info column data for srvloc request/reply to display SLP version and XID information.
+Also adds expert data for srvloc error conditions
+------------------------------------------------------------------------
+r16570 | kukosa | 2005-11-23 03:41:43 -0600 (Wed, 23 Nov 2005) | 1 line
+Changed paths:
+   M /trunk/epan/dissectors/Makefile.common
 
+fixed typo
 ------------------------------------------------------------------------
-r15801 | etxrab | 2005-09-14 14:11:23 -0500 (Wed, 14 Sep 2005) | 1 line
+r16569 | kukosa | 2005-11-23 01:47:22 -0600 (Wed, 23 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-snmp.c
+   M /trunk/epan/libethereal.def
 
-Fix a warning.
+export dissect_per_object_identifier_str() and dissect_ber_object_identifier_str() from libethereal
 ------------------------------------------------------------------------
-r15800 | etxrab | 2005-09-14 14:06:54 -0500 (Wed, 14 Sep 2005) | 2 lines
+r16568 | etxrab | 2005-11-23 01:38:42 -0600 (Wed, 23 Nov 2005) | 1 line
 Changed paths:
    M /trunk/AUTHORS
-   M /trunk/epan/dissectors/Makefile.common
-   A /trunk/epan/dissectors/packet-lldp.c
 
-From Brian Bogora:
-Our company (Mitel) has developed an LLDP-MED plug-in for Ethereal.
+Add Stig Bjørlykke as author of CDT (CompressedDataType) support 
 ------------------------------------------------------------------------
-r15799 | etxrab | 2005-09-14 13:40:16 -0500 (Wed, 14 Sep 2005) | 16 lines
+r16567 | etxrab | 2005-11-23 01:33:03 -0600 (Wed, 23 Nov 2005) | 11 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-fc.c
-   M /trunk/epan/dissectors/packet-fc.h
-   M /trunk/epan/dissectors/packet-fcct.c
-   M /trunk/epan/dissectors/packet-fcct.h
-   M /trunk/epan/dissectors/packet-fcswils.c
-   M /trunk/epan/dissectors/packet-fcswils.h
-   M /trunk/epan/dissectors/packet-mdshdr.c
-   M /trunk/epan/dissectors/packet-scsi.c
-
-From Dinesh G Dutt
+   M /trunk/epan/dissectors/Makefile.common
+   M /trunk/epan/dissectors/packet-p_mul.c
+   M /trunk/epan/dissectors/packet-x411.c
+   M /trunk/epan/dissectors/packet-x411.h
 
-Support some new messages and fix a couple of bugs.
+From Stig Bjørlykke
+Added a new dissector for CDT (CompressedDataType) as
+ defined in STANAG 4406 Annex E.  This dissector is used in P_Mul to  
+ decode encapsulated X.411 content.  I have added a function in the  
+ X.411 dissector to decode a MTS APDU without having a ROS
 
-packet-fc.h - Added a #define for a Cisco MDS-specific frame called OHMS (online health mgmt srv) packet-fc.c - Support for OHMS frame, fixed an incorrect "malformed frame" error caused on ACK1 frames (they
-                   don't contain anything but (encap hdr + FC hdr + encap trailer), fixed incorrect detection of
-                   last-data-frame
+ Changes in this patch:
+ * Added CDT dissector
+ * Use CDT dissector in P_Mul
+ * Added function to decode MTS APDU in the X.411 dissector
 
-packet-fcct.h - Support for new service type, "Fabric Controller", used in conjunction with FC-SW3 ESS message,
-                     exported the service name value string definitions and  
-packet-fcct.c - Support for recognizing "Fabric Controller" service type and "vendor-specific" service
+------------------------------------------------------------------------
+r16566 | etxrab | 2005-11-23 01:32:24 -0600 (Wed, 23 Nov 2005) | 11 lines
+Changed paths:
+   A /trunk/epan/dissectors/packet-cdt.c
+   A /trunk/epan/dissectors/packet-cdt.h
 
-packet-fcswils.h - Support for ESS & MRRA messages, defined as part of FC-SW3 packet-fcswils.c - Support for ESS & MRRA messages, defined as part of FC-SW3
+From Stig Bjørlykke
+Added a new dissector for CDT (CompressedDataType) as
+ defined in STANAG 4406 Annex E.  This dissector is used in P_Mul to  
+ decode encapsulated X.411 content.  I have added a function in the  
+ X.411 dissector to decode a MTS APDU without having a ROS
 
-packet-scsi.c - Support for Verify and Write&Verify SBC commands.
+ Changes in this patch:
+ * Added CDT dissector
+ * Use CDT dissector in P_Mul
+ * Added function to decode MTS APDU in the X.411 dissector
 
 ------------------------------------------------------------------------
-r15798 | etxrab | 2005-09-14 12:08:41 -0500 (Wed, 14 Sep 2005) | 1 line
+r16565 | etxrab | 2005-11-23 01:29:45 -0600 (Wed, 23 Nov 2005) | 11 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-snmp.c
+   M /trunk/asn1/x411/packet-x411-template.c
+   M /trunk/asn1/x411/packet-x411-template.h
 
-Do the variable binding with dissect_ber_x() routines rather than asn1 ones.
-------------------------------------------------------------------------
-r15797 | etxrab | 2005-09-14 12:04:36 -0500 (Wed, 14 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
+From Stig Bjørlykke
+Added a new dissector for CDT (CompressedDataType) as
+ defined in STANAG 4406 Annex E.  This dissector is used in P_Mul to  
+ decode encapsulated X.411 content.  I have added a function in the  
+ X.411 dissector to decode a MTS APDU without having a ROS
+
+ Changes in this patch:
+ * Added CDT dissector
+ * Use CDT dissector in P_Mul
+ * Added function to decode MTS APDU in the X.411 dissector
 
-Dont't carsh if dissect_ber_null() isn't passed a hf_id.
 ------------------------------------------------------------------------
-r15796 | sahlberg | 2005-09-14 11:06:11 -0500 (Wed, 14 Sep 2005) | 3 lines
+r16564 | etxrab | 2005-11-23 01:24:18 -0600 (Wed, 23 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc.c
-
-Allow dissection of dcerpc of short frames   instead of aborting as soon as it is detected the pdu is "short"
-
+   A /trunk/asn1/cdt
+   A /trunk/asn1/cdt/Makefile
+   A /trunk/asn1/cdt/Makefile.nmake
+   A /trunk/asn1/cdt/cdt-exp.cnf
+   A /trunk/asn1/cdt/cdt.asn
+   A /trunk/asn1/cdt/cdt.cnf
+   A /trunk/asn1/cdt/packet-cdt-template.c
+   A /trunk/asn1/cdt/packet-cdt-template.h
 
+Add cdt
 ------------------------------------------------------------------------
-r15795 | sahlberg | 2005-09-14 11:04:59 -0500 (Wed, 14 Sep 2005) | 3 lines
+r16563 | guy | 2005-11-22 18:53:37 -0600 (Tue, 22 Nov 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
+   M /trunk/AUTHORS
 
-for octet strings that span beyond the end of a "short" tvb,   create a new subset tvb of what we have and use that  instead of bailing out completely.
+Fix a couple of mangled UTF-8 names.
 
+"cfs 2895" was a typo - combine the two entries for cjs2895 [AT]
+hotmail.com.
 
 ------------------------------------------------------------------------
-r15794 | sahlberg | 2005-09-14 11:02:54 -0500 (Wed, 14 Sep 2005) | 4 lines
+r16562 | etxrab | 2005-11-22 15:48:10 -0600 (Tue, 22 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-spnego.c
-
-when we have raw keberos inside the spnego blob,   pass it as is over to
-the kerberos dissector  and do not strip the ber tag and lengths off
-
+   M /trunk/epan/dissectors/Makefile.common
+   A /trunk/epan/dissectors/packet-tipc.c
 
+Add dissection of Transparent Inter Process Communication (TIPC). 
 ------------------------------------------------------------------------
-r15793 | guy | 2005-09-14 03:59:41 -0500 (Wed, 14 Sep 2005) | 4 lines
+r16561 | jmayer | 2005-11-22 06:51:14 -0600 (Tue, 22 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/file.c
-   M /trunk/file.h
-   M /trunk/gtk/afp_stat.c
-   M /trunk/gtk/bootp_stat.c
-   M /trunk/gtk/conversations_table.c
-   M /trunk/gtk/dcerpc_stat.c
-   M /trunk/gtk/expert_dlg.c
-   M /trunk/gtk/fc_stat.c
-   M /trunk/gtk/flow_graph.c
-   M /trunk/gtk/h225_counter.c
-   M /trunk/gtk/h225_ras_srt.c
-   M /trunk/gtk/hostlist_table.c
-   M /trunk/gtk/io_stat.c
-   M /trunk/gtk/ldap_stat.c
-   M /trunk/gtk/mgcp_stat.c
-   M /trunk/gtk/rpc_progs.c
-   M /trunk/gtk/rpc_stat.c
-   M /trunk/gtk/rtp_analysis.c
-   M /trunk/gtk/rtp_stream.c
-   M /trunk/gtk/sctp_assoc_analyse.c
-   M /trunk/gtk/sctp_chunk_stat.c
-   M /trunk/gtk/sctp_chunk_stat_dlg.c
-   M /trunk/gtk/sctp_stat_dlg.c
-   M /trunk/gtk/sip_stat.c
-   M /trunk/gtk/smb_stat.c
-   M /trunk/gtk/stats_tree_stat.c
-   M /trunk/gtk/tcp_graph.c
+   M /trunk/asn1/h245/packet-h245-template.h
+   M /trunk/asn1/h248/packet-h248-template.h
+   M /trunk/asn1/x509if/packet-x509if-template.c
+   M /trunk/asn1/x509if/packet-x509if-template.h
+   M /trunk/epan/dissectors/packet-cmp.c
+   M /trunk/epan/dissectors/packet-dcerpc-nt.c
+   M /trunk/epan/dissectors/packet-dcp.c
+   M /trunk/epan/dissectors/packet-giop.c
+   M /trunk/epan/dissectors/packet-gnm.c
+   M /trunk/epan/dissectors/packet-h245.c
+   M /trunk/epan/dissectors/packet-h245.h
+   M /trunk/epan/dissectors/packet-h248.h
+   M /trunk/epan/dissectors/packet-iuup.c
+   M /trunk/epan/dissectors/packet-kerberos.c
+   M /trunk/epan/dissectors/packet-pres.c
+   M /trunk/epan/dissectors/packet-pvfs2.c
+   M /trunk/epan/dissectors/packet-rmt-norm.c
+   M /trunk/epan/dissectors/packet-rmt-norm.h
+   M /trunk/epan/dissectors/packet-x509if.c
+   M /trunk/epan/dissectors/packet-x509if.h
+   M /trunk/epan/dissectors/packet-xml.c
+   M /trunk/epan/tvbparse.c
    M /trunk/gtk/voip_calls_dlg.c
-   M /trunk/gtk/wsp_stat.c
-
-Have cf_retap_packets() take an argument that indicates whether to
-generate columns; use cf_retap_packets instead of cf_redissect_packets()
-when running taps (the general flow graph stat uses the Info column).
+   M /trunk/plugins/h223/packet-h223.c
+   M /trunk/plugins/h223/packet-srp.c
 
+Trivial warning fixes
 ------------------------------------------------------------------------
-r15792 | ulfl | 2005-09-13 21:07:20 -0500 (Tue, 13 Sep 2005) | 3 lines
+r16560 | sharpe | 2005-11-22 00:36:06 -0600 (Tue, 22 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/docbook/eug_src/EUG_chapter_build_install.xml
-   M /trunk/packaging/nsis/ethereal.nsi
+   M /trunk/epan/dissectors/packet-ldap.c
+
+
+Remove unnecessary code to add NULLs to strings obtained with ASN1_STRING_VALUE_DECODE, as they are already there.
 
-fix #388: add /desktopicon and /quicklaunchicon command line options to the NSIS installer
 
-update the User's Guide accordingly
 ------------------------------------------------------------------------
-r15791 | ulfl | 2005-09-13 18:46:42 -0500 (Tue, 13 Sep 2005) | 7 lines
+r16559 | sharpe | 2005-11-21 21:55:02 -0600 (Mon, 21 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/gtk/expert_dlg.c
+   M /trunk/epan/dissectors/packet-ldap.c
 
-Move "Expert Info" from "Statistics" to "Analyze" menu item.
 
-*significantly* improve performance (100000 infos from ~5min to 25sec!)
+Remove a comment that says we don't support extensibleMatch, because we now do. Also, remove an unused static.
 
-Add a simple severity based filter mechanism.
 
-replace // style comments by /**/
 ------------------------------------------------------------------------
-r15790 | ulfl | 2005-09-13 14:01:08 -0500 (Tue, 13 Sep 2005) | 5 lines
+r16558 | sharpe | 2005-11-21 20:19:52 -0600 (Mon, 21 Nov 2005) | 6 lines
 Changed paths:
-   M /trunk/config.nmake
+   M /trunk/epan/dissectors/packet-ldap.c
+
 
-Turn around the sequence of PATH, so the former PATH will be in front of the newly added things.
+A first pass at providing a dissector for extensibleMatch filters.
+
+More work to come on the whole filters shtick and more clean-up required here.
 
-This way, the cygwin link.exe command will be behind the link.exe from MSVC.
 
-Also added a definition of the docbook dir, floating around in my personal file for a while. This will be needed if the User's Guide is included in the NSIS installer later.
 ------------------------------------------------------------------------
-r15789 | gerald | 2005-09-13 14:01:01 -0500 (Tue, 13 Sep 2005) | 6 lines
+r16557 | sahlberg | 2005-11-21 14:37:43 -0600 (Mon, 21 Nov 2005) | 5 lines
 Changed paths:
-   M /trunk/docbook/release-notes.xml
-   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-In smb_trans_defragment(), throw an exception if we encounter a too-large
-fragment size.  The limit is conservatively set at 65536 bytes.  It may
-have to be increased.  Fixes bug 421.
+from Metze
+generalize the offset/length/buffer   handling
+and make some code much nicer
 
-Add an entry to the release notes.
 
 ------------------------------------------------------------------------
-r15788 | ulfl | 2005-09-13 13:45:52 -0500 (Tue, 13 Sep 2005) | 1 line
+r16556 | etxrab | 2005-11-21 13:01:52 -0600 (Mon, 21 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/gtk/menu.c
-   M /trunk/stat_menu.h
+   M /trunk/epan/dissectors/packet-ethertype.c
 
-implement a way to add menu items to the "Analyze" menu
+Add ethertype for TIPC
 ------------------------------------------------------------------------
-r15787 | ulfl | 2005-09-13 13:42:12 -0500 (Tue, 13 Sep 2005) | 1 line
+r16555 | etxrab | 2005-11-21 13:01:07 -0600 (Mon, 21 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/gtk/decode_as_dcerpc.c
+   M /trunk/epan/etypes.h
 
-don't crash with a NULL pointer exception, if "do not decode as" is used
+Add ethertype for TIPC
 ------------------------------------------------------------------------
-r15786 | ulfl | 2005-09-13 13:40:58 -0500 (Tue, 13 Sep 2005) | 1 line
+r16554 | guy | 2005-11-19 22:34:58 -0600 (Sat, 19 Nov 2005) | 7 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-frame.c
+   M /trunk/asn1/pres/packet-pres-template.c
+   M /trunk/epan/dissectors/packet-pres.c
 
-add to the protocol item a short description what a "Short Frame" is
-------------------------------------------------------------------------
-r15785 | ulfl | 2005-09-13 13:39:26 -0500 (Tue, 13 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-dcom-remunkn.c
+When registering a context ID and OID, set the OID to NULL if we don't
+have an OID to register.
+
+If our table of context identifiers and OIDs is to keep that association
+on a per-conversation basis, it should use conversations, not
+address/port, as we aren't necessarily running over TCP or UDP.
 
-increment index of IID's in COL_INFO
 ------------------------------------------------------------------------
-r15784 | ulfl | 2005-09-13 13:38:19 -0500 (Tue, 13 Sep 2005) | 1 line
+r16553 | sahlberg | 2005-11-19 20:48:26 -0600 (Sat, 19 Nov 2005) | 6 lines
 Changed paths:
-   M /trunk/gtk/flow_graph.c
+   M /trunk/asn1/pres/packet-pres-template.c
+   M /trunk/asn1/pres/pres.cnf
+   M /trunk/epan/dissectors/packet-pres.c
+   M /trunk/epan/dissectors/packet-pres.h
+
+if the packet is mangled   the oid string might be NULL.
+
+dont try to register a NULL oid
+
+
 
-use the same name for menu item and dialog box title, use the right capitalization for both
 ------------------------------------------------------------------------
-r15783 | etxrab | 2005-09-13 11:56:28 -0500 (Tue, 13 Sep 2005) | 1 line
+r16552 | etxrab | 2005-11-19 09:59:30 -0600 (Sat, 19 Nov 2005) | 1 line
 Changed paths:
    M /trunk/epan/dissectors/packet-diameter.c
 
-Get application ID from the packet.
+Use VendorID from sminmpec.
 ------------------------------------------------------------------------
-r15782 | etxrab | 2005-09-13 11:48:13 -0500 (Tue, 13 Sep 2005) | 5 lines
+r16551 | etxrab | 2005-11-19 09:58:16 -0600 (Sat, 19 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/config.nmake
+   M /trunk/diameter/dictionary.xml
+   M /trunk/diameter/mobileipv4.xml
+   M /trunk/diameter/nasreq.xml
 
-From Peter Johansson
-PATH contents one had before starting the  build, that PATH is added to the new PATH variable 5 additional times 
-instead of 1.
-I have made changes (supplied) to config.nmake that takes care of this 
-problem.
+Use the correct Application Id:s fix a typo.
 ------------------------------------------------------------------------
-r15781 | ulfl | 2005-09-13 03:03:16 -0500 (Tue, 13 Sep 2005) | 1 line
+r16550 | sahlberg | 2005-11-19 04:27:16 -0600 (Sat, 19 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-frame.c
+   M /trunk/epan/dissectors/packet-smb.c
+
+fix for bug 570,   the domain name is present in sessionsetupandx replies even for wc==4
 
-don't simply remove the expert_info output at BoundsError, but add the comment from Guy why this (usually) isn't a bug (because of a short snapshot length).
 ------------------------------------------------------------------------
-r15780 | etxrab | 2005-09-13 00:05:19 -0500 (Tue, 13 Sep 2005) | 2 lines
+r16549 | sahlberg | 2005-11-19 04:03:16 -0600 (Sat, 19 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ieee80211.c
+   M /trunk/epan/dissectors/packet-smb2.c
+
+fix bug 588 and friends
+
 
-From Ankur Aggarwal:
-First phase of testing revealed the following errors
 ------------------------------------------------------------------------
-r15779 | etxrab | 2005-09-13 00:00:17 -0500 (Tue, 13 Sep 2005) | 3 lines
+r16548 | sahlberg | 2005-11-18 21:19:56 -0600 (Fri, 18 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-winsrepl.c
+   M /trunk/epan/dissectors/packet-smb2.c
+
+the 4 bytes in MxAc   are access maxk   not file attributes
 
-From Stefan Metzmacher
-Some updates to the winsrepl-dssector to add COL_INFO strings...
 
 ------------------------------------------------------------------------
-r15778 | etxrab | 2005-09-12 23:53:36 -0500 (Mon, 12 Sep 2005) | 2 lines
+r16547 | sahlberg | 2005-11-18 21:15:39 -0600 (Fri, 18 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/gtk/graph_analysis.c
-   M /trunk/gtk/graph_analysis.h
+   M /trunk/epan/dissectors/packet-smb2.c
+
+prettification
 
-From Alejandro Vaquero.
 
 ------------------------------------------------------------------------
-r15777 | etxrab | 2005-09-12 23:51:49 -0500 (Mon, 12 Sep 2005) | 2 lines
+r16546 | sahlberg | 2005-11-18 20:24:22 -0600 (Fri, 18 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/AUTHORS
-   M /trunk/epan/dissectors/Makefile.common
-   A /trunk/epan/dissectors/packet-cimd.c
-   A /trunk/epan/dissectors/packet-cimd.h
+   M /trunk/epan/dissectors/packet-smb2.c
+
+decode the extra blob at the end of Create calls
+
 
-From Piros Lucian:
-A new dissector - cimd dissector. CIMD stands for Computer Interface to Message Distribution and it's used to transfer short messages between applications and Nokia Short Message Service Center.
 ------------------------------------------------------------------------
-r15776 | guy | 2005-09-12 23:00:47 -0500 (Mon, 12 Sep 2005) | 12 lines
+r16545 | sahlberg | 2005-11-18 15:59:05 -0600 (Fri, 18 Nov 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/Makefile.common
-   M /trunk/epan/column-utils.h
-   M /trunk/epan/dissectors/packet-frame.c
-   M /trunk/epan/expert.h
-   A /trunk/epan/gnuc_format_check.h
-   M /trunk/epan/proto.h
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Move the definition of GNUC_FORMAT_CHECK() to its own header, use it in
-column-utils.h, and add it to expert.h, so we check the arguments to
-"expert_add_info_format()", at least if the format argument is a
-constant string.
+update to SMB2_FILE_ALL_INFO dissection
 
-Fix some more calls to "expert_add_info_format()" to pass it a format
-string.
+prettify dissection of some strings
 
-Don't record BoundsError exceptions as expert events - they merely
-reflect a capture done with a snapshot length too short to capture all
-of the packet (any case where it's caused by something else is a bug).
 
 ------------------------------------------------------------------------
-r15775 | guy | 2005-09-12 21:39:37 -0500 (Mon, 12 Sep 2005) | 5 lines
+r16544 | guy | 2005-11-18 04:06:47 -0600 (Fri, 18 Nov 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-http.c
+   M /trunk/epan/dissectors/packet-ber.c
 
-Don't pass an arbitrary string from a packet to a routine expecting a
-format string - the arbitrary string might contain "%" characters, so
-the routine might then fetch arbitrary junk and try to use it as, for
-example, a string pointer.
+Don't crash if a null OID pointer is passed to
+"call_ber_oid_callback()".  (Arguably, the caller of
+"call_ber_oid_callback()" should check for that, and report that a
+presumably-required field is missing.)
 
 ------------------------------------------------------------------------
-r15774 | guy | 2005-09-12 19:50:43 -0500 (Mon, 12 Sep 2005) | 8 lines
+r16543 | sahlberg | 2005-11-18 01:31:18 -0600 (Fri, 18 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-bgp.c
-   M /trunk/epan/dissectors/packet-bgp.h
-   M /trunk/epan/dissectors/packet-bootp.c
-   M /trunk/epan/dissectors/packet-icmpv6.c
-   M /trunk/epan/dissectors/packet-radius.c
-
-Convert some more "tvb_memcpy()"s fetching IPv4 and IPv6 addresses to
-calls to "tvb_get_ipv4()" and "tvb_get_ipv6()".
+   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/epan/dissectors/packet-smb.h
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Fix a call in the BGP dissector to properly fetch an IEEE floating-point
-number.
+dissect some more infolevels
 
-Update some I-D info.
 
 ------------------------------------------------------------------------
-r15773 | guy | 2005-09-12 16:01:25 -0500 (Mon, 12 Sep 2005) | 3 lines
+r16542 | guy | 2005-11-18 00:12:17 -0600 (Fri, 18 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/epan
+   M /trunk/doc/tethereal.pod
+   M /trunk/tethereal.c
 
-Ignore files generated from dtd_grammar.lemon, dtd_parse.l, and
-dtd_preparse.l.
+Add support for the "-B" flag to Tethereal on Windows.
 
 ------------------------------------------------------------------------
-r15772 | ulfl | 2005-09-12 15:10:44 -0500 (Mon, 12 Sep 2005) | 7 lines
+r16541 | guy | 2005-11-17 18:34:11 -0600 (Thu, 17 Nov 2005) | 12 lines
 Changed paths:
-   M /trunk/gtk/packet_list.c
+   M /trunk/capture_sync.c
+
+Make the message length in the sync pipe message header 3 bytes of
+binary data, so the maximum message length can be up to 2^24-1.
 
-When jumping (e.g. using menu item Go/Go to Packet...) to a new packet which is currently not displayed, this newly selected packet will become the first in the packet list.
+Add a #define for that message size, and have it be 4096, for now, as
+that was the size of the buffer used to read sync pipe messages.
 
-This is inconvenient, as most of the time (at least) I'm interested not only in the packets behind the newly selected one, but also to have some history *before* it.
+Clean up white space.
 
-So this change will scroll the packet list to have the selected packet after the first third of the packet list.
+When displaying an error message from the capture child, don't use it as
+a format string - it could conceivably contain "%"s.  Instead, format it
+with "%s".
 
-This change won't take effect if the new packet is already visible (only the selection is changed) or it's near the beginning or end of the packet list (so the whole beginning/end of the list is shown).
 ------------------------------------------------------------------------
-r15771 | ulfl | 2005-09-12 15:02:58 -0500 (Mon, 12 Sep 2005) | 1 line
+r16540 | guy | 2005-11-17 17:50:08 -0600 (Thu, 17 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc.c
+   M /trunk/epan/sha1.c
+
+The fopen() is used only if you build this as a stand-alone SHA-1 test
+program, not as a library routine; just leave it as fopen(), to simplify
+the build process.
 
-add number of defragmented bytes to the expert info output
 ------------------------------------------------------------------------
-r15770 | guy | 2005-09-12 14:50:45 -0500 (Mon, 12 Sep 2005) | 5 lines
+r16539 | sahlberg | 2005-11-17 16:30:19 -0600 (Thu, 17 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/Makefile.am
-   M /trunk/epan/Makefile.nmake
+   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/epan/dissectors/packet-smb.h
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Get rid of "dtd_grammar.out" on a "make distclean".
+add dissection of more infolevels for smb2
 
-Get rid of all the Flex-generated (and Lemon-generated) files on a
-"nmake -f Makefile.nmake distclean".
 
 ------------------------------------------------------------------------
-r15769 | guy | 2005-09-12 14:32:35 -0500 (Mon, 12 Sep 2005) | 3 lines
+r16538 | sahlberg | 2005-11-17 08:22:11 -0600 (Thu, 17 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/Makefile.common
-   M /trunk/epan/dtd_grammar.lemon
-   A /trunk/epan/dtd_parse.h
-   M /trunk/epan/dtd_parse.l
+   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/epan/dissectors/packet-smb.h
+   M /trunk/epan/dissectors/packet-smb2.c
+
+add dissection of fs_[objectid|full_size]_info
 
-Add a header file to declare routines defined in lexer and used in
-parser, or vice versa.
 
 ------------------------------------------------------------------------
-r15768 | guy | 2005-09-12 10:54:20 -0500 (Mon, 12 Sep 2005) | 2 lines
+r16537 | sahlberg | 2005-11-17 08:00:07 -0600 (Thu, 17 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dtd_grammar.lemon
+   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/epan/dissectors/packet-smb.h
+   M /trunk/epan/dissectors/packet-smb2.c
+
+ add dissection of fs quota info
 
-Again, "g_strdown()" doesn't return a value in GLib 1.2[.x].
 
 ------------------------------------------------------------------------
-r15767 | guy | 2005-09-12 02:55:14 -0500 (Mon, 12 Sep 2005) | 3 lines
+r16536 | sahlberg | 2005-11-17 07:43:22 -0600 (Thu, 17 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-xml.c
+   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/epan/dissectors/packet-smb.h
+   M /trunk/epan/dissectors/packet-smb2.c
+
+add full dissection of fs_[volume|size|device|atrtibute]_info
 
-"g_strdown()" doesn't return a value in GLib 1.2[.x]; don't depend on it
-doing so.
 
 ------------------------------------------------------------------------
-r15766 | guy | 2005-09-12 02:44:11 -0500 (Mon, 12 Sep 2005) | 18 lines
+r16535 | sahlberg | 2005-11-17 06:30:36 -0600 (Thu, 17 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-arp.c
-   M /trunk/epan/dissectors/packet-isup.c
-   M /trunk/epan/osi-utils.c
+   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/epan/dissectors/packet-smb.h
+   M /trunk/epan/dissectors/packet-smb2.c
 
-The previous checkin for packet-isup.c was accidentally checked in along
-with some unrelated changes; it got rid of some calls to get IPv4/IPv6
-addresses and add them to the protocol tree, replacing them with
-proto_tree_add_item() calls, and fixed up the length of one protocol
-tree item.
+add dissection of the security descriptor mask
 
-Note that we have (at least) three count 'em three different routines
-for dissecting/displaying NSAPs (there might be more - I might have
-missed some), and suggest that we might want to reduce that to one.
 
-Update the URL for ICP values for IPv{4,6} addresses inside NSAPs.
+------------------------------------------------------------------------
+r16534 | guy | 2005-11-17 05:50:36 -0600 (Thu, 17 Nov 2005) | 8 lines
+Changed paths:
+   M /trunk/asn1/cms/packet-cms-template.c
+   M /trunk/epan/dissectors/packet-cms.c
+   M /trunk/epan/dissectors/packet-cms.h
+
+The SHA-1 routines now take const pointers; don't cast away constness.
 
-Fix the offset in the call to add the IPv6 address part of an NSAP
-containing such an address, and the length in the call adding the DSP
-for an NSAP containing an IPv4 address.
+tvb_get_ptr() returns a "const guint8 *"; don't bother casting its
+return value to "const guint8 *".
 
-Fix up indentation a bit.
+"cms_verify_msg_digest()" can be passed a const pointer for "alg"; make
+its argument a "const char *".
 
 ------------------------------------------------------------------------
-r15765 | tuexen | 2005-09-12 01:24:02 -0500 (Mon, 12 Sep 2005) | 8 lines
+r16533 | guy | 2005-11-17 05:48:30 -0600 (Thu, 17 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-sctp.c
-
-In now supports also:
-  - http://www.ietf.org/internet-drafts/draft-ietf-tsvwg-sctpimpguide-15.txt
-  - http://www.ietf.org/internet-drafts/draft-ietf-tsvwg-addip-sctp-13.txt
-  - http://www.ietf.org/internet-drafts/draft-stewart-sctp-pktdrprep-02.txt
-  - http://www.ietf.org/internet-drafts/draft-ietf-tsvwg-sctp-auth-01.txt
-  - http://www.ietf.org/internet-drafts/draft-ladha-sctp-nonce-02.txt
+   M /trunk/epan/sha1.c
+   M /trunk/epan/sha1.h
 
+Constify arguments.
 
 ------------------------------------------------------------------------
-r15764 | guy | 2005-09-12 01:21:35 -0500 (Mon, 12 Sep 2005) | 3 lines
+r16532 | guy | 2005-11-17 05:16:37 -0600 (Thu, 17 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/addr_and_mask.c
-   M /trunk/epan/addr_resolv.c
-   M /trunk/epan/dissectors/packet-bgp.c
-   M /trunk/epan/dissectors/packet-dns.c
-   M /trunk/epan/dissectors/packet-ipv6.c
-   M /trunk/epan/dissectors/packet-isis-lsp.c
-   M /trunk/epan/dissectors/packet-isup.c
-   M /trunk/epan/ipv6-utils.h
+   M /trunk/asn1/x509af/packet-x509af-template.c
+   M /trunk/asn1/x509af/packet-x509af-template.h
+   M /trunk/epan/dissectors/packet-x509af.c
+   M /trunk/epan/dissectors/packet-x509af.h
 
-Don't collide with the "regular" IPv6 defintions in at least some
-platforms in ipv6-utils.h.
+Get rid of some char * vs. const char * warnings, and declare a function
+with no arguments as such.
 
 ------------------------------------------------------------------------
-r15763 | ulfl | 2005-09-11 19:29:19 -0500 (Sun, 11 Sep 2005) | 3 lines
+r16531 | guy | 2005-11-17 05:15:26 -0600 (Thu, 17 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc.c
+   M /trunk/epan/dissectors/packet-tcp.c
 
-fix fault defragmentation the same way as in the request/response path
+Get rid of an unused variable.
 
-Unfortunately, I don't have a capture file to test this...
 ------------------------------------------------------------------------
-r15762 | ulfl | 2005-09-11 19:16:57 -0500 (Sun, 11 Sep 2005) | 3 lines
+r16530 | guy | 2005-11-17 05:14:38 -0600 (Thu, 17 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc.c
-   M /trunk/epan/reassemble.c
-   M /trunk/epan/reassemble.h
+   M /trunk/cmdarg_err.h
 
-fix reassembling problem I've introduced yesterday, by using fragment_add_seq_next() function instead of fragment_add()
+With GCC 2.x and later, mark cmdarg_err() and cmdarg_err_cont() as being
+printf-like.
 
-in addition, I had to implement fragment_get_reassembled() in addition to fragment_get(), which works with reassembled_table
 ------------------------------------------------------------------------
-r15761 | guy | 2005-09-11 17:31:36 -0500 (Sun, 11 Sep 2005) | 2 lines
+r16529 | sahlberg | 2005-11-17 02:21:53 -0600 (Thu, 17 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-clnp.c
+   M /trunk/epan/dissectors/packet-smb2.c
+
+decode the create flags
 
-Fix a typo.
 
 ------------------------------------------------------------------------
-r15760 | guy | 2005-09-11 17:25:33 -0500 (Sun, 11 Sep 2005) | 9 lines
+r16528 | sahlberg | 2005-11-17 01:32:17 -0600 (Thu, 17 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/expert.c
-   M /trunk/epan/expert.h
-   M /trunk/epan/frame_data.h
-   M /trunk/file.c
-   M /trunk/gtk/expert_dlg.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Frame numbers are unsigned, and they start at 1; 0 is what's used for
-"unknown" for frame numbers.  Note that in epan/frame_data.h, and make
-the frame number in experts unsigned, and use 0 for "unknown", and
-display it as an unsigned number - and, if it's 0, don't display it at
-all.
+add more updates from the wiki
 
-Fix the signature of "expert_dlg_draw()" to match what a tap's draw
-routine's signature is expected to be.
 
 ------------------------------------------------------------------------
-r15759 | guy | 2005-09-11 17:19:41 -0500 (Sun, 11 Sep 2005) | 4 lines
+r16527 | sahlberg | 2005-11-17 01:04:41 -0600 (Thu, 17 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-tcp.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Add some braces to squelch a compiler warning.
+start updating the dissector from wiki updates done
 
-Fix up indentation.
 
 ------------------------------------------------------------------------
-r15758 | guy | 2005-09-11 16:25:37 -0500 (Sun, 11 Sep 2005) | 11 lines
+r16526 | guy | 2005-11-16 23:59:21 -0600 (Wed, 16 Nov 2005) | 13 lines
 Changed paths:
-   M /trunk/asn1/h225/h225.cnf
-   M /trunk/asn1/h245/h245.cnf
-   M /trunk/epan/addr_and_mask.c
-   M /trunk/epan/dissectors/packet-aodv.c
-   M /trunk/epan/dissectors/packet-arp.c
-   M /trunk/epan/dissectors/packet-auto_rp.c
-   M /trunk/epan/dissectors/packet-bgp.c
-   M /trunk/epan/dissectors/packet-bootp.c
-   M /trunk/epan/dissectors/packet-cdp.c
-   M /trunk/epan/dissectors/packet-chdlc.c
-   M /trunk/epan/dissectors/packet-cops.c
-   M /trunk/epan/dissectors/packet-dhcpv6.c
-   M /trunk/epan/dissectors/packet-dns.c
-   M /trunk/epan/dissectors/packet-gsm_a.c
-   M /trunk/epan/dissectors/packet-gtp.c
-   M /trunk/epan/dissectors/packet-h225.c
-   M /trunk/epan/dissectors/packet-h245.c
-   M /trunk/epan/dissectors/packet-h245.h
-   M /trunk/epan/dissectors/packet-icmpv6.c
-   M /trunk/epan/dissectors/packet-igmp.c
-   M /trunk/epan/dissectors/packet-ip.c
-   M /trunk/epan/dissectors/packet-isakmp.c
-   M /trunk/epan/dissectors/packet-isis-lsp.c
-   M /trunk/epan/dissectors/packet-isup.c
-   M /trunk/epan/dissectors/packet-ldp.c
-   M /trunk/epan/dissectors/packet-manolito.c
-   M /trunk/epan/dissectors/packet-msdp.c
-   M /trunk/epan/dissectors/packet-msnip.c
-   M /trunk/epan/dissectors/packet-msproxy.c
-   M /trunk/epan/dissectors/packet-nbns.c
-   M /trunk/epan/dissectors/packet-netflow.c
-   M /trunk/epan/dissectors/packet-nsip.c
-   M /trunk/epan/dissectors/packet-ntp.c
-   M /trunk/epan/dissectors/packet-olsr.c
-   M /trunk/epan/dissectors/packet-quake3.c
-   M /trunk/epan/dissectors/packet-skinny.c
-   M /trunk/epan/dissectors/packet-socks.c
-   M /trunk/epan/dissectors/packet-teredo.c
-   M /trunk/epan/dissectors/packet-uma.c
-   M /trunk/epan/dissectors/packet-wccp.c
-   M /trunk/epan/dissectors/packet-wsp.c
-   M /trunk/epan/packet.c
-   M /trunk/epan/proto.c
-   M /trunk/epan/tvbuff.c
-   M /trunk/epan/tvbuff.h
-   M /trunk/plugins/opsi/packet-opsi.c
-   M /trunk/plugins/profinet/packet-pn-dcp.c
-
-Replace tvb_memcpy() calls that extract IPv4 addresses into a guint32,
-and that extract IPv6 addresses into a "struct e_in6_addr", with
-tvb_get_ipv4() and tvb_get_ipv6() calls - except for some that we
-remove, by using proto_tree_add_item(), rather than replacing.
-
-Have epan/tvbuff.h include epan/ipv6-utils.h, to define "struct
-e_in6_addr" (not necessary to declare the tvbuff routines, but including
-it there means "struct e_in6_addr" is guaranteed to be defined before
-those declarations, so we don't get compiler complaints if we define it
-*after* those declarations).
-
-------------------------------------------------------------------------
-r15757 | ulfl | 2005-09-11 16:10:26 -0500 (Sun, 11 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc.c
-   M /trunk/epan/reassemble.c
-   M /trunk/epan/reassemble.h
-
-rename fragment_add_dcerpc -> fragment_add_dcerpc_dg to avoid confusion a bit,
-as connection oriented (cn) and connectionless (dg) DCE/RPC uses different ways to handle defragmentation and this function is only used for dg
-------------------------------------------------------------------------
-r15756 | etxrab | 2005-09-11 16:10:20 -0500 (Sun, 11 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-spnego.c
-
-Get rid of dependency on format-oid.h
-------------------------------------------------------------------------
-r15755 | ulfl | 2005-09-11 12:15:00 -0500 (Sun, 11 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc.c
-   M /trunk/epan/dissectors/packet-dcom.c
-   M /trunk/epan/libethereal.def
-   M /trunk/gtk/expert_dlg.c
-
-some things fixed, leftover from code cleanup (thanks to the buggy MSVC dependencies)
-------------------------------------------------------------------------
-r15754 | ulfl | 2005-09-11 11:55:34 -0500 (Sun, 11 Sep 2005) | 5 lines
-Changed paths:
-   M /trunk/epan/Makefile.common
-   M /trunk/epan/dissectors/packet-clnp.c
-   M /trunk/epan/dissectors/packet-dcerpc.c
-   M /trunk/epan/dissectors/packet-dcom.c
-   M /trunk/epan/dissectors/packet-frame.c
-   M /trunk/epan/dissectors/packet-http.c
-   M /trunk/epan/dissectors/packet-tcp.c
-   M /trunk/epan/epan.c
-   A /trunk/epan/expert.c
-   A /trunk/epan/expert.h
-   M /trunk/epan/libethereal.def
-   M /trunk/epan/proto.c
-   M /trunk/epan/proto.h
-   M /trunk/gtk/Makefile.common
-   A /trunk/gtk/expert_dlg.c
-   M /trunk/gtk/proto_draw.c
-   M /trunk/gtk/proto_draw.h
-
-I'm adding the "Expert Info" prototype now, as it seems to be in a state where others might have a look and probably already find it useful :-). Anyway, we can easily disable it at one or two places in the code if it get's in our way of a new release.
-
-Please see: http://wiki.ethereal.com/Development/ExpertInfo for a complete overview of the intended feature and it's current state of implementation.
-
-While I'm working on this, I've also added some more status result codes to the DCE/RPC and DCOM dissectors.
-------------------------------------------------------------------------
-r15753 | guy | 2005-09-10 14:43:41 -0500 (Sat, 10 Sep 2005) | 5 lines
-Changed paths:
-   M /trunk/doc/README.developer
-   M /trunk/epan/dissectors/packet-winsrepl.c
-   M /trunk/epan/libethereal.def
-   M /trunk/epan/proto.c
-   M /trunk/epan/tvbuff.c
-   M /trunk/epan/tvbuff.h
-
-Add "tvb_get_ipv4()" and "tvb_get_ipv6()" addresses, to fetch IPv4 and
-IPv6 addresses.  Use "tvb_get_ipv4()" in the WINS Replication dissector,
-so that it gets the right answer on little-endian *AND* big-endian
-machines.
-
-------------------------------------------------------------------------
-r15752 | guy | 2005-09-10 14:39:56 -0500 (Sat, 10 Sep 2005) | 10 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-sip.c
-
-In "dissect_sip()", return 0 if "dissect_sip_common()" returns a
-negative value, so we reject the packet as "not SIP".
-
-Add a "dissect_sip_tcp_heur()" that's heuristic - it'll return FALSE if
-the first packet doesn't look like SIP, but once it's dissected one
-packet it'll just treat subsequent SIP packets as continuations if they
-don't look right.
-
-Clean up indentation a bit.
-
-------------------------------------------------------------------------
-r15751 | lego | 2005-09-10 13:59:02 -0500 (Sat, 10 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dtd_preparse.l
-
-propperly handle the errors when loading a file fails.
-
-
-------------------------------------------------------------------------
-r15750 | lego | 2005-09-10 13:46:03 -0500 (Sat, 10 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dtd_preparse.l
-
-don't use fgets() as MSVC does not implement it. use fgetc instead.
-
-
-------------------------------------------------------------------------
-r15749 | ulfl | 2005-09-10 13:33:32 -0500 (Sat, 10 Sep 2005) | 5 lines
-Changed paths:
-   M /trunk/epan/Makefile.nmake
-
-fix MSVC slash/backslash and other such problems, now getting:
-
-dtd_preparse.obj : error LNK2001: Nichtaufgeloestes externes Symbol _fgetln
-
-MSVC doesn't support fgetln!
-------------------------------------------------------------------------
-r15748 | lego | 2005-09-10 13:00:28 -0500 (Sat, 10 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/Makefile.nmake
-
-Make sure lemon is built before trying to use it
-
-------------------------------------------------------------------------
-r15747 | lego | 2005-09-10 12:55:16 -0500 (Sat, 10 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/Makefile.am
-
-fix the dtd_grammar.c rule
-
-
-------------------------------------------------------------------------
-r15746 | lego | 2005-09-10 12:47:02 -0500 (Sat, 10 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/Makefile.nmake
-
-nmake does not have the $^ macro
-
-
-------------------------------------------------------------------------
-r15745 | lego | 2005-09-10 12:29:15 -0500 (Sat, 10 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/Makefile.am
-   M /trunk/epan/Makefile.common
-   M /trunk/epan/Makefile.nmake
-   M /trunk/epan/dissectors/packet-xml.c
-   A /trunk/epan/dtd.h
-   A /trunk/epan/dtd_grammar.lemon
-   A /trunk/epan/dtd_parse.l
-   A /trunk/epan/dtd_preparse.l
-
-the dtd parser (still missing the glue) and few fixes to packet-xml.c
-
-
-------------------------------------------------------------------------
-r15744 | ulfl | 2005-09-10 10:11:21 -0500 (Sat, 10 Sep 2005) | 12 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc.c
-   M /trunk/epan/reassemble.c
-
-fix DCE/RPC defragmentation, if both middle and last DCE/RPC fragments are in the same TCP desegmented data blob
-
-reassemble.c:
-I had to change the way the reassemble code works if the dissector is telling that more fragments *will* follow. In this case the reassemble code shouldn't try to reassemble already at that time ...
-
-I've also changed the way if a fragment was already seen or not, as it's not enough to check for the frame number, in the scenario described above.
-
-Unfortunately both changes *might* broke other protocols from reassemble properly. I've checked with excessive TCP desegmentation and it's still working without any changes :-)
-
-packet-dcerpc.c:
-use a tvb subset to limit the "end of bytes" processed in a single fragment dissect run, as each fragment has it's own DCE/RPC header (and isn't part of the stub data of the previous packet).
-
-------------------------------------------------------------------------
-r15743 | ulfl | 2005-09-09 16:04:19 -0500 (Fri, 09 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/packaging/nsis/ethereal.nsi
-
-NSIS warning removed: the label "lbl_winpcap_dont_install" is currently unused
-------------------------------------------------------------------------
-r15742 | etxrab | 2005-09-09 14:46:57 -0500 (Fri, 09 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/asn1/ftam/ftam.cnf
-   M /trunk/asn1/ftam/packet-ftam-template.c
-   M /trunk/asn1/pres/pres.cnf
-   M /trunk/epan/dissectors/packet-ftam.c
-   M /trunk/epan/dissectors/packet-pres.c
-
-Dissect "nbs-9".
-------------------------------------------------------------------------
-r15741 | etxrab | 2005-09-09 11:19:51 -0500 (Fri, 09 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-diameter-defs.h
-
-Add some 3GPP AVP:s
-------------------------------------------------------------------------
-r15740 | kukosa | 2005-09-09 10:36:39 -0500 (Fri, 09 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-per.c
-
-- dissect_per_choice() creates now only one level tree insted of two levels tree
-- dissect_per_choice() rewritten
-------------------------------------------------------------------------
-r15739 | guy | 2005-09-09 03:40:58 -0500 (Fri, 09 Sep 2005) | 12 lines
-Changed paths:
-   M /trunk/wiretap/netxray.c
-   M /trunk/wiretap/wtap-int.h
-
-From Bill Meier:
-
-       define "timezone" as "gint16", as it can be positive (west of
-       UTC) or negative (east of UTC);
-
-       update comments to refer to the new names for structure members;
-
-       say the precision of the time stamps is 1 nanosecond only if the
-       ticks per second is > 10 million;
-
-       fix the handling of files truncated exactly on a frame boundary.
-
-------------------------------------------------------------------------
-r15738 | guy | 2005-09-09 03:29:10 -0500 (Fri, 09 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-afp.c
-
-From Didier Gautheron: pass error replies to the tap.
-
-------------------------------------------------------------------------
-r15737 | guy | 2005-09-09 03:20:16 -0500 (Fri, 09 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/gtk/conversations_rsvp.c
-   M /trunk/gtk/hostlist_rsvp.c
-
-Update new RSVP host list and conversation stats to match recent changes
-to the way command-line arguments and menu items for stats are done.
-
-------------------------------------------------------------------------
-r15736 | guy | 2005-09-09 03:11:47 -0500 (Fri, 09 Sep 2005) | 4 lines
-Changed paths:
-   M /trunk/gtk/dlg_utils.c
-
-Don't handle the ETHEREAL_STOCK_CAPTURE_START button if we don't have
-libpcap - ETHEREAL_STOCK_CAPTURE_START isn't defined, and we can't
-capture in any case, so we don't need that button.
-
-------------------------------------------------------------------------
-r15735 | ulfl | 2005-09-08 19:22:37 -0500 (Thu, 08 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/sigcomp_state_hdlr.c
-
-fix MSVC warning: sigcomp_state_hdlr.c(601) : warning C4101: 'partial_state_str' : unreferenced local variable
-------------------------------------------------------------------------
-r15734 | lego | 2005-09-08 17:55:39 -0500 (Thu, 08 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/packaging/nsis/Makefile.nmake
-   M /trunk/packaging/nsis/ethereal.nsi
-
-the xml plugin was removed
-
-
-------------------------------------------------------------------------
-r15733 | lego | 2005-09-08 17:51:12 -0500 (Thu, 08 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-text-media.c
-
- some content-types are now handled by xml 
-
-
-------------------------------------------------------------------------
-r15732 | ulfl | 2005-09-08 16:36:40 -0500 (Thu, 08 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/file.c
-
-start with fdata->num = -1, so we don't have an uninitialised value while doing read_filter style dissection
-------------------------------------------------------------------------
-r15731 | ulfl | 2005-09-08 16:33:11 -0500 (Thu, 08 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/doc/README.tapping
-
-(very minor) issue found while working on a new tap
-------------------------------------------------------------------------
-r15730 | lego | 2005-09-08 16:21:05 -0500 (Thu, 08 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-xml.c
-
-forgot the Id
-
-
-------------------------------------------------------------------------
-r15729 | lego | 2005-09-08 16:18:58 -0500 (Thu, 08 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/configure.in
-   M /trunk/epan/Makefile.common
-   M /trunk/epan/dissectors/Makefile.common
-   M /trunk/plugins/Makefile.am
-   M /trunk/plugins/Makefile.nmake
-
-Let's migrate the xml dissector...
-
-
-------------------------------------------------------------------------
-r15728 | lego | 2005-09-08 16:14:24 -0500 (Thu, 08 Sep 2005) | 4 lines
-Changed paths:
-   A /trunk/epan/dissectors/packet-xml.c
-
-a new version of the xml dissector, look ma no lex!
-mmh  still missing the dtd parser...
-
-
-------------------------------------------------------------------------
-r15727 | lego | 2005-09-08 15:11:01 -0500 (Thu, 08 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/tvbparse.c
-   M /trunk/epan/tvbparse.h
-
-fix the svn keywords and some comments that were out of date
-
-
-------------------------------------------------------------------------
-r15726 | lego | 2005-09-08 14:50:13 -0500 (Thu, 08 Sep 2005) | 3 lines
-Changed paths:
-   A /trunk/epan/tvbparse.c
-   A /trunk/epan/tvbparse.h
-
-an API for "bufferless" parsing of text tvbs
-
-
-------------------------------------------------------------------------
-r15725 | gerald | 2005-09-08 10:01:16 -0500 (Thu, 08 Sep 2005) | 7 lines
-Changed paths:
-   M /trunk/asn1/camel/camel.cnf
-   M /trunk/asn1/camel/packet-camel-template.c
-   M /trunk/epan/dissectors/packet-camel.c
-   M /trunk/epan/dissectors/packet-ppp.c
-   M /trunk/wiretap/k12.c
-
-Fix more problems found by Steve Grubb, along with other changes:
-
-Camel: Fix an off-by-one error.  Don't alloc and free where it's not
-needed.  Remove an unused variable.
-
-PPP and K12: Fix memory leaks.
-
-------------------------------------------------------------------------
-r15724 | sahlberg | 2005-09-08 07:39:02 -0500 (Thu, 08 Sep 2005) | 8 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-winsrepl.c
-
-start making winsrepl into a new style dissector and use tcp_dissect_pdus()
-
-also fix bugs 417 / 418
-
-
-this dissector still needs to have heuristics to be added to it.
-
-
-------------------------------------------------------------------------
-r15723 | sahlberg | 2005-09-08 05:12:12 -0500 (Thu, 08 Sep 2005) | 8 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-winsrepl.c
-   M /trunk/epan/dissectors/packet-winsrepl.h
-
-from M&Y Kaul
-
-rename Wins to WINS
-
-add some new decodes
-
-
-
-------------------------------------------------------------------------
-r15722 | sahlberg | 2005-09-08 05:08:01 -0500 (Thu, 08 Sep 2005) | 7 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc.c
-
-from Michal & Yaniv Kaul
-
-
-Updates to prettify the Bind ACK context handles
-
-
-
-------------------------------------------------------------------------
-r15721 | ulfl | 2005-09-08 04:42:19 -0500 (Thu, 08 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/docbook/eug_src/EUG_chapter_build_install.xml
-
-add description of the Windows installer command line parameters
-------------------------------------------------------------------------
-r15720 | ulfl | 2005-09-08 04:19:46 -0500 (Thu, 08 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/gtk/main.c
-
-set the window title of the Win32 debug console
-------------------------------------------------------------------------
-r15719 | ulfl | 2005-09-07 17:00:25 -0500 (Wed, 07 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/gtk/capture_if_dlg.c
-
-close the capture interfaces dialog if the user pressed "Capture" or "Prepare"
-
-this dialog is live capturing from all "known" interfaces while it's open, so huge system load is generated, which is not preferred while doing a real capture.
-------------------------------------------------------------------------
-r15718 | ulfl | 2005-09-07 16:47:51 -0500 (Wed, 07 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/gtk/main.c
-
-don't wait for a keypress if this is a capture child. This was very annoying, as stopping a capture seems to freeze Ethereal, but it simply waits for a keypress on the capture_child's console window.
-------------------------------------------------------------------------
-r15717 | ulfl | 2005-09-07 15:50:03 -0500 (Wed, 07 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-rsvp.c
-
-MSVC don't like empty structs, add a dummy element to rsvp_session_ipv6_info
-------------------------------------------------------------------------
-r15716 | gerald | 2005-09-07 15:49:16 -0500 (Wed, 07 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/Makefile.am
-
-Add Valgrind core files to CLEANFILES.
-
-------------------------------------------------------------------------
-r15715 | gerald | 2005-09-07 15:09:40 -0500 (Wed, 07 Sep 2005) | 5 lines
-Changed paths:
-   M /trunk/docbook/release-notes.xml
-   M /trunk/epan/sigcomp-udvm.c
-   M /trunk/epan/sigcomp_state_hdlr.c
-   M /trunk/epan/sigcomp_state_hdlr.h
-
-Add bounds checking in several places to the SigComp UDVM.  Use memset()
-instead of while loops to initialize variables.  Use a define instead
-of magic numbers.  Don't use guint8s for counters.  Add a corresponding
-entry to the release notes.
-
-------------------------------------------------------------------------
-r15714 | sahlberg | 2005-09-07 14:52:44 -0500 (Wed, 07 Sep 2005) | 8 lines
-Changed paths:
-   M /trunk/AUTHORS
-   M /trunk/epan/dissectors/packet-rsvp.c
-   M /trunk/epan/dissectors/packet-rsvp.h
-   M /trunk/gtk/Makefile.common
-   A /trunk/gtk/conversations_rsvp.c
-   A /trunk/gtk/hostlist_rsvp.c
-
-From Manu Pathak
-
-Make RSVP tappable
-
-add hostlist and conversation listing for RSVP conversations
-
-
-
-------------------------------------------------------------------------
-r15713 | gerald | 2005-09-07 10:40:59 -0500 (Wed, 07 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
-
-If dissect_ber_octet_string() gives us a null tvb, assume we have a malformed
-packet and throw an exception.  Don't pass the null tvb to tvb_length().
-
-------------------------------------------------------------------------
-r15712 | gerald | 2005-09-07 08:59:10 -0500 (Wed, 07 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/docbook
-   M /trunk/image
-
-Add patterns to svn:ignore.
-
-------------------------------------------------------------------------
-r15711 | sahlberg | 2005-09-07 08:29:44 -0500 (Wed, 07 Sep 2005) | 7 lines
-Changed paths:
-   M /trunk/AUTHORS
-   M /trunk/epan/dissectors/Makefile.common
-   A /trunk/epan/dissectors/packet-winsrepl.c
-   A /trunk/epan/dissectors/packet-winsrepl.h
-
-From Metze  with minor changes.
-
-New protocol
-NBNS Replication support
-
-
-
-------------------------------------------------------------------------
-r15710 | gerald | 2005-09-07 08:26:23 -0500 (Wed, 07 Sep 2005) | 7 lines
-Changed paths:
-   M /trunk/Makefile.nmake
-   M /trunk/asn1/MAP_Dialogue/Makefile.nmake
-   M /trunk/asn1/acse/Makefile.nmake
-   M /trunk/asn1/camel/Makefile.nmake
-   M /trunk/asn1/cmip/Makefile.nmake
-   M /trunk/asn1/cms/Makefile.nmake
-   M /trunk/asn1/ess/Makefile.nmake
-   M /trunk/asn1/ftam/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/logotype-cert-extn/Makefile.nmake
-   M /trunk/asn1/mms/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/ros/Makefile.nmake
-   M /trunk/asn1/rtse/Makefile.nmake
-   M /trunk/asn1/s4406/Makefile.nmake
-   M /trunk/asn1/smrse/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
-   M /trunk/config.nmake
-   M /trunk/epan/Makefile.nmake
-   M /trunk/plugins/Makefile.nmake
-
-Set "COPYCMD=/Y" and remove the "/Y" from each XCOPY command in order
-to fix compilation under Windows NT.  This should fix bug 403.
-
-The changes were made using "find . -name Makefile.nmake | xargs perl
--pi.bak -e 's: /y::i'".  They appear to work under XP, but if anything
-broke I blame Larry Wall.
-
-------------------------------------------------------------------------
-r15709 | kukosa | 2005-09-07 05:08:13 -0500 (Wed, 07 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-sip.c
-
-SIP reassembly using req_resp_hdrs_do_reassembly()
-------------------------------------------------------------------------
-r15708 | gerald | 2005-09-06 17:07:35 -0500 (Tue, 06 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/docbook/release-notes.xml
-
-Add a note about PCRE.
-
-------------------------------------------------------------------------
-r15707 | gerald | 2005-09-06 14:50:31 -0500 (Tue, 06 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk
-
-Add patterns to svn:ignore.
-
-------------------------------------------------------------------------
-r15706 | gerald | 2005-09-06 14:48:57 -0500 (Tue, 06 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/Makefile.nmake
-   M /trunk/config.nmake
-   M /trunk/tools/win32-setup.sh
-
-Move to the latest ethereal-win32-libs tag.
-
-------------------------------------------------------------------------
-r15705 | gerald | 2005-09-06 14:21:48 -0500 (Tue, 06 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/docbook/release-notes.xml
-
-Add a section on file locations.
-
-------------------------------------------------------------------------
-r15704 | gerald | 2005-09-06 13:41:25 -0500 (Tue, 06 Sep 2005) | 6 lines
-Changed paths:
-   M /trunk/Makefile.nmake
-   M /trunk/doc/Makefile.nmake
-   M /trunk/plugins/Makefile.nmake
-
-In doc/Makefile.nmake, use the "install-deps" target from the root
-Makefile.nmake instead of doing our own XCOPYing.  Use the "clean-deps"
-target when we're done instead of leaving DLLs lying around.
-
-Normalize the use of underscores vs hyphens in the "clean-deps" target.
-
-------------------------------------------------------------------------
-r15703 | etxrab | 2005-09-06 13:08:45 -0500 (Tue, 06 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/asn1/ftam/ftam.cnf
-   M /trunk/asn1/pres/packet-pres-template.c
-   M /trunk/epan/dissectors/packet-ftam.c
-   M /trunk/epan/dissectors/packet-pres.c
-
-Ftam - Use some mofe FN_PAR:s
-PRES Dissect PDU type based on SS-user data from SES(Info from asn1 file).
-------------------------------------------------------------------------
-r15702 | guy | 2005-09-06 12:44:20 -0500 (Tue, 06 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/asn1/h225/h225.cnf
-   M /trunk/epan/dissectors/packet-h225.c
-
-Make sure we don't overflow the dialedDigits array.
-
-------------------------------------------------------------------------
-r15701 | guy | 2005-09-06 12:43:22 -0500 (Tue, 06 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-snmp.c
-
-Fail somewhat gracefully if malloc() fails.
-
-------------------------------------------------------------------------
-r15700 | kukosa | 2005-09-06 09:18:49 -0500 (Tue, 06 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/asn1/h225/h225.cnf
-   M /trunk/asn1/h245/h245.cnf
-   M /trunk/epan/dissectors/packet-h225.c
-   M /trunk/epan/dissectors/packet-h245.c
-   M /trunk/epan/dissectors/packet-per.c
-   M /trunk/epan/proto.h
-
-get rid of few warnings
-------------------------------------------------------------------------
-r15699 | kukosa | 2005-09-06 05:38:25 -0500 (Tue, 06 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-sip.c
-
-reassembly improvements
-------------------------------------------------------------------------
-r15698 | etxrab | 2005-09-06 00:30:06 -0500 (Tue, 06 Sep 2005) | 9 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
-
-From Graeme Lunt:
-
-Attached is a patch to solve the CHOICE problem for review. 
-
-Problem was two-fold:
-1) not passing original class/tag to sub-choice we had matched BER_CLASS_ANY
-2) not handling a count==0 if we had matched BER_CLASS_ANY 
-
-The patch also includes a my constructed octet string fix again.
-------------------------------------------------------------------------
-r15697 | guy | 2005-09-05 17:39:09 -0500 (Mon, 05 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/asn1/x411/packet-x411-template.c
-   M /trunk/epan/dissectors/packet-x411.c
-   M /trunk/epan/dissectors/packet-x411.h
-
-Squelch compiler warnings.
-
-------------------------------------------------------------------------
-r15696 | guy | 2005-09-05 17:38:13 -0500 (Mon, 05 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/asn1/rtse/rtse.cnf
-   M /trunk/epan/dissectors/packet-rtse.c
-   M /trunk/epan/dissectors/packet-rtse.h
-
-Squelch compiler warnings.
-
-------------------------------------------------------------------------
-r15695 | guy | 2005-09-05 17:36:52 -0500 (Mon, 05 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/asn1/acse/acse.cnf
-   M /trunk/epan/dissectors/packet-acse.c
-   M /trunk/epan/dissectors/packet-acse.h
-
-Squelch a compiler warning.
-
-------------------------------------------------------------------------
-r15694 | gerald | 2005-09-05 16:38:10 -0500 (Mon, 05 Sep 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-rtp.c
-   M /trunk/epan/dissectors/packet-snmp.c
-
-For SNMP, malloc memory that we're going to free later.  Fixes bug 406.
-
-For RTP, don't free se_allocated memory.
-
-------------------------------------------------------------------------
-r15693 | guy | 2005-09-05 16:30:15 -0500 (Mon, 05 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/asn1/s4406/packet-s4406-template.c
-   M /trunk/epan/dissectors/packet-s4406.c
-   M /trunk/epan/dissectors/packet-s4406.h
-
-Use the same string for the protocol's filter name as is used in the
-names of its filterable fields.
-
-------------------------------------------------------------------------
-r15692 | guy | 2005-09-05 16:21:29 -0500 (Mon, 05 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-sip.c
-
-Include "packet-tcp.h" to declare tcp_dissect_pdus().
-
-------------------------------------------------------------------------
-r15691 | guy | 2005-09-05 16:18:06 -0500 (Mon, 05 Sep 2005) | 5 lines
-Changed paths:
-   M /trunk/epan/ftypes/ftype-bytes.c
-
-"strlen()" returns a "size_t"; use that for its return value.
-
-Cast the argument to <ctype.h> macros to "guchar", so that if the 8th
-bit is set in the byte, it doesn't get sign-extended.
-
-------------------------------------------------------------------------
-r15690 | obiot | 2005-09-05 15:37:47 -0500 (Mon, 05 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/AUTHORS
-
-Don't use curly braces in an author's log entry: it confuses the parser.
-
-------------------------------------------------------------------------
-r15689 | etxrab | 2005-09-05 11:41:46 -0500 (Mon, 05 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-ftam.c
-   M /trunk/epan/dissectors/packet-ftam.h
-   M /trunk/epan/dissectors/packet-mms.c
-   M /trunk/epan/dissectors/packet-mms.h
-
-Add some OID:s as we now use the Presentation context and use FN_PARS.
-------------------------------------------------------------------------
-r15688 | etxrab | 2005-09-05 11:41:11 -0500 (Mon, 05 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/asn1/ftam/ftam.cnf
-   M /trunk/asn1/ftam/packet-ftam-template.c
-   M /trunk/asn1/mms/packet-mms-template.c
-
-Add some OID:s as we now use the Presentation context and use FN_PARS.
-------------------------------------------------------------------------
-r15687 | etxrab | 2005-09-05 11:31:24 -0500 (Mon, 05 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
-
-branch_taken got lost in the recent changes.
-------------------------------------------------------------------------
-r15686 | etxrab | 2005-09-05 11:30:31 -0500 (Mon, 05 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-multipart.c
-
-Add a missing include
-------------------------------------------------------------------------
-r15685 | kukosa | 2005-09-05 08:25:49 -0500 (Mon, 05 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-sip.c
-
-the first attempt at SIP reassembly
-------------------------------------------------------------------------
-r15684 | kukosa | 2005-09-05 08:20:56 -0500 (Mon, 05 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-multipart.c
-
-buffer where parameters variable pointed into was freed
-it is necessary to make a copy
-------------------------------------------------------------------------
-r15683 | kukosa | 2005-09-05 06:59:22 -0500 (Mon, 05 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-multipart.c
-
-- set length for "Encapsulated multipart part" tree item
-- pass right content type to media subdissectors
-
-------------------------------------------------------------------------
-r15682 | kukosa | 2005-09-05 05:56:41 -0500 (Mon, 05 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/proto.c
-   M /trunk/epan/proto.h
-
-new BASE_DEC_HEX and BASE_HEX_DEC displaying numbers in "dual" format
-------------------------------------------------------------------------
-r15681 | etxrab | 2005-09-05 00:29:14 -0500 (Mon, 05 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/Makefile.common
-
-Fix a typo, should make the buildbot hapy again.
-------------------------------------------------------------------------
-r15680 | etxrab | 2005-09-04 15:30:31 -0500 (Sun, 04 Sep 2005) | 15 lines
-Changed paths:
-   M /trunk/asn1/pres/packet-pres-template.c
-   M /trunk/asn1/ros/packet-ros-template.c
-   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/x420/packet-x420-template.c
-   M /trunk/asn1/x420/packet-x420-template.h
-   M /trunk/epan/dissectors/Makefile.common
-   M /trunk/epan/dissectors/packet-pres.c
-   A /trunk/epan/dissectors/packet-ros.c
-   A /trunk/epan/dissectors/packet-ros.h
-   A /trunk/epan/dissectors/packet-rtse.c
-   A /trunk/epan/dissectors/packet-rtse.h
-   A /trunk/epan/dissectors/packet-s4406.c
-   A /trunk/epan/dissectors/packet-s4406.h
-   M /trunk/epan/dissectors/packet-ses.h
-   A /trunk/epan/dissectors/packet-x411.c
-   A /trunk/epan/dissectors/packet-x411.h
-   A /trunk/epan/dissectors/packet-x420.c
-   A /trunk/epan/dissectors/packet-x420.h
-
- From Graeme Lunt
- I attach my RTSE dissector (in tar file) which requires the included ROS dissector, as well as a patch to the latest pres.{cnf,asn}. The ROS dissector uses a new field in the SESSION_DATA_STRUCTURE to pass the ROS operation to the sub-dissector, though this is also set by other dissectors (RTSE uses it in X.410 mode). 
- Note that X.400 P1 in X.410 mode doesn't use ROS, so it is useful not to explicitly include ROS in my X411 dissector. However, the inclusion of a ROS dissector won't effect any dissectors that currently implement their own ROS.
- I also include dissectors for:
- X.411         (P1)            X.400 OSI Message Transfer Service
- X.420         (P22)   X.400 OSI Information Object
- STANAG 4406   (P772)  STANAG 4406 Military Message Extensions (to P22)
- These rely on the RTSE and ROS dissectors.
-
-Withs some changes to remove various warnings and errors.
-------------------------------------------------------------------------
-r15679 | etxrab | 2005-09-04 11:22:12 -0500 (Sun, 04 Sep 2005) | 14 lines
-Changed paths:
-   M /trunk/asn1/pres/ISO8823-PRESENTATION.asn
-   M /trunk/asn1/pres/pres.cnf
-   A /trunk/asn1/ros
-   A /trunk/asn1/ros/Makefile
-   A /trunk/asn1/ros/Makefile.nmake
-   A /trunk/asn1/ros/packet-ros-template.c
-   A /trunk/asn1/ros/packet-ros-template.h
-   A /trunk/asn1/ros/ros-exp.cnf
-   A /trunk/asn1/ros/ros.asn
-   A /trunk/asn1/ros/ros.cnf
-   A /trunk/asn1/rtse
-   A /trunk/asn1/rtse/Makefile
-   A /trunk/asn1/rtse/Makefile.nmake
-   A /trunk/asn1/rtse/packet-rtse-template.c
-   A /trunk/asn1/rtse/packet-rtse-template.h
-   A /trunk/asn1/rtse/rtse-exp.cnf
-   A /trunk/asn1/rtse/rtse.asn
-   A /trunk/asn1/rtse/rtse.cnf
-   A /trunk/asn1/s4406
-   A /trunk/asn1/s4406/Makefile
-   A /trunk/asn1/s4406/Makefile.nmake
-   A /trunk/asn1/s4406/packet-s4406-template.c
-   A /trunk/asn1/s4406/packet-s4406-template.h
-   A /trunk/asn1/s4406/s4406.asn
-   A /trunk/asn1/s4406/s4406.cnf
-   A /trunk/asn1/x411
-   A /trunk/asn1/x411/Makefile
-   A /trunk/asn1/x411/Makefile.nmake
-   A /trunk/asn1/x411/packet-x411-template.c
-   A /trunk/asn1/x411/packet-x411-template.h
-   A /trunk/asn1/x411/x411-exp.cnf
-   A /trunk/asn1/x411/x411.asn
-   A /trunk/asn1/x411/x411.cnf
-   A /trunk/asn1/x420
-   A /trunk/asn1/x420/Makefile
-   A /trunk/asn1/x420/Makefile.nmake
-   A /trunk/asn1/x420/packet-x420-template.c
-   A /trunk/asn1/x420/packet-x420-template.h
-   A /trunk/asn1/x420/x420-exp.cnf
-   A /trunk/asn1/x420/x420.asn
-   A /trunk/asn1/x420/x420.cnf
-
-From Graeme Lunt
-
-I attach my RTSE dissector (in tar file) which requires the included ROS dissector, as well as a patch to the latest pres.{cnf,asn}. The ROS dissector uses a new field in the SESSION_DATA_STRUCTURE to pass the ROS operation to the sub-dissector, though this is also set by other dissectors (RTSE uses it in X.410 mode). 
-
-Note that X.400 P1 in X.410 mode doesn't use ROS, so it is useful not to explicitly include ROS in my X411 dissector. However, the inclusion of a ROS dissector won't effect any dissectors that currently implement their own ROS.
-
-I also include dissectors for:
-
-X.411  (P1)            X.400 OSI Message Transfer Service
-X.420  (P22)   X.400 OSI Information Object
-STANAG 4406    (P772)  STANAG 4406 Military Message Extensions (to P22)
-
-These rely on the RTSE and ROS dissectors.
-
-------------------------------------------------------------------------
-r15678 | etxrab | 2005-09-04 04:00:01 -0500 (Sun, 04 Sep 2005) | 8 lines
-Changed paths:
-   M /trunk/asn1/acse/acse.cnf
-   M /trunk/asn1/acse/packet-acse-template.c
-   M /trunk/asn1/pres/packet-pres-template.c
-   M /trunk/asn1/pres/packet-pres-template.h
-   M /trunk/asn1/pres/pres.cnf
-   M /trunk/epan/dissectors/packet-acse.c
-   M /trunk/epan/dissectors/packet-acse.h
-   M /trunk/epan/dissectors/packet-pres.c
-   M /trunk/epan/dissectors/packet-pres.h
-
-From Graeme Lunt:
-Basically the changes are:
-a) [pres] make the find_oid_by_[pres_]ctx_id (I changed the name to make it more specific) non-static so it can be called from other dissectors (see acse.cnf changes). I also call it from RTSE and ROS dissectors
-b) [acse] remove (#ifdef NOT_NEEDED) the oid lookup table and any reference to acse_handle - as these are no longer needed
-c) [acse] register the acse dissector on 2.2.1.0.1
-with some modifications: -#ifdef:ed code removed
-- renamed aco -> pco
-
-------------------------------------------------------------------------
-r15677 | etxrab | 2005-09-04 03:53:04 -0500 (Sun, 04 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-giop.c
-
-Make Objekt Key a HEX string.
-------------------------------------------------------------------------
-r15676 | guy | 2005-09-03 13:51:55 -0500 (Sat, 03 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/tethereal.c
-
-Make usage messages fit within 80 characters.
-
-------------------------------------------------------------------------
-r15675 | guy | 2005-09-03 13:31:45 -0500 (Sat, 03 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/tethereal.c
-
-As with Ethereal, so with Tethereal; we're not a GNU program, don't say
-we are.
-
-------------------------------------------------------------------------
-r15674 | guy | 2005-09-03 13:21:48 -0500 (Sat, 03 Sep 2005) | 4 lines
-Changed paths:
-   M /trunk/gtk/main.c
-
-Use the "svnversion" variable, exported by version_info.c, to print the
-version number from SVN for non-release builds, just as Tethereal does. 
-Fixes bug 408.
-
-------------------------------------------------------------------------
-r15673 | gerald | 2005-09-02 14:54:16 -0500 (Fri, 02 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/docbook/release-notes.xml
-   M /trunk/plugins/rtnet/packet-rtnet.c
-
-In RTnet, make sure we don't pass a null handle to call_dissector().  Add
-an entry about this to the release notes.  Fixes a recent buildbot crash.
-
-------------------------------------------------------------------------
-r15672 | gerald | 2005-09-02 14:50:01 -0500 (Fri, 02 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/emem.c
-
-Fix a typo.
-
-------------------------------------------------------------------------
-r15671 | ulfl | 2005-09-02 14:08:25 -0500 (Fri, 02 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/gtk/fileset_dlg.c
-
-don't crash if the file_set dialog is opened and a "none fileset" file is already loaded. This bug was introduced by me after the 0.10.12 release
-------------------------------------------------------------------------
-r15670 | guy | 2005-09-02 11:50:51 -0500 (Fri, 02 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/doc/text2pcap.pod
-
-text2pcap can add fake SCTP headers.
-
-------------------------------------------------------------------------
-r15669 | sahlberg | 2005-09-02 04:28:30 -0500 (Fri, 02 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ansi_637.c
-
-another switch that should be a value_string
-
-
-------------------------------------------------------------------------
-r15668 | sahlberg | 2005-09-02 04:16:50 -0500 (Fri, 02 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-alcap.c
-
-make two thigs that should be value_strings value_strings
-
-
-------------------------------------------------------------------------
-r15667 | guy | 2005-09-02 03:19:15 -0500 (Fri, 02 Sep 2005) | 9 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-giop.c
-
-A PDU dissector called by tcp_dissect_pdus() can't return anything.
-
-A PDU length routine called by tcp_dissect_pdus() should use the offset
-passed to it as the offset of the beginning of the PDU.
-
-In the heuristic GIOP dissector, if we're running over TCP, and accept
-the packet, call "dissect_giop_tcp()" so that we handle multiple PDUs
-within the segment or PDUs split across segments.
-
-------------------------------------------------------------------------
-r15666 | etxrab | 2005-09-02 00:49:25 -0500 (Fri, 02 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-bacapp.c
-
-From Steve Karg 
-
-------------------------------------------------------------------------
-r15665 | etxrab | 2005-09-02 00:46:10 -0500 (Fri, 02 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/asn1/gsmmap/GSMMAP.asn
-   M /trunk/asn1/gsmmap/packet-gsm_map-template.c
-   M /trunk/epan/dissectors/packet-gsm_map.c
-
-From ouli:
-- Add version 2 CancelLocation decoding
-
-------------------------------------------------------------------------
-r15664 | guy | 2005-09-02 00:43:49 -0500 (Fri, 02 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/asn1/cms/cms-exp.cnf
-   M /trunk/asn1/mms/mms-exp.cnf
-   M /trunk/asn1/pkixcmp/cmp-exp.cnf
-   M /trunk/asn1/pkixcrmf/crmf-exp.cnf
-   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/x509sat-exp.cnf
-   M /trunk/epan/dissectors/packet-MAP_DialoguePDU.c
-   M /trunk/epan/dissectors/packet-MAP_DialoguePDU.h
-   M /trunk/epan/dissectors/packet-acse.c
-   M /trunk/epan/dissectors/packet-acse.h
-   M /trunk/epan/dissectors/packet-cmp.c
-   M /trunk/epan/dissectors/packet-cms.c
-   M /trunk/epan/dissectors/packet-crmf.c
-   M /trunk/epan/dissectors/packet-ess.c
-   M /trunk/epan/dissectors/packet-ftam.c
-   M /trunk/epan/dissectors/packet-h248.c
-   M /trunk/epan/dissectors/packet-logotypecertextn.c
-   M /trunk/epan/dissectors/packet-mms.c
-   M /trunk/epan/dissectors/packet-ns_cert_exts.c
-   M /trunk/epan/dissectors/packet-ocsp.c
-   M /trunk/epan/dissectors/packet-pkinit.c
-   M /trunk/epan/dissectors/packet-pkix1explicit.c
-   M /trunk/epan/dissectors/packet-pkix1implicit.c
-   M /trunk/epan/dissectors/packet-pkixqualified.c
-   M /trunk/epan/dissectors/packet-pkixtsp.c
-   M /trunk/epan/dissectors/packet-smrse.c
-   M /trunk/epan/dissectors/packet-wlancertextn.c
-   M /trunk/epan/dissectors/packet-x509af.c
-   M /trunk/epan/dissectors/packet-x509ce.c
-   M /trunk/epan/dissectors/packet-x509if.c
-   M /trunk/epan/dissectors/packet-x509sat.c
-
-Regenerate dissectors with the current asn2eth.
-
-------------------------------------------------------------------------
-r15663 | etxrab | 2005-09-01 14:44:26 -0500 (Thu, 01 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-giop.c
-
-It looks like there might not always be a body, check if there is.
-------------------------------------------------------------------------
-r15662 | gerald | 2005-09-01 14:35:23 -0500 (Thu, 01 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
-
-Normalize our hf_id checks and make sure our hf_ids are valid before we
-try to use them.  This should fix bugs 399 and 401.
-
-------------------------------------------------------------------------
-r15661 | etxrab | 2005-09-01 14:31:48 -0500 (Thu, 01 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-giop.c
-
-Re-assemble GIOP over TCP.
-------------------------------------------------------------------------
-r15660 | sahlberg | 2005-09-01 14:05:00 -0500 (Thu, 01 Sep 2005) | 5 lines
-Changed paths:
-   M /trunk/epan/prefs.c
-   M /trunk/epan/range.c
-   M /trunk/gtk/prefs_dlg.c
-   M /trunk/plugins/asn1/packet-asn1.c
-
-convert to g_snprintf()
-
-also make range_convert_range() return an emem allocated string
-
-
-------------------------------------------------------------------------
-r15659 | guy | 2005-09-01 13:03:02 -0500 (Thu, 01 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-bootp.c
-
-Get rid of a no-longer-used #define.
-
-------------------------------------------------------------------------
-r15658 | guy | 2005-09-01 06:34:10 -0500 (Thu, 01 Sep 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-isis-clv.c
-
-Use "proto_item_append_text()" rather than filling up an allocated
-buffer.  This fixes one place where the "NLPID(s):" wasn't being put
-into the protocol tree item.
-
-------------------------------------------------------------------------
-r15657 | guy | 2005-09-01 06:32:14 -0500 (Thu, 01 Sep 2005) | 5 lines
-Changed paths:
-   M /trunk/epan/inet_ntop.c
-
-128 bytes isn't much room for the stack; revert to using an on-the-stack
-buffer (the buffer in question is temporary, so it doesn't need to
-survive after inet_ntop() returns), which should fix some compile errors
-on Windows.
-
-------------------------------------------------------------------------
-r15656 | kukosa | 2005-09-01 05:52:33 -0500 (Thu, 01 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/epan/ftypes/ftype-bytes.c
-
-filter expression can contain GUID in XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX form now
-------------------------------------------------------------------------
-r15655 | guy | 2005-09-01 05:38:41 -0500 (Thu, 01 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-bootp.c
-
-Use "proto_tree_append_text()" rather than appending to an ep_alloced
-buffer (that buffer wasn't getting cleared for each item).
-
-------------------------------------------------------------------------
-r15654 | guy | 2005-09-01 04:56:23 -0500 (Thu, 01 Sep 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-bgp.c
-
-Get rid of a trailing comma.
-
-------------------------------------------------------------------------
-r15653 | sahlberg | 2005-09-01 04:40:55 -0500 (Thu, 01 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/inet_ntop.c
-
-replace one sprintf with g_snprintf  and move one array off the stack and into emem allocated memory
-
-
-------------------------------------------------------------------------
-r15652 | sahlberg | 2005-09-01 04:29:21 -0500 (Thu, 01 Sep 2005) | 6 lines
-Changed paths:
-   M /trunk/epan/proto.c
-
-hmmm i though i removed some sprintf in the previous commit   apparently not.
-
-
-remove all sprintf and replace with g_snprintf()
-
-
-------------------------------------------------------------------------
-r15651 | sahlberg | 2005-09-01 04:03:29 -0500 (Thu, 01 Sep 2005) | 6 lines
-Changed paths:
-   M /trunk/epan/proto.c
-   M /trunk/gtk/main.c
-   M /trunk/tap-protocolinfo.c
-
-convert one sprintf into g_snprintf()
-
-at the same time, make proto_construct_dfilter_string() return an emem allocated string.
-This fixes a tiny memleak in print.c that never freed the string returned by this function.
-
-
-------------------------------------------------------------------------
-r15650 | sahlberg | 2005-09-01 03:39:52 -0500 (Thu, 01 Sep 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/sha1.c
-
-replace one ifdeffed out sprintf with g_snprintf() so that it doesnt show up in a 'grep sprintf *.c' any more
-
-
-------------------------------------------------------------------------
-r15649 | etxrab | 2005-09-01 00:44:40 -0500 (Thu, 01 Sep 2005) | 1 line
-Changed paths:
-   M /trunk/AUTHORS
-
-Add Tomer Shani
-------------------------------------------------------------------------
-r15648 | etxrab | 2005-09-01 00:41:59 -0500 (Thu, 01 Sep 2005) | 10 lines
-Changed paths:
-   M /trunk/gtk/rtp_analysis.c
-
-From Tomer Shani:
-Patch which will enable saving payload in raw (binary) format in addition to the existing au format.
-
-We have found it very useful to be able to extract the RTP data for use with other tools (especially when dealing with proprietary/uncommon coders).
-
-Changes:
-
-rtp_packet_save_payload: no longer transforms packet to linear coding, payload is saved in raw format 
-copy_file: will perform the needed transcoding and save to needed format (au or raw)
-
-------------------------------------------------------------------------
-r15647 | etxrab | 2005-09-01 00:34:52 -0500 (Thu, 01 Sep 2005) | 8 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-rdt.c
-   M /trunk/epan/dissectors/packet-rdt.h
-   M /trunk/epan/dissectors/packet-rtsp.c
-
-From Martin Mathieson
-
-These small patches:
-
-- add RTSP header 'RDTFeatureLevel  as a proper field
-- show feature level in RDT stream setup info
-- tidy up RDT info column text
-
-------------------------------------------------------------------------
-r15646 | ulfl | 2005-08-31 18:52:40 -0500 (Wed, 31 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/plugins/xml/moduleinfo.h
-
-fix probable copy and paste error, as the xml dissector should be named xml and not mate
-------------------------------------------------------------------------
-r15645 | gerald | 2005-08-31 16:38:08 -0500 (Wed, 31 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/column-utils.c
-
-If we set one or more time references and then changed the time display
-format, our time-formatted columns would display a time value instead of
-"*REF*".  Don't to that.
-
-------------------------------------------------------------------------
-r15644 | etxrab | 2005-08-31 15:25:48 -0500 (Wed, 31 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/plugins/giop/packet-parlay.c
-
-Parlay re-generated with the updated idl2eth generator.
-------------------------------------------------------------------------
-r15643 | etxrab | 2005-08-31 15:20:56 -0500 (Wed, 31 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/asn1/acse/acse.cnf
-   M /trunk/asn1/acse/packet-acse-template.c
-   M /trunk/asn1/cmip/packet-cmip-template.c
-   M /trunk/asn1/pres/packet-pres-template.c
-   M /trunk/asn1/pres/pres.cnf
-   M /trunk/epan/dissectors/packet-acse.c
-   M /trunk/epan/dissectors/packet-cmip.c
-   M /trunk/epan/dissectors/packet-pres.c
-   M /trunk/epan/dissectors/packet-pres.h
-
-Upadte to call Data dissector from PRES based on OID in Presentation Context,
-based on the code in ACSE.
-------------------------------------------------------------------------
-r15642 | guy | 2005-08-31 15:02:06 -0500 (Wed, 31 Aug 2005) | 2 lines
-Changed paths:
-   A /trunk/asn1/gnm/Makefile
-
-Add a Makefile.
-
-------------------------------------------------------------------------
-r15641 | guy | 2005-08-31 14:51:53 -0500 (Wed, 31 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-camel.c
-
-Give it an RCS ID.
-
-------------------------------------------------------------------------
-r15640 | etxrab | 2005-08-31 14:51:24 -0500 (Wed, 31 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-sigcomp.c
-   M /trunk/epan/sigcomp-udvm.c
-
-udvm: initialise a variable
-sigcomp: implement RFC 4077
-------------------------------------------------------------------------
-r15639 | guy | 2005-08-31 14:51:16 -0500 (Wed, 31 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/asn1/camel/packet-camel-template.c
-
-Give it an RCS ID.
-
-------------------------------------------------------------------------
-r15638 | guy | 2005-08-31 14:43:37 -0500 (Wed, 31 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/stat_cmd_args.c
-
-Keep the list of possible "-z" arguments sorted, so we can display them
-in sorted order (to make it a bit easier to find the one you're
-interested in).
-
-------------------------------------------------------------------------
-r15637 | guy | 2005-08-31 13:49:14 -0500 (Wed, 31 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/tethereal.c
-
-Fix a typo.
-
-------------------------------------------------------------------------
-r15636 | kukosa | 2005-08-31 10:03:12 -0500 (Wed, 31 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/asn1/h225/h225.cnf
-   M /trunk/asn1/h225/packet-h225-template.c
-   M /trunk/asn1/h235/packet-h235-template.c
-   M /trunk/asn1/h245/h245.cnf
-   M /trunk/asn1/h245/packet-h245-template.c
-   M /trunk/asn1/h245/packet-h245-template.h
-   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-h245.h
-
-- more standard way for FastStart item dissection
-- protocol names fixed
-
-------------------------------------------------------------------------
-r15635 | kukosa | 2005-08-31 09:53:15 -0500 (Wed, 31 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-per.c
-
-internal length field for constrained SEQUNCE/SET OF was not hidden
-------------------------------------------------------------------------
-r15634 | kukosa | 2005-08-31 09:32:29 -0500 (Wed, 31 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/tools/asn2eth.py
-
-- OID names table extended
-- NAME and ABBREV attributes can be used in #.FIELD_ATTR
-- following constraint format is supported (1..10, ..., 11..MAX)
-------------------------------------------------------------------------
-r15633 | tuexen | 2005-08-31 08:52:43 -0500 (Wed, 31 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ses.h
-
-Make ses_vals extern. Required to get it linked on Mac OS X.
-
-------------------------------------------------------------------------
-r15632 | sahlberg | 2005-08-31 03:49:10 -0500 (Wed, 31 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-bgp.c
-
-remove some g_string_printf[a]() and replace with g_snprintf()
-
-
-------------------------------------------------------------------------
-r15631 | sahlberg | 2005-08-31 03:09:00 -0500 (Wed, 31 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-bootp.c
-
-change g_string_sprintf[a]() to g_snprintf() and emem allocated memory.
-
-
-------------------------------------------------------------------------
-r15630 | etxrab | 2005-08-31 00:46:20 -0500 (Wed, 31 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/asn1/h450/packet-h450-template.c
-   M /trunk/epan/dissectors/packet-h450.c
-
-Decode CmnInform fixes bug 376.
-------------------------------------------------------------------------
-r15629 | jmayer | 2005-08-30 15:21:11 -0500 (Tue, 30 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/asn1/pres/Makefile
-
-propset svn:keywords and svn:eol-style
-------------------------------------------------------------------------
-r15628 | gerald | 2005-08-30 14:52:38 -0500 (Tue, 30 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/docbook/release-notes.xml
-
-Add an item about the packet list scroll bar.
-
-------------------------------------------------------------------------
-r15627 | ulfl | 2005-08-30 14:43:38 -0500 (Tue, 30 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/docbook/release-notes.xml
-
-add timestamp enhancements to the changes section, do some editing with the existing entries
-------------------------------------------------------------------------
-r15626 | gerald | 2005-08-30 14:43:32 -0500 (Tue, 30 Aug 2005) | 3 lines
-Changed paths:
-   A /trunk/asn1/pres/Makefile
-   M /trunk/asn1/pres/packet-pres-template.c
-   M /trunk/epan/dissectors/packet-pres.c
-   M /trunk/epan/dissectors/packet-pres.h
-
-Break out of an infinite loop.  Fixes bugs 392 - 395.  Add a UNIX Makefile
-for generation of the PRES dissector.
-
-------------------------------------------------------------------------
-r15625 | ulfl | 2005-08-30 14:42:05 -0500 (Tue, 30 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/docbook/Makefile
-
-minor workflow enhancement, generate the HTML files before the pdf's and alike.
-
-while working with the docbook sources, the html versions are a lot easier to look at than the pdf's. At least the Adobe Reader will lock the pdf file, so one has to close it to generate a next version, it's ugly to work with.
-
-the html files can be viewed with e.g. Firefox while a new version is already generated, a simple reload will do the update then ...
-------------------------------------------------------------------------
-r15624 | ulfl | 2005-08-30 14:35:20 -0500 (Tue, 30 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/docbook/edg_src/EDG_chapter_tools.xml
-
-from Jaap Keuter:
-
-There were so many little things in chapter 2 that I had to get to it and
-weed them all out. Its mainly capitalizations, some wording, and the
-addition of GnuWin32 references.
-------------------------------------------------------------------------
-r15623 | ulfl | 2005-08-30 04:43:47 -0500 (Tue, 30 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/wiretap/file_access.c
-   M /trunk/wiretap/libpcap.c
-   M /trunk/wiretap/libpcap.h
-   M /trunk/wiretap/wtap-int.h
-   M /trunk/wiretap/wtap.h
-
-Add support for slightly modified libpcap file format with nanosecond resolution (currently supported by Ethereal only). Support for both read and write was added.
-
-The file format stays the same as the common libpcap format, only the lower part of the timestamp field uses nanoseconds instead of microseconds.
-
-This file format uses the libpcap magic number 0xa1b23c4d.
-------------------------------------------------------------------------
-r15622 | sahlberg | 2005-08-30 04:38:06 -0500 (Tue, 30 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-bootp.c
-
-remove some g_string_printf[a]() and replace it with g_snprintf() to ememified buffers
-
-
-------------------------------------------------------------------------
-r15621 | sahlberg | 2005-08-30 04:25:44 -0500 (Tue, 30 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/epan/addr_resolv.c
-
-remove a bunch of sprintf  that should be perfectly safe  but for the principle of it
-
-replace with g_snprintf()
-
-
-------------------------------------------------------------------------
-r15620 | sahlberg | 2005-08-30 04:05:44 -0500 (Tue, 30 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-dns.c
-
-replace some g_string_sprintf() with g_snprintf()
-
-remove one static 1kb char array and make it emem ep allocated
-
-
-------------------------------------------------------------------------
-r15619 | sahlberg | 2005-08-30 03:47:25 -0500 (Tue, 30 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-isis-clv.c
-
-move an array off the stack into emem allocated memory
-
-
-------------------------------------------------------------------------
-r15618 | sahlberg | 2005-08-30 03:41:18 -0500 (Tue, 30 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-isis-clv.c
-
-change g_string_sprintf() into g_snprintf()
-
-
-------------------------------------------------------------------------
-r15617 | sahlberg | 2005-08-30 03:23:50 -0500 (Tue, 30 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-windows-common.c
-
-change one g_string_sprintf() into g_snprintf()  and move one array of characters from the stack into emem allocated memory
-
-
-------------------------------------------------------------------------
-r15616 | sahlberg | 2005-08-30 03:06:16 -0500 (Tue, 30 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-wcp.c
-
-remove a variable that is never used and thus two also completely redundant g_free() calls.
-
-
-------------------------------------------------------------------------
-r15615 | sahlberg | 2005-08-30 02:54:15 -0500 (Tue, 30 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-wtp.c
-
-replace some (safe) g_string_sprintf  with g_snprintf()
-(so we dont have that many different string handling functions to memorize their usage of and can standardize on a single one )
-
-
-------------------------------------------------------------------------
-r15614 | etxrab | 2005-08-29 15:07:06 -0500 (Mon, 29 Aug 2005) | 12 lines
-Changed paths:
-   M /trunk/asn1/MAP_Dialogue/MAP_DialoguePDU.cnf
-   M /trunk/asn1/acse/packet-acse-template.c
-   M /trunk/asn1/cmip/packet-cmip-template.c
-   A /trunk/asn1/pres
-   A /trunk/asn1/pres/ISO8823-PRESENTATION.asn
-   A /trunk/asn1/pres/Makefile.nmake
-   A /trunk/asn1/pres/packet-pres-template.c
-   A /trunk/asn1/pres/packet-pres-template.h
-   A /trunk/asn1/pres/pres.cnf
-   M /trunk/epan/dissectors/packet-acse.c
-   M /trunk/epan/dissectors/packet-acse.h
-   M /trunk/epan/dissectors/packet-ber.c
-   M /trunk/epan/dissectors/packet-cmip.c
-   M /trunk/epan/dissectors/packet-pres.c
-   M /trunk/epan/dissectors/packet-pres.h
-   M /trunk/epan/dissectors/packet-ses.c
-   M /trunk/epan/dissectors/packet-ses.h
-
-MapDialougePDU.cnf
-Fix a typo.
-
-packet-ber.c 
-packet-acse.c
-packet-cmip.c
-- Add  OID(s)
-
-packet-ses.c
-Fix export of a value string and change names to the ones used in the protocol spec.
-
-Replace PRES dissector with an asn2eth generated one.
-------------------------------------------------------------------------
-r15613 | etxrab | 2005-08-29 11:51:58 -0500 (Mon, 29 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/tools/asn2eth.py
-
-Fix a typo 'BER_UNI_TAG_TeletexString'
-------------------------------------------------------------------------
-r15612 | jmayer | 2005-08-29 10:00:24 -0500 (Mon, 29 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc-fldb.c
-
-Change the field description to match the field name.
-
-------------------------------------------------------------------------
-r15611 | jmayer | 2005-08-29 09:15:32 -0500 (Mon, 29 Aug 2005) | 2 lines
-Changed paths:
-   A /trunk/tools/checkhf.pl
-
-Add a tool to check the hf_ values.
-
-------------------------------------------------------------------------
-r15610 | kukosa | 2005-08-29 08:00:53 -0500 (Mon, 29 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-per.c
-
-avoid few warnings
-------------------------------------------------------------------------
-r15609 | kukosa | 2005-08-29 06:37:08 -0500 (Mon, 29 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-per.c
-
-- fix of bug made with too fast release
-------------------------------------------------------------------------
-r15608 | kukosa | 2005-08-29 05:43:33 -0500 (Mon, 29 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-per.c
-
-- put real value insted of only text into tree for choice extensions
-- sort alphabet for restricted character strings
-- different handling of PER internal fields (only hide them)
-------------------------------------------------------------------------
-r15607 | sahlberg | 2005-08-29 03:24:15 -0500 (Mon, 29 Aug 2005) | 15 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
-
-In the SEQUENCE OF dissector helper
-
-Only count the number of items in the SEQUENCE OF   IFF we have the full TVB containing the entire blob.
-Dont count the items if the tvb is "short" since then this would just lead to a [short frame]  before a single item in the SEQUENCE OF has been dissected.
-
-
-
-
-Do we really need to count the items and create a FT_UINT field with the number of items at all?
-Then count the items as we are calling the subdissectors and 
-append the '# item[s]' text to the FT_NONE items after we finished the loop?
-
-
-
-
-------------------------------------------------------------------------
-r15606 | guy | 2005-08-28 20:18:27 -0500 (Sun, 28 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/wiretap/netxray.c
-
-Get rid of the old file header definition.
-
-Set the time stamp resolution based on whether the number of ticks per
-second is > 1 million or not.
-
-------------------------------------------------------------------------
-r15605 | jmayer | 2005-08-28 19:02:50 -0500 (Sun, 28 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/dissectors/Makefile.common
-   D /trunk/epan/dissectors/packet-afs-defs.h
-   D /trunk/epan/dissectors/packet-afs-macros.h
-   D /trunk/epan/dissectors/packet-afs-register-info.h
-   M /trunk/epan/dissectors/packet-afs.c
-
-Merge packet-afs-register-info.h, packet-afs-defs.h and packet-afs-macros.h
-into packet-afs.c
-
-
-------------------------------------------------------------------------
-r15604 | jmayer | 2005-08-28 18:28:16 -0500 (Sun, 28 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-gnm.c
-
-properties: svn-keywords -> svn:keywords
-------------------------------------------------------------------------
-r15603 | guy | 2005-08-28 18:11:53 -0500 (Sun, 28 Aug 2005) | 24 lines
-Changed paths:
-   M /trunk/AUTHORS
-   M /trunk/wiretap/AUTHORS
-   M /trunk/wiretap/netxray.c
-
-From Bill Meier:
-
-1. Use the new (good work!) 'nanosec' precision only for gig pods;
-2. Rework 'struct netxray_hdr' to make it (somewhat) easier
-   to maintain and revise:
-   a. Declare known hdr fields such as 'captype' instead
-      of using offsets in 'xxx placeholder' fields.
-   d. Define 'unknown' hdr fields using placeholder names
-      based upon hex-offset in the netxray header record.
-      (This isn't perfect, but I hope it will make things 
-       more manageable).
-3. Update hdr field info (based upon examination of various
-   capture files):
-   a. Define a hdr field which appears to be 'time-zone' 
-      [offset in hours from UTC] for the machine doing
-      the capture.
-      (Maybe this field can eventually be used for Ethereal
-       to display the (local) time as it was at the time
-       of the capture).
-   b. Describe certain hdr fields as being "file offsets"
-      (altho the exact use is still unclear).
-
-Update some comments.
-
-------------------------------------------------------------------------
-r15602 | guy | 2005-08-28 17:52:05 -0500 (Sun, 28 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/wiretap/lanalyzer.c
-
-Ethereal requires 64-bit integrer support; do the time stamp
-calculations with integers, which avoids some floating-point inaccuracy.
-
-------------------------------------------------------------------------
-r15601 | gerald | 2005-08-28 15:15:57 -0500 (Sun, 28 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/docbook/release-notes.xml
-
-Update the RSVP entry.
-
-------------------------------------------------------------------------
-r15600 | gerald | 2005-08-28 15:15:08 -0500 (Sun, 28 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-rsvp.c
-
-Correct an eariler infinite loop fix.  Fixes bug 382.
-
-------------------------------------------------------------------------
-r15599 | gerald | 2005-08-28 14:59:50 -0500 (Sun, 28 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ansi_map.c
-
-Add some length checks.  Fixes bugs 381, 384, and 386.
-
-------------------------------------------------------------------------
-r15598 | guy | 2005-08-28 14:55:44 -0500 (Sun, 28 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/wiretap/iptrace.c
-
-Get rid of a no-longer-true comment.
-
-------------------------------------------------------------------------
-r15597 | etxrab | 2005-08-28 14:50:36 -0500 (Sun, 28 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
-
-From Graeme Lunt:
-
-b) dissect_ber_set() to report missing fields and handle untagged CHOICEs
-c) dissect_ber_choice() to handle untagged CHOICEs (within the CHOICE)
-
-------------------------------------------------------------------------
-r15596 | guy | 2005-08-28 14:28:04 -0500 (Sun, 28 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-iax2.c
-
-Put back a subtraction of 1 millisecond that was lost.
-
-------------------------------------------------------------------------
-r15595 | guy | 2005-08-28 12:57:30 -0500 (Sun, 28 Aug 2005) | 12 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
-
-When creating subset tvbuffs, set the length to the minimum of the
-desired reported length and the remaining length, so we don't throw an
-exception at tvbuff creation time if we don't have all the desired data
-- we want to throw the exception at dissection time, so we can dissect
-the data we do have.
-
-Use "tvb_ensure_bytes_exist()" to force exceptions to be thrown.
-
-When "dissect_unknown_ber()" is called from "call_ber_oid_callback()",
-we're handing it a newly-created tvbuff, so the offset in that tvbuff
-should be zero.
-
-------------------------------------------------------------------------
-r15594 | etxrab | 2005-08-28 10:02:38 -0500 (Sun, 28 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/Makefile.common
-
-Update the Makefile with GNM.
-------------------------------------------------------------------------
-r15593 | etxrab | 2005-08-28 10:01:49 -0500 (Sun, 28 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/asn1/cmip/CMIP.asn
-   M /trunk/asn1/cmip/cmip.cnf
-   M /trunk/asn1/cmip/packet-cmip-template.c
-   M /trunk/epan/dissectors/packet-cmip.c
-   M /trunk/epan/dissectors/packet-cmip.h
-
-Co ordidnate CMIP abd GNM.
-------------------------------------------------------------------------
-r15592 | etxrab | 2005-08-28 09:56:03 -0500 (Sun, 28 Aug 2005) | 1 line
-Changed paths:
-   A /trunk/asn1/gnm
-   A /trunk/asn1/gnm/GNM.asn
-   A /trunk/asn1/gnm/Makefile.nmake
-   A /trunk/asn1/gnm/gnm.cnf
-   A /trunk/asn1/gnm/packet-gnm-template.c
-   A /trunk/asn1/gnm/packet-gnm-template.h
-   A /trunk/epan/dissectors/packet-gnm.c
-   A /trunk/epan/dissectors/packet-gnm.h
-
-Add dissection of ITU M.3100 GNM (GENERIC NETWORK INFORMATION MODEL).
-------------------------------------------------------------------------
-r15591 | guy | 2005-08-28 01:44:06 -0500 (Sun, 28 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-icmpv6.c
-   M /trunk/epan/libethereal.def
-   M /trunk/epan/to_str.c
-   M /trunk/epan/to_str.h
-
-Export "bytestring_to_str()", and use it when adding the link-layer
-address for the ND_OPT_TARGET_LINKADDR ICMPv6 packet type.
-
-------------------------------------------------------------------------
-r15590 | guy | 2005-08-28 01:41:49 -0500 (Sun, 28 Aug 2005) | 10 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-kerberos.h
-
-In at least some captures, some Kerberos packets contain just a Ticket
-structure.  Handle that.
-
-Don't muck with the columns, or put a top-level Kerberos protocol item
-into the protocol tree, until we decide that we really have a Kerberos
-packet.
-
-Do, however, clear the Info column if we're dissecting the Kerberos
-protocol.
-
-------------------------------------------------------------------------
-r15589 | guy | 2005-08-28 01:40:59 -0500 (Sun, 28 Aug 2005) | 10 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-kerberos.c
-
-In at least some captures, some Kerberos packets contain just a Ticket
-structure.  Handle that.
-
-Don't muck with the columns, or put a top-level Kerberos protocol item
-into the protocol tree, until we decide that we really have a Kerberos
-packet.
-
-Do, however, clear the Info column if we're dissecting the Kerberos
-protocol.
-
-------------------------------------------------------------------------
-r15588 | guy | 2005-08-28 01:38:30 -0500 (Sun, 28 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-radiotap.c
-
-Put the units after the values for signal and noise, as that's a bit
-more natural.
-
-------------------------------------------------------------------------
-r15587 | sahlberg | 2005-08-27 22:13:30 -0500 (Sat, 27 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ssh.c
-
-add missing value_string termination
-
-
-------------------------------------------------------------------------
-r15586 | sahlberg | 2005-08-27 22:09:58 -0500 (Sat, 27 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-slowprotocols.c
-   M /trunk/epan/dissectors/packet-slsk.c
-
-add missing value_string termination
-
-
-------------------------------------------------------------------------
-r15585 | sahlberg | 2005-08-27 22:05:53 -0500 (Sat, 27 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-scsi.c
-
-add missing value_string termination
-
-
-------------------------------------------------------------------------
-r15584 | sahlberg | 2005-08-27 22:01:37 -0500 (Sat, 27 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-rsvp.c
-   M /trunk/epan/dissectors/packet-rtcp.c
-
-add missing value_string termination
-
-
-------------------------------------------------------------------------
-r15583 | sahlberg | 2005-08-27 21:56:24 -0500 (Sat, 27 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-radius_packetcable.c
-
-add missing value_string termination
-
-
-------------------------------------------------------------------------
-r15582 | sahlberg | 2005-08-27 21:28:48 -0500 (Sat, 27 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/asn1/inap/packet-inap-template.c
-   M /trunk/epan/dissectors/packet-inap.c
-
-add missing value_string termination
-
-
-------------------------------------------------------------------------
-r15581 | sahlberg | 2005-08-27 21:24:01 -0500 (Sat, 27 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-icmpv6.c
-
-add missing value_string termination
-
-
-------------------------------------------------------------------------
-r15580 | sahlberg | 2005-08-27 21:13:35 -0500 (Sat, 27 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-gprs-llc.c
-
-add missing value_string termination
-
-
-------------------------------------------------------------------------
-r15579 | sahlberg | 2005-08-27 21:06:40 -0500 (Sat, 27 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-dlsw.c
-
-add missing value_string terminator
-
-
-------------------------------------------------------------------------
-r15578 | sahlberg | 2005-08-27 20:57:13 -0500 (Sat, 27 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-cops.c
-
-value_strings are terminated with {0,NULL}    not {0xff,NULL}
-
-
-
-------------------------------------------------------------------------
-r15577 | sahlberg | 2005-08-27 20:51:50 -0500 (Sat, 27 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/asn1/camel/packet-camel-template.c
-   M /trunk/epan/dissectors/packet-bootp.c
-   M /trunk/epan/dissectors/packet-camel.c
-   M /trunk/epan/dissectors/packet-camel.h
-
-another value_string that was not terminated
-
-
-fix a bug from the previous checking as well.
-
-------------------------------------------------------------------------
-r15576 | sahlberg | 2005-08-27 20:44:30 -0500 (Sat, 27 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-bootp.c
-
-add missing value_string termination
-
-
-------------------------------------------------------------------------
-r15575 | sahlberg | 2005-08-27 20:42:51 -0500 (Sat, 27 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-bgp.c
-
-add missing value_string termination
-
-
-------------------------------------------------------------------------
-r15574 | sahlberg | 2005-08-27 20:35:29 -0500 (Sat, 27 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-aim-messaging.c
-
-fix value_string termination
-
-
-------------------------------------------------------------------------
-r15573 | sahlberg | 2005-08-27 20:29:55 -0500 (Sat, 27 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-3g-a11.c
-
-add some missing value_string termination entries
-
-
-------------------------------------------------------------------------
-r15572 | guy | 2005-08-27 13:44:57 -0500 (Sat, 27 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
-
-...and don't print a separating comma if you haven't already printed an
-item.
-
-------------------------------------------------------------------------
-r15571 | guy | 2005-08-27 13:22:53 -0500 (Sat, 27 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-snmp.c
-
-Use "free()", not "g_free()", to free strings allocated with "malloc()".
-
-Don't free strings allocated with "ep_alloc()".
-
-------------------------------------------------------------------------
-r15570 | guy | 2005-08-27 13:16:35 -0500 (Sat, 27 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
-
-If you don't print an "(", don't print a ")".
-
-------------------------------------------------------------------------
-r15569 | guy | 2005-08-27 13:15:42 -0500 (Sat, 27 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/tethereal.c
-
-Set the time stamp precision; we need it when printing packet summary
-lines.
-
-Clean up indentation.
-
-------------------------------------------------------------------------
-r15568 | jmayer | 2005-08-27 10:11:00 -0500 (Sat, 27 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/make-manuf
-
-Remove S/A from company names
-------------------------------------------------------------------------
-r15567 | jmayer | 2005-08-27 06:59:10 -0500 (Sat, 27 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-extreme.c
-
-Cosmectical comment updates
-------------------------------------------------------------------------
-r15566 | jmayer | 2005-08-27 05:29:16 -0500 (Sat, 27 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-cisco-wireless.c
-
-Small update to comments and beginnings of a type field
-------------------------------------------------------------------------
-r15565 | jmayer | 2005-08-27 04:21:41 -0500 (Sat, 27 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/manuf
-   M /trunk/manuf.tmpl
-
-Rename Cisco (00:40:96) back to Aironet
-------------------------------------------------------------------------
-r15564 | jmayer | 2005-08-27 01:10:08 -0500 (Sat, 27 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-extreme.c
-
-Typo
-------------------------------------------------------------------------
-r15563 | jmayer | 2005-08-27 00:33:50 -0500 (Sat, 27 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/colorfilters
-   M /trunk/epan/dissectors/packet-extreme.c
-
-- Add checksum verification
-- Add checksum check to colorfilters
-
-
-------------------------------------------------------------------------
-r15562 | jmayer | 2005-08-27 00:22:44 -0500 (Sat, 27 Aug 2005) | 11 lines
-Changed paths:
-   M /trunk/epan/dissectors/Makefile.common
-   A /trunk/epan/dissectors/packet-cisco-wireless.c
-
-Started to decode some Cisco proprietary L2 protocol:
-
- * I couldn't find any documentation on this protocol. Neither
- * what it's good for nor what the elements do. This is purely
- * reverse engineered by looking at the hex dump of the packets.
- *
- * TODO
- *      - Find out more about unknown fields
- *      - Currently only one type of packet is really handled at all
-
-
-------------------------------------------------------------------------
-r15561 | jmayer | 2005-08-27 00:17:35 -0500 (Sat, 27 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ethertype.c
-   M /trunk/epan/dissectors/packet-llc.c
-   M /trunk/etypes.h
-   M /trunk/oui.h
-
-Add classification of an aironet proprietary L2 protocol
-in both, Ethernet V2 and IEEE802.3 SNAP packets.
-
-------------------------------------------------------------------------
-r15560 | jmayer | 2005-08-27 00:13:42 -0500 (Sat, 27 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/FAQ
-   M /trunk/help/faq.txt
-   M /trunk/manuf
-   M /trunk/wka.tmpl
-
-- Update wka.tmpl with two Extreme MAC addresses
-- Update manuf
-- Update faq
-
-------------------------------------------------------------------------
-r15559 | sahlberg | 2005-08-26 21:17:18 -0500 (Fri, 26 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-nbns.c
-
-remove the last remaining sprintf in epan/dissectors
-
-
-------------------------------------------------------------------------
-r15558 | sahlberg | 2005-08-26 20:19:12 -0500 (Fri, 26 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-kerberos.c
-
-removal of sprintf
-
-
-------------------------------------------------------------------------
-r15557 | sahlberg | 2005-08-26 20:11:02 -0500 (Fri, 26 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ranap.c
-
-sprintf removal
-
-
-------------------------------------------------------------------------
-r15556 | sahlberg | 2005-08-26 20:05:14 -0500 (Fri, 26 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-radius.c
-
-sprintf removal
-
-
-------------------------------------------------------------------------
-r15555 | sahlberg | 2005-08-26 19:58:55 -0500 (Fri, 26 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-nbns.c
-
-remove one sprintf
-
-
-------------------------------------------------------------------------
-r15554 | sahlberg | 2005-08-26 19:48:22 -0500 (Fri, 26 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-smb-sidsnooping.c
-
-sprintf removal
-
-
-------------------------------------------------------------------------
-r15553 | sahlberg | 2005-08-26 19:44:47 -0500 (Fri, 26 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-icmpv6.c
-
-sprintf removal
-
-
-------------------------------------------------------------------------
-r15552 | sahlberg | 2005-08-26 19:40:23 -0500 (Fri, 26 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-fcels.c
-
-sprintf removals
-
-
-------------------------------------------------------------------------
-r15551 | ulfl | 2005-08-26 19:37:48 -0500 (Fri, 26 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/config.nmake
-
-bump up the wiretap.dll version from 0.2 to 0.3 as I've recently changed the wiretap API in an incompatible way
-
-the timestamps now contain nseconds instead of microseconds and there's a new function added.
-
-Is there a similar place for the Unix builds where this version has to be changed too?
-------------------------------------------------------------------------
-r15550 | sahlberg | 2005-08-26 19:25:32 -0500 (Fri, 26 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-dcm.c
-   M /trunk/epan/dissectors/packet-fw1.c
-
-sprintf removal
-
-
-------------------------------------------------------------------------
-r15549 | sahlberg | 2005-08-26 19:10:02 -0500 (Fri, 26 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ieee80211.c
-
-sprintf big fix
-
-
-------------------------------------------------------------------------
-r15548 | sahlberg | 2005-08-26 19:09:19 -0500 (Fri, 26 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ip.c
-
-some sprintf removals
-
-
-------------------------------------------------------------------------
-r15547 | ulfl | 2005-08-26 18:13:43 -0500 (Fri, 26 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-clnp.c
-
-show the list of reassembled COTP fragments as a toplevel tree item and show it only at the last packet (not in every packet involved)
-------------------------------------------------------------------------
-r15546 | sahlberg | 2005-08-26 18:05:38 -0500 (Fri, 26 Aug 2005) | 6 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-tcp.c
-
-There will be a lot of tcp_unacked data structures we only need to keep
-around until they have been acked.
-Use a slab allocator for these structs so that we dont keep the structs around in memory longer than we need to.
-
-
-
-------------------------------------------------------------------------
-r15545 | guy | 2005-08-26 14:44:30 -0500 (Fri, 26 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/wiretap/airopeek9.c
-
-Fix indentation, and fix a comment.
-
-------------------------------------------------------------------------
-r15544 | guy | 2005-08-26 14:40:46 -0500 (Fri, 26 Aug 2005) | 7 lines
-Changed paths:
-   M /trunk/wiretap/erf.c
-   M /trunk/wiretap/erf.h
-   M /trunk/wiretap/etherpeek.c
-   M /trunk/wiretap/wtap-int.h
-
-Ethereal now requires 64-bit integer support, so get rid of the tests of
-G_HAVE_GINT64.
-
-Get rid of the floating-point stuff in the Etherpeek Classic file
-reading code, just use 64-bit integers.  Fix up the calculation of the
-nanoseconds portion of the time stamp.
-
-------------------------------------------------------------------------
-r15543 | gerald | 2005-08-26 14:01:58 -0500 (Fri, 26 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/docbook/release-notes.xml
-
-Docbook isn't HTML.  Use <ulink> instead of <a>.
-
-------------------------------------------------------------------------
-r15542 | ulfl | 2005-08-26 13:42:12 -0500 (Fri, 26 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-clnp.c
-
-don't use -1 if the remaining length (the fragment length) is actually zero, this will throw an Exception
-------------------------------------------------------------------------
-r15541 | gerald | 2005-08-26 10:47:32 -0500 (Fri, 26 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/docbook/release-notes.xml
-
-Add an item about ip.checksum_bad's new behavior.  Update the WinPcap
-installer notes.
-
-------------------------------------------------------------------------
-r15540 | gerald | 2005-08-26 10:46:53 -0500 (Fri, 26 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/asn1/h225/packet-h225-template.h
-   M /trunk/epan/dissectors/packet-h225.c
-   M /trunk/epan/dissectors/packet-h225.h
-
-Make sure the size of dialedDigits matches the ASN.1 definition.
-
-------------------------------------------------------------------------
-r15539 | gerald | 2005-08-26 10:45:31 -0500 (Fri, 26 Aug 2005) | 8 lines
-Changed paths:
-   M /trunk/asn1/h245/packet-h245-template.c
-   M /trunk/epan/dissectors/packet-h245.c
-   M /trunk/epan/emem.c
-
-Add a pair of #defines to emem.c that make ep_alloc() and se_alloc()
-use individual g_malloc() calls instead of memchunks.  This lets us use
-tools like Valgrind and ElectricFence to find bugs.
-
-In the H.245 dissector, set h245_pi to NULL after we're done with
-it so that we don't go stomping through our memchunks with muddy
-boots later on.  Fixes the current Buildbot menagerie failure.
-
-------------------------------------------------------------------------
-r15538 | kukosa | 2005-08-26 07:15:49 -0500 (Fri, 26 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/asn1/h225/packet-h225-template.c
-
-time resolution changes from packet-h225.c moved to packet-h225-template.c
-------------------------------------------------------------------------
-r15537 | guy | 2005-08-25 20:31:32 -0500 (Thu, 25 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/asn1/cmip/packet-cmip-template.c
-   M /trunk/epan/dissectors/packet-cmip.c
-   M /trunk/epan/dissectors/packet-cmip.h
-
-Dissectors registered with "register_ber_oid_dissector()" return void.
-
-Fix the spelling of "attribute".
-
-------------------------------------------------------------------------
-r15536 | ulfl | 2005-08-25 19:59:07 -0500 (Thu, 25 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/packaging/nsis/ethereal.nsi
-
-fix #339: don't try to install WinPcap with a silent installer
-------------------------------------------------------------------------
-r15535 | ulfl | 2005-08-25 19:01:49 -0500 (Thu, 25 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/colorfilters
-   M /trunk/packaging/nsis/ethereal.nsi
-
-fix #378:
-use "ip.checksum_bad == 1" instead of simply "ip.checksum_bad" in the example colorfilter file, as the implementation of that filter string changed
-
-install the global example files unconditionally by the win32 installer, to fix this problem and be compatible with the unix install process
-------------------------------------------------------------------------
-r15534 | ulfl | 2005-08-25 16:29:54 -0500 (Thu, 25 Aug 2005) | 6 lines
-Changed paths:
-   M /trunk/cfile.h
-   M /trunk/dftest.c
-   M /trunk/epan/column-utils.c
-   M /trunk/epan/column.c
-   M /trunk/epan/libethereal.def
-   M /trunk/epan/timestamp.c
-   M /trunk/epan/timestamp.h
-   M /trunk/epan/to_str.c
-   M /trunk/epan/to_str.h
-   M /trunk/file.c
-   M /trunk/gtk/main.c
-   M /trunk/gtk/menu.c
-   M /trunk/gtk/packet_list.c
-   M /trunk/gtk/recent.c
-   M /trunk/gtk/recent.h
-   M /trunk/tethereal.c
-   M /trunk/wiretap/5views.c
-   M /trunk/wiretap/airopeek9.c
-   M /trunk/wiretap/ascend.c
-   M /trunk/wiretap/cosine.c
-   M /trunk/wiretap/csids.c
-   M /trunk/wiretap/dbs-etherwatch.c
-   M /trunk/wiretap/erf.c
-   M /trunk/wiretap/etherpeek.c
-   M /trunk/wiretap/eyesdn.c
-   M /trunk/wiretap/hcidump.c
-   M /trunk/wiretap/i4btrace.c
-   M /trunk/wiretap/iptrace.c
-   M /trunk/wiretap/k12.c
-   M /trunk/wiretap/lanalyzer.c
-   M /trunk/wiretap/libpcap.c
-   M /trunk/wiretap/netmon.c
-   M /trunk/wiretap/nettl.c
-   M /trunk/wiretap/network_instruments.c
-   M /trunk/wiretap/netxray.c
-   M /trunk/wiretap/ngsniffer.c
-   M /trunk/wiretap/pppdump.c
-   M /trunk/wiretap/radcom.c
-   M /trunk/wiretap/snoop.c
-   M /trunk/wiretap/toshiba.c
-   M /trunk/wiretap/visual.c
-   M /trunk/wiretap/vms.c
-   M /trunk/wiretap/wtap-int.h
-   M /trunk/wiretap/wtap.h
-
-timestamp display precision:
-
-- automatic adjustment depending on file format
-- manual adjustment through menu items
-
-save the setting in the recent file
-------------------------------------------------------------------------
-r15533 | etxrab | 2005-08-25 16:25:52 -0500 (Thu, 25 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/asn1/cmip/CMIP.asn
-   M /trunk/asn1/cmip/packet-cmip-template.c
-   M /trunk/epan/dissectors/packet-cmip.c
-   M /trunk/epan/dissectors/packet-cmip.h
-
-Fix malformed packet if linkedId is present dissect some OID:s
-------------------------------------------------------------------------
-r15532 | ulfl | 2005-08-25 16:01:42 -0500 (Thu, 25 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-llc.c
-   M /trunk/oui.h
-
-add OUI's for Siemens and Xerox (and a hyperlink to the IEEE page)
-------------------------------------------------------------------------
-r15531 | etxrab | 2005-08-25 14:23:15 -0500 (Thu, 25 Aug 2005) | 12 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-sigcomp.c
-   M /trunk/epan/sigcomp-udvm.c
-   M /trunk/epan/sigcomp-udvm.h
-
-From Timo Metsala
-Changes:
-
-o Implemented CRC and SHA-1 (sort operations are still missing)
-
-o After state acccess, the execution start is not necessarily the
-  beginning of the bytecode; start IP is now a new parameter to
-  decompress_sigcomp_message()
-
-o Removed some hard-coded assumptions about bytecode starting at offset
-   128
-
-------------------------------------------------------------------------
-r15530 | lego | 2005-08-25 10:48:28 -0500 (Thu, 25 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/gtk/stats_tree_stat.c
-   M /trunk/tap-stats_tree.c
-
-http://bugs.ethereal.com/bugzilla/show_bug.cgi?id=377
-
-
-------------------------------------------------------------------------
-r15529 | gerald | 2005-08-25 08:58:34 -0500 (Thu, 25 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/gtk/conversations_table.c
-
-Fix sorting in the "Ports" columns.  Add a comment about address sorting.
-Remove unused code.
-
-------------------------------------------------------------------------
-r15528 | guy | 2005-08-25 03:16:08 -0500 (Thu, 25 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-radiotap.c
-
-Show dBm and dB signal and noise values differently, so that the user
-knows what they're getting.
-
-------------------------------------------------------------------------
-r15527 | sahlberg | 2005-08-25 02:45:57 -0500 (Thu, 25 Aug 2005) | 8 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-nbns.c
-
-when tracking PDU bondaries,   only do this IFF
-the next few bytes match an SMB header.
-
-1,  SMB is the only important protocol transported atop NBSS
-2, if we miss the first packets of a PDU, we DONT! want nbns to suddenly think  there are Xmegabytes until the end of it and thus prevent any real PDUs from being dissected.
-
-
-
-------------------------------------------------------------------------
-r15526 | guy | 2005-08-24 22:43:16 -0500 (Wed, 24 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-spnego.c
-
-I missed one OID string.
-
-------------------------------------------------------------------------
-r15525 | guy | 2005-08-24 22:31:54 -0500 (Wed, 24 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-cops.c
-   M /trunk/epan/dissectors/packet-pres.c
-   M /trunk/epan/dissectors/packet-spnego.c
-
-The OID strings returned by new_format_oid(), and the OID string
-returned by format_oid(), are allocated with the ep_alloc routines;
-don't free them.
-
-------------------------------------------------------------------------
-r15524 | guy | 2005-08-24 22:28:31 -0500 (Wed, 24 Aug 2005) | 10 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-snmp.c
-
-"sprint_realloc_objid()" expects to be handled a malloced buffer, so
-hand it one (and check for malloc failures), and it returns a malloced
-or realloced buffer, so free it when we're done.
-
-That means that routines that use it can return/supply back a null
-pointer, so check for that.
-
-Don't ep_allocate fixed-length buffers for formatted OID information,
-allocate one that's 'big enough".
-
-------------------------------------------------------------------------
-r15523 | guy | 2005-08-24 20:16:40 -0500 (Wed, 24 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/gtk/main.c
-
-The "secs" field of a "struct wtap_nstime" is a time_t, so it could be
-an int or it could be a long; print stuff computed from it with %lu, and
-cast the arguments to "long" so that it works on platforms where time_t
-*isn't* a long and where "long int" and "int" have different sizes.
-
-------------------------------------------------------------------------
-r15522 | guy | 2005-08-24 18:53:40 -0500 (Wed, 24 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/randpkt.c
-
-The time stamp in a Wiretap packet header is now a wtap_nstime, not a
-"struct timeval".
-
-------------------------------------------------------------------------
-r15521 | ulfl | 2005-08-24 17:27:21 -0500 (Wed, 24 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/editcap.c
-
-fix usec -> nsec translation
-------------------------------------------------------------------------
-r15520 | ulfl | 2005-08-24 16:31:56 -0500 (Wed, 24 Aug 2005) | 11 lines
-Changed paths:
-   M /trunk/capinfos.c
-   M /trunk/cfile.h
-   M /trunk/epan/column-utils.c
-   M /trunk/epan/dissectors/packet-afp.c
-   M /trunk/epan/dissectors/packet-afs.c
-   M /trunk/epan/dissectors/packet-aoe.c
-   M /trunk/epan/dissectors/packet-dcerpc.c
-   M /trunk/epan/dissectors/packet-fc.c
-   M /trunk/epan/dissectors/packet-fcp.c
-   M /trunk/epan/dissectors/packet-frame.c
-   M /trunk/epan/dissectors/packet-h225.c
-   M /trunk/epan/dissectors/packet-iax2.c
-   M /trunk/epan/dissectors/packet-iscsi.c
-   M /trunk/epan/dissectors/packet-ldap.c
-   M /trunk/epan/dissectors/packet-ncp2222.inc
-   M /trunk/epan/dissectors/packet-nlm.c
-   M /trunk/epan/dissectors/packet-rlogin.c
-   M /trunk/epan/dissectors/packet-rpc.c
-   M /trunk/epan/dissectors/packet-rtcp.c
-   M /trunk/epan/dissectors/packet-rtcp.h
-   M /trunk/epan/dissectors/packet-smb.c
-   M /trunk/epan/dissectors/packet-tcp.c
-   M /trunk/epan/frame_data.h
-   M /trunk/epan/h225-persistentdata.c
-   M /trunk/epan/libethereal.def
-   M /trunk/epan/nstime.c
-   M /trunk/epan/nstime.h
-   M /trunk/epan/stats_tree.c
-   M /trunk/epan/stats_tree_priv.h
-   M /trunk/file.c
-   M /trunk/gtk/file_dlg.c
-   M /trunk/gtk/flow_graph.c
-   M /trunk/gtk/io_stat.c
-   M /trunk/gtk/main.c
-   M /trunk/gtk/mgcp_stat.c
-   M /trunk/gtk/packet_list.c
-   M /trunk/gtk/rpc_progs.c
-   M /trunk/gtk/rtp_analysis.c
-   M /trunk/gtk/rtp_stream.c
-   M /trunk/gtk/sctp_stat.c
-   M /trunk/gtk/service_response_time_table.c
-   M /trunk/gtk/tcp_graph.c
-   M /trunk/gtk/voip_calls.c
-   M /trunk/merge.c
-   M /trunk/plugins/mate/mate_runtime.c
-   M /trunk/plugins/mgcp/packet-mgcp.c
-   M /trunk/proto_hier_stats.c
-   M /trunk/summary.c
-   M /trunk/tap-afpstat.c
-   M /trunk/tap-dcerpcstat.c
-   M /trunk/tap-iostat.c
-   M /trunk/tap-mgcpstat.c
-   M /trunk/tap-rpcprogs.c
-   M /trunk/tap-rpcstat.c
-   M /trunk/tap-smbstat.c
-   M /trunk/tethereal.c
-   M /trunk/timestats.c
-   M /trunk/wiretap/5views.c
-   M /trunk/wiretap/airopeek9.c
-   M /trunk/wiretap/ascend.c
-   M /trunk/wiretap/cosine.c
-   M /trunk/wiretap/csids.c
-   M /trunk/wiretap/dbs-etherwatch.c
-   M /trunk/wiretap/erf.c
-   M /trunk/wiretap/etherpeek.c
-   M /trunk/wiretap/eyesdn.c
-   M /trunk/wiretap/file_access.c
-   M /trunk/wiretap/hcidump.c
-   M /trunk/wiretap/i4btrace.c
-   M /trunk/wiretap/iptrace.c
-   M /trunk/wiretap/k12.c
-   M /trunk/wiretap/lanalyzer.c
-   M /trunk/wiretap/libpcap.c
-   M /trunk/wiretap/netmon.c
-   M /trunk/wiretap/nettl.c
-   M /trunk/wiretap/network_instruments.c
-   M /trunk/wiretap/netxray.c
-   M /trunk/wiretap/ngsniffer.c
-   M /trunk/wiretap/pppdump.c
-   M /trunk/wiretap/radcom.c
-   M /trunk/wiretap/snoop.c
-   M /trunk/wiretap/toshiba.c
-   M /trunk/wiretap/visual.c
-   M /trunk/wiretap/vms.c
-   M /trunk/wiretap/wtap-int.h
-   M /trunk/wiretap/wtap.c
-   M /trunk/wiretap/wtap.def
-   M /trunk/wiretap/wtap.h
-
-EVERYTHING IN THE BUILDBOT IS GOING TO BE RED!!! Sorry! 
-
-I've done more than a day to change the timestamp resolution from microseconds to nanoseconds. As I really don't want to loose those changes, I'm going to check in the changes I've done so far. Hopefully someone else will give me a helping hand with the things left ...
-
-What's done: I've changed the timestamp resolution from usec to nsec in almost any place in the sources. I've changed parts of the implementation in nstime.s/.h and a lot of places elsewhere.
-
-As I don't understand the editcap source (well, I'm maybe just too tired right now), hopefully someone else might be able to fix this soon.
-
-Doing all those changes, we get native nanosecond timestamp resolution in Ethereal. After fixing all the remaining issues, I'll take a look how to display this in a convenient way...
-
-As I've also changed the wiretap timestamp resolution from usec to nsec we might want to change the wiretap version number...
-------------------------------------------------------------------------
-r15519 | gerald | 2005-08-24 15:34:15 -0500 (Wed, 24 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-rtcp.c
-
-Properly initialize our hf_ arrays.  Make hf_rtcp_app_poc1_conn_session_type
-an FT_UINT8 instead of an FT_BOOLEAN.  This keeps the Solaris builder from
-crashing while running "-G values".
-
-------------------------------------------------------------------------
-r15518 | ulfl | 2005-08-24 13:35:54 -0500 (Wed, 24 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/column_info.h
-
-fix a comment typo
-------------------------------------------------------------------------
-r15517 | sahlberg | 2005-08-24 02:28:28 -0500 (Wed, 24 Aug 2005) | 6 lines
-Changed paths:
-   M /trunk/gtk/graph_analysis.c
-
-From Graeme Hewson
-
-Fix for infinite loop of configure events that were present for early GTK 2.4 in addition to 2.2
-
-
-
-------------------------------------------------------------------------
-r15516 | guy | 2005-08-23 03:49:57 -0500 (Tue, 23 Aug 2005) | 6 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-extreme.c
-
-The name in a Display TLV is null-terminated (or padded with a null byte
-and extra crud).
-
-Don't bother with length checking on the VLAN name item - if it's
-zero-length, so be it.
-
-------------------------------------------------------------------------
-r15515 | guy | 2005-08-23 03:34:19 -0500 (Tue, 23 Aug 2005) | 8 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-extreme.c
-
-Use "format_text()" and "tvb_format_text()" when displaying strings. 
-(It's not necessary, or desirable, to use them when fetching strings.)
-
-When processing a VLAN TLV, check the length of the TLV, so we don't end
-up running past the end of the TLV and getting a negative remaining
-length.  Append to the protocol tree item for the TLV, and the Info
-column, as we dissect the VLAN ID and VLAN name fields.
-
-------------------------------------------------------------------------
-r15514 | guy | 2005-08-23 03:01:46 -0500 (Tue, 23 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
-
-Fix the parenthesization of an expression.
-
-------------------------------------------------------------------------
-r15513 | lego | 2005-08-22 18:11:48 -0500 (Mon, 22 Aug 2005) | 8 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-k12.c
-   M /trunk/wiretap/k12.c
-
-Two fixes to tektronix k12 import:
-
-- it appears that there are more packet record types other than 0x00010020.
-     accept anything matching 0x00010020/28 as a packet record.
-
-- make the stack filename lowercase before comparing it so that capitalization is not an issue.
-
-
-------------------------------------------------------------------------
-r15512 | jmayer | 2005-08-22 12:48:17 -0500 (Mon, 22 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-extreme.c
-
-Length of string == lengt of element - headerlength
-------------------------------------------------------------------------
-r15511 | etxrab | 2005-08-22 11:26:29 -0500 (Mon, 22 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/AUTHORS
-   M /trunk/epan/dissectors/packet-rtcp.c
-
-From Timo Metsala:
-Updates the  PoC floor control parsing to comply to the latest version of the 
-specification. 
-
-------------------------------------------------------------------------
-r15510 | etxrab | 2005-08-22 11:19:31 -0500 (Mon, 22 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/asn1/gsmmap/GSMMAP.asn
-   M /trunk/asn1/gsmmap/gsm_map-exp.cnf
-   M /trunk/asn1/gsmmap/gsmmap.cnf
-   M /trunk/asn1/gsmmap/packet-gsm_map-template.c
-   M /trunk/epan/dissectors/packet-gsm_map.c
-
-Fix decoding of sendIdentificationArg/Res and ProvideSubscriberLocation
-------------------------------------------------------------------------
-r15509 | guy | 2005-08-22 02:12:20 -0500 (Mon, 22 Aug 2005) | 13 lines
-Changed paths:
-   M /trunk/epan/libethereal.def
-   M /trunk/epan/nstime.c
-   M /trunk/epan/nstime.h
-   M /trunk/gtk/service_response_time_table.c
-   M /trunk/gtk/service_response_time_table.h
-   M /trunk/timestats.c
-   M /trunk/timestats.h
-
-Add a "time_stat_init()" routine to initialize the fields of a
-"timestat_t".
-
-Move "nstime_to_msec()" to "epan/nstime.c", as it has nothing to do with
-a "timestat_t".
-
-Use structure assignment when possible.
-
-Fix the "addtime()" macro and use it in "time_stat_update()".
-
-Use "timestat_t"s, and the routines to manipulate them, in the service
-response time table code.
-
-------------------------------------------------------------------------
-r15508 | etxrab | 2005-08-22 00:49:09 -0500 (Mon, 22 Aug 2005) | 6 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
-
-From Graeme Lunt:
- Zero length elements (e.g. an empty SET) the logic is slightly wrong in get_ber_length().
-
-Make SET work.
-
-
-------------------------------------------------------------------------
-r15507 | guy | 2005-08-21 18:24:20 -0500 (Sun, 21 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/libethereal.def
-
-Export get_timesum().
-
-------------------------------------------------------------------------
-r15506 | guy | 2005-08-21 16:50:49 -0500 (Sun, 21 Aug 2005) | 15 lines
-Changed paths:
-   M /trunk/gtk/service_response_time_table.c
-
-Use "g_strdup_printf()" rather than formatting into a fixed-length
-buffer and "g_strdup()"ing it.
-
-Use the nstime.c routines to compute time deltas and to add up times.
-
-Don't add rows to the CList until a procedure gets a non-zero call
-count, so only the ones with non-zero call counts are displayed (and
-especially so that procedure numbers not corresponding to real
-procedures aren't displayed!).
-
-Ethereal requires 64-bit integer support, so don't bother checking
-whether we have it.
-
-Use the right format for 64-bit integers.
-
-------------------------------------------------------------------------
-r15505 | jmayer | 2005-08-21 16:32:19 -0500 (Sun, 21 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-extreme.c
-
-- Make it possible to filter on eap.null, eap.info, eap.unknown etc
-- Display "Info" instead of "System" in packet summary
-- Make the Null element look like the other elements.
-- Small element summary formatting changes
-
-------------------------------------------------------------------------
-r15504 | guy | 2005-08-21 15:24:59 -0500 (Sun, 21 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/gtk/ldap_stat.c
-
-Use the tap_dfilter_dlg mechanism.
-
-------------------------------------------------------------------------
-r15503 | guy | 2005-08-21 15:16:12 -0500 (Sun, 21 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/gtk/fc_stat.c
-
-Use the tap_dfilter_dlg code.
-
-------------------------------------------------------------------------
-r15502 | jmayer | 2005-08-21 14:25:45 -0500 (Sun, 21 Aug 2005) | 7 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-extreme.c
-
-- In the info summary, port# and slot# were exchanged
-- In the Display element, the length of the display string
-  was 4 too long
-- Display the Vlan id in the packet summary, not just "Vlan"
-- Remove trailing whitespace
-
-
-------------------------------------------------------------------------
-r15501 | guy | 2005-08-21 14:24:11 -0500 (Sun, 21 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/gtk/Makefile.am
-   M /trunk/gtk/Makefile.common
-   M /trunk/gtk/ansi_a_stat.c
-   M /trunk/gtk/ansi_map_stat.c
-   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_sctp.c
-   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/fc_stat.c
-   M /trunk/gtk/flow_graph.c
-   M /trunk/gtk/gsm_a_stat.c
-   M /trunk/gtk/gsm_map_stat.c
-   M /trunk/gtk/gsm_map_summary.c
-   D /trunk/gtk/gtk_stat_menu.h
-   D /trunk/gtk/gtk_stat_util.c
-   D /trunk/gtk/gtk_stat_util.h
-   A /trunk/gtk/gui_stat_menu.h (from /trunk/gtk/gtk_stat_menu.h:15499)
-   A /trunk/gtk/gui_stat_util.c (from /trunk/gtk/gtk_stat_util.c:15499)
-   A /trunk/gtk/gui_stat_util.h (from /trunk/gtk/gtk_stat_util.h:15499)
-   M /trunk/gtk/h225_counter.c
-   M /trunk/gtk/h225_ras_srt.c
-   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_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/ldap_stat.c
-   M /trunk/gtk/menu.c
-   M /trunk/gtk/mgcp_stat.c
-   M /trunk/gtk/mtp3_stat.c
-   M /trunk/gtk/mtp3_summary.c
-   M /trunk/gtk/rpc_progs.c
-   M /trunk/gtk/rpc_stat.c
-   M /trunk/gtk/rtp_analysis.c
-   M /trunk/gtk/rtp_stream_dlg.c
-   M /trunk/gtk/sctp_assoc_analyse.c
-   M /trunk/gtk/sctp_chunk_stat.c
-   M /trunk/gtk/sctp_stat_dlg.c
-   M /trunk/gtk/tap_dfilter_dlg.c
-   M /trunk/gtk/tcp_graph.c
-   M /trunk/gtk/voip_calls_dlg.c
-
-As per a suggestion by Ulf Lamping, rename gtk_*.[ch] to gui_*.[ch], so
-that it doesn't appear to be part of GTK+.
-
-------------------------------------------------------------------------
-r15500 | etxrab | 2005-08-21 13:42:54 -0500 (Sun, 21 Aug 2005) | 12 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-jxta.c
-   M /trunk/epan/dissectors/packet-jxta.h
-
-From Mike Duigou:
-
-A patch to the JXTA dissector. It's purpose is to improve 
-the behaviour of the dissector when dissecting captures that do not 
-include the whole conversation.
-
-The dissector is now more capable of isolating a conversation without 
-seeing the beginning of the conversation. It's still not always able to 
-pick up all conversations (suggestions, patches and hints welcome).
-
-improved some of the doxygen docs and comments.
-
-------------------------------------------------------------------------
-r15499 | ulfl | 2005-08-21 10:23:48 -0500 (Sun, 21 Aug 2005) | 11 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-tcp.c
-   M /trunk/epan/proto.h
-   M /trunk/gtk/proto_draw.c
-
-The protocol item in the protocol tree will have a gray background now, which makes it much better visible.
-
-Add some more optional flags to the protocol items, so more "special cases" can be marked in the protocol tree.
-
-New flags:
-/** The protocol field has a bad checksum */
-FI_CHECKSUM_ERROR
-/** The protocol field has an unusual sequence (e.g. TCP window is zero) */
-FI_SEQUENCE_WARNING
-/** The protocol field has a bad sequence (e.g. TCP segment is lost) */
-FI_SEQUENCE_ERROR
-------------------------------------------------------------------------
-r15498 | ulfl | 2005-08-21 10:13:47 -0500 (Sun, 21 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-ip.c
-
-as discussed some time ago: don't add bad checksum fields conditionally but use a subtree and use boolean flags instead
-------------------------------------------------------------------------
-r15497 | etxrab | 2005-08-21 08:52:33 -0500 (Sun, 21 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/asn1/gsmmap/gsmmap.cnf
-
-remove sprintf from gsm_a
-
-Do the update for the .cnf file too.
-------------------------------------------------------------------------
-r15496 | guy | 2005-08-21 06:09:36 -0500 (Sun, 21 Aug 2005) | 15 lines
-Changed paths:
-   M /trunk/gtk/Makefile.am
-   M /trunk/gtk/afp_stat.c
-   M /trunk/gtk/bootp_stat.c
-   M /trunk/gtk/dlg_utils.h
-   M /trunk/gtk/h225_counter.c
-   M /trunk/gtk/h225_ras_srt.c
-   M /trunk/gtk/mgcp_stat.c
-   M /trunk/gtk/sctp_chunk_stat.c
-   M /trunk/gtk/sip_stat.c
-   M /trunk/gtk/smb_stat.c
-   M /trunk/gtk/stats_tree_stat.c
-   M /trunk/gtk/tap_dfilter_dlg.c
-   D /trunk/gtk/tap_dfilter_dlg.h
-   M /trunk/gtk/wsp_stat.c
-   M /trunk/tap_dfilter_dlg.h
-
-"gtk_tap_dfilter_dlg_cb()" is no longer used outside
-gtk/tap_dfilter_dlg.c; don't export it.
-
-That means that gtk/tap_dfilter_dlg.h is no longer useful; get rid of
-it.
-
-Rename "gtk_tap_dfilter_dlg_cb()" to "tap_dfilter_dlg_cb()", as it's
-inside GTK+-specific code, so there's no need to distinguish it from
-non-GTK+ callbacks.
-
-Update some comments to reflect the name change and the new API for
-registering tap_dfilter_dlg stats.
-
-Make the AFP and SMB stats use the gtk/tap_dfilter_dlg.c stuff.
-
-------------------------------------------------------------------------
-r15495 | guy | 2005-08-21 05:29:47 -0500 (Sun, 21 Aug 2005) | 7 lines
-Changed paths:
-   M /trunk/gtk/flow_graph.c
-   M /trunk/gtk/h225_counter.c
-   M /trunk/gtk/h225_ras_srt.c
-   M /trunk/gtk/mgcp_stat.c
-   M /trunk/gtk/rtp_stream_dlg.c
-   M /trunk/gtk/tap_dfilter_dlg.c
-   M /trunk/gtk/voip_calls_dlg.c
-   M /trunk/gtk/wsp_stat.c
-
-Have "register_dfilter_stat()" add "..." to the menu item, as all menu
-items registered with it pop up a dialog box before displaying the stat.
-Don't pass a name with "..." to it.
-
-Put "..." into other menu items that pop up a dialog box before
-displaying the stat; remove "..." from other menu items that don't.
-
-------------------------------------------------------------------------
-r15494 | guy | 2005-08-21 05:00:56 -0500 (Sun, 21 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/stat_menu.h
-
-Set properties.
-
-------------------------------------------------------------------------
-r15493 | guy | 2005-08-21 04:48:27 -0500 (Sun, 21 Aug 2005) | 14 lines
-Changed paths:
-   M /trunk/Makefile.common
-   M /trunk/epan/dissectors/packet-ansi_637.c
-   M /trunk/file.c
-   M /trunk/gtk/Makefile.am
-   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/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_sctp.c
-   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/fc_stat.c
-   M /trunk/gtk/flow_graph.c
-   M /trunk/gtk/follow_dlg.c
-   M /trunk/gtk/gsm_a_stat.c
-   M /trunk/gtk/gsm_map_stat.c
-   M /trunk/gtk/gsm_map_summary.c
-   A /trunk/gtk/gtk_stat_menu.h (from /trunk/gtk/stat_menu.h:15480)
-   M /trunk/gtk/h225_counter.c
-   M /trunk/gtk/h225_ras_srt.c
-   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_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/ldap_stat.c
-   M /trunk/gtk/menu.c
-   M /trunk/gtk/mgcp_stat.c
-   M /trunk/gtk/mtp3_stat.c
-   M /trunk/gtk/mtp3_summary.c
-   M /trunk/gtk/rpc_progs.c
-   M /trunk/gtk/rpc_stat.c
-   M /trunk/gtk/rtp_analysis.c
-   M /trunk/gtk/rtp_stream.c
-   M /trunk/gtk/rtp_stream_dlg.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_dlg.c
-   M /trunk/gtk/sip_stat.c
-   M /trunk/gtk/smb_stat.c
-   D /trunk/gtk/stat_menu.h
-   M /trunk/gtk/stats_tree_stat.c
-   M /trunk/gtk/tap_dfilter_dlg.c
-   M /trunk/gtk/tcp_graph.c
-   M /trunk/gtk/voip_calls_dlg.c
-   M /trunk/gtk/wsp_stat.c
-   A /trunk/stat_menu.h
-   M /trunk/tap_dfilter_dlg.h
-
-Add a "register_dfilter_stat()", to register stats that take a display
-filter as an argument on the command line and have a dialog box to enter
-the display filter through the GUI.  Use it for all stats using
-"gtk_tap_dfilter_dlg_cb()".
-
-Add a top-level "stat_menu.h" file to declare "REGISTER_STAT_GROUP_E"
-for the benefit of the declaration of "register_dfilter_stat()" in the
-top-level "tap_dfilter_dlg.h".  Rename the "stat_menu.h" in the gtk
-directory to "gtk_stat_menu.h", so as not to have two headers with the
-same name.
-
-Get rid of headers not declaring any functions not being used in the
-module.
-
-------------------------------------------------------------------------
-r15492 | sahlberg | 2005-08-20 20:52:09 -0500 (Sat, 20 Aug 2005) | 3 lines
-Changed paths:
-   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-gtp.c
-   M /trunk/epan/dissectors/packet-uma.c
-
-remove sprintf from gsm_a
-
-
-------------------------------------------------------------------------
-r15491 | sahlberg | 2005-08-20 20:14:43 -0500 (Sat, 20 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-cops.c
-
-remove gmalloc and sprintf
-
-
-------------------------------------------------------------------------
-r15490 | sahlberg | 2005-08-20 19:55:46 -0500 (Sat, 20 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ansi_map.c
-
-remove sprintf
-
-
-------------------------------------------------------------------------
-r15489 | guy | 2005-08-20 17:28:49 -0500 (Sat, 20 Aug 2005) | 11 lines
-Changed paths:
-   M /trunk/gtk/ansi_a_stat.c
-   M /trunk/gtk/ansi_map_stat.c
-   M /trunk/gtk/gsm_a_stat.c
-   M /trunk/gtk/gsm_map_stat.c
-   M /trunk/gtk/mtp3_stat.c
-
-The routines registered with "register_stat_cmd_arg()" *are* called if
-you use the "-z" command-line options for them; make them pop up the
-appropriate windows.
-
-Move the calls to "register_stat_cmd_arg()" after the code to register
-the tap, just as the calls to "register_stat_menu_item()" are done after
-registering the tap.
-
-Use "g_strdup_printf()" rather than formatting into a fixed-length
-buffer and "g_strdup()"ing that buffer.
-
-------------------------------------------------------------------------
-r15488 | guy | 2005-08-20 17:26:32 -0500 (Sat, 20 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/gtk/rtp_stream.c
-
-We already have a tap that registers as a command-line stat under the
-name "rtp"; we don't need another one, especially given that
-"rtp_stream.c" doesn't directly implement a stat (note that it doesn't
-register a menu item).
-
-------------------------------------------------------------------------
-r15487 | ulfl | 2005-08-20 17:16:12 -0500 (Sat, 20 Aug 2005) | 8 lines
-Changed paths:
-   M /trunk/capture_sync.c
-
-capture_sync.c(290) : warning C4090: 'function' : different 'const' qualifiers
-capture_sync.c(290) : warning C4022: 'g_realloc' : pointer mismatch for actual parameter 1
-capture_sync.c(431) : warning C4090: 'function' : different 'const' qualifiers
-capture_sync.c(431) : warning C4022: 'g_free' : pointer mismatch for actual parameter 1
-capture_sync.c(442) : warning C4090: 'function' : different 'const' qualifiers
-capture_sync.c(442) : warning C4022: 'g_free' : pointer mismatch for actual parameter 1
-capture_sync.c(549) : warning C4090: 'function' : different 'const' qualifiers
-capture_sync.c(549) : warning C4022: 'g_free' : pointer mismatch for actual parameter 1
-------------------------------------------------------------------------
-r15486 | sahlberg | 2005-08-20 17:15:39 -0500 (Sat, 20 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ansi_637.c
-
-remove sprintf
-
-------------------------------------------------------------------------
-r15485 | ulfl | 2005-08-20 17:08:35 -0500 (Sat, 20 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/radius_dict.l
-
-radius_dict.l(216) : warning C4090: 'function' : different 'const' qualifiers
-radius_dict.l(216) : warning C4022: 'g_hash_table_insert' : pointer mismatch for actual parameter 2
-radius_dict.l(268) : warning C4090: 'function' : different 'const' qualifiers
-radius_dict.l(268) : warning C4022: 'g_free' : pointer mismatch for actual parameter 1
-------------------------------------------------------------------------
-r15484 | sahlberg | 2005-08-20 17:06:31 -0500 (Sat, 20 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ajp13.c
-
-removal of sprintf
-
-
-------------------------------------------------------------------------
-r15483 | guy | 2005-08-20 15:06:05 -0500 (Sat, 20 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/Makefile.common
-   D /trunk/epan/stat.c
-   D /trunk/epan/stat.h
-   A /trunk/epan/stat_cmd_args.c (from /trunk/epan/stat.c:15480)
-   A /trunk/epan/stat_cmd_args.h (from /trunk/epan/stat.h:15480)
-   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/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_sctp.c
-   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/fc_stat.c
-   M /trunk/gtk/flow_graph.c
-   M /trunk/gtk/gsm_a_stat.c
-   M /trunk/gtk/gsm_map_stat.c
-   M /trunk/gtk/h225_counter.c
-   M /trunk/gtk/h225_ras_srt.c
-   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_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/ldap_stat.c
-   M /trunk/gtk/main.c
-   M /trunk/gtk/mgcp_stat.c
-   M /trunk/gtk/mtp3_stat.c
-   M /trunk/gtk/rpc_progs.c
-   M /trunk/gtk/rpc_stat.c
-   M /trunk/gtk/rtp_analysis.c
-   M /trunk/gtk/rtp_stream.c
-   M /trunk/gtk/sctp_chunk_stat.c
-   M /trunk/gtk/sctp_stat.c
-   M /trunk/gtk/sip_stat.c
-   M /trunk/gtk/smb_stat.c
-   M /trunk/gtk/stats_tree_stat.c
-   M /trunk/gtk/voip_calls_dlg.c
-   M /trunk/gtk/wsp_stat.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/tethereal.c
-
-Rename epan/stat.[ch] to epan/stat_cmd_args.[ch] - it only deals with
-implementing the "-z" command-line arguments, it doesn't deal with *all*
-issues for stats.
-
-------------------------------------------------------------------------
-r15482 | guy | 2005-08-20 14:49:22 -0500 (Sat, 20 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/gtk/gui_utils.c
-   M /trunk/gtk/gui_utils.h
-
-Explain in more detail the split between the stuff in ui_util.h and in
-gtk/gui_utils.h.
-
-------------------------------------------------------------------------
-r15481 | guy | 2005-08-20 14:45:53 -0500 (Sat, 20 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/ui_util.h
-
-Explain in more detail what this file is for.
-
-------------------------------------------------------------------------
-r15480 | guy | 2005-08-20 13:17:36 -0500 (Sat, 20 Aug 2005) | 8 lines
-Changed paths:
-   M /trunk/asn1/acse/acse-exp.cnf
-   M /trunk/asn1/acse/packet-acse-template.c
-   M /trunk/epan/dissectors/packet-acse.c
-
-There's no longer a need to individually remove items from
-acse_ctx_oid_table - destroying the hash table will destroy the hash
-table items, and the destroy function no longer has any work to do
-because the OID strings are now allocated with se_strdup() (and thus get
-freed when the capture is closed).
-
-Regenerate packet-acse.c, which also regenerates acse-exp.cnf.
-
-------------------------------------------------------------------------
-r15479 | guy | 2005-08-20 13:01:07 -0500 (Sat, 20 Aug 2005) | 9 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ansi_map.c
-
-Flag the "add_string" parameter as unused if it is - and don't flag it
-as such if it *is* used. Get rid of the "add_string" parameter to
-"param_digits_basic", as that function *isn't* called through a pointer.
-
-Don't flag arguments in declarations as unused; you only do that in
-definitions.
-
-Clean up indentation.
-
-------------------------------------------------------------------------
-r15478 | guy | 2005-08-20 12:49:58 -0500 (Sat, 20 Aug 2005) | 7 lines
-Changed paths:
-   M /trunk/wiretap/ascend-grammar.y
-
-"ascend-grammar.h" is generated by Bison with a copy of the definition
-of the YYSTYPE structure in "ascend-grammar.c"; the intent is that other
-files include "ascend-grammar.h" if they need that structure, but that
-"ascend-grammar.c" not itself include "ascend-grammar.h".  If it *does*
-include it, the compiler complains about YYSTYPE being redefined (even
-though the two structures are identical).
-
-------------------------------------------------------------------------
-r15477 | jmayer | 2005-08-20 11:30:23 -0500 (Sat, 20 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/gtk/Makefile.am
-
-And if we add a file, add it to Makefile.am as well 
-------------------------------------------------------------------------
-r15476 | jmayer | 2005-08-20 11:24:35 -0500 (Sat, 20 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/Makefile.common
-
-If we delete a file, don't forget to remove it from Makefile.common
-
-------------------------------------------------------------------------
-r15475 | jmayer | 2005-08-20 11:19:22 -0500 (Sat, 20 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/bitswap.c
-   M /trunk/epan/dfilter/dfilter.c
-   M /trunk/epan/dfilter/grammar.lemon
-   D /trunk/epan/dissectors/packet-sna.h
-   M /trunk/epan/ftypes/ftypes.c
-   M /trunk/epan/stats_tree.c
-   M /trunk/gtk/print_mswin.c
-   M /trunk/mkstemp.c
-   M /trunk/plugins/mate/mate_grammar.lemon
-   M /trunk/plugins/mate/mate_util.c
-   M /trunk/wiretap/ascend-grammar.y
-   M /trunk/wiretap/wtap.c
-
-- Include the .h files in their .c files.
-- Remove epan/dissectors/packet-sna.h, it isn't used anywhere.
-
-------------------------------------------------------------------------
-r15474 | ulfl | 2005-08-20 10:58:42 -0500 (Sat, 20 Aug 2005) | 7 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-camel.c
-   M /trunk/epan/dissectors/packet-quakeworld.c
-   M /trunk/epan/dissectors/packet-smb.c
-
-removed MSVC warnings:
-
-packet-camel.c(6829) : warning C4101: 'version_str' : unreferenced local variable
-packet-quakeworld.c(172) : warning C4090: 'return' : different 'const' qualifiers
-packet-smb.c(10859) : warning C4101: 'target_name_len' : unreferenced local variable
-packet-smb.c(10860) : warning C4101: 'fn_len' : unreferenced local variable
-packet-smb.c(10858) : warning C4101: 'fn' : unreferenced local variable
-------------------------------------------------------------------------
-r15473 | ulfl | 2005-08-20 10:19:31 -0500 (Sat, 20 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-afp.h
-
-Win32: exported DATA must be declared with ETH_VAR_IMPORT to be available from outside the lib
-
-fixes current Win32 buildbot problem
-------------------------------------------------------------------------
-r15472 | jmayer | 2005-08-20 09:08:53 -0500 (Sat, 20 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/gtk/proto_hier_stats_dlg.c
-
-One file missed in last checkin
-------------------------------------------------------------------------
-r15471 | jmayer | 2005-08-20 09:02:00 -0500 (Sat, 20 Aug 2005) | 6 lines
-Changed paths:
-   M /trunk/gtk/about_dlg.c
-   M /trunk/gtk/capture_if_dlg.c
-   M /trunk/gtk/fileset_dlg.c
-   M /trunk/gtk/flow_graph.c
-   M /trunk/gtk/gsm_map_summary.c
-   M /trunk/gtk/gui_utils.c
-   M /trunk/gtk/gui_utils.h
-   M /trunk/gtk/main.h
-   M /trunk/gtk/menu.h
-   M /trunk/gtk/mgcp_stat.c
-   M /trunk/gtk/mtp3_summary.c
-   M /trunk/gtk/plugins_dlg.c
-   A /trunk/gtk/plugins_dlg.h
-   M /trunk/gtk/prefs_dlg.c
-   M /trunk/gtk/print_dlg.c
-   M /trunk/gtk/proto_dlg.c
-   M /trunk/gtk/proto_draw.c
-   M /trunk/gtk/proto_hier_stats_dlg.c
-   M /trunk/gtk/range_utils.c
-   M /trunk/gtk/recent.c
-   M /trunk/gtk/rpc_progs.c
-   M /trunk/gtk/rtp_analysis.c
-   M /trunk/gtk/rtp_stream.c
-   M /trunk/gtk/rtp_stream_dlg.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_stat.c
-   M /trunk/gtk/sctp_stat_dlg.c
-   M /trunk/gtk/tcp_graph.c
-   M /trunk/gtk/toolbar.h
-   M /trunk/gtk/voip_calls.c
-   M /trunk/gtk/voip_calls_dlg.c
-
-- Declare some functions static
-- Add plugins_dlg.h
-- Include .h files in their respective .c files
-- Include .h and remove extern declarations in .c files
-- set eol-style and keywords on gui_utils.[hc]
-
-------------------------------------------------------------------------
-r15470 | jmayer | 2005-08-20 08:21:09 -0500 (Sat, 20 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/ui_util.h
-
-Add some comments on the originating files of the declarations
-------------------------------------------------------------------------
-r15469 | sahlberg | 2005-08-20 08:02:08 -0500 (Sat, 20 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-diameter.c
-   M /trunk/epan/dissectors/packet-fcdns.c
-   M /trunk/epan/dissectors/packet-icep.c
-   M /trunk/epan/dissectors/packet-ieee80211.c
-
-more sprintf updates
-
-
-------------------------------------------------------------------------
-r15468 | jmayer | 2005-08-20 07:57:52 -0500 (Sat, 20 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/gtk/afp_stat.c
-   M /trunk/gtk/packet_win.c
-   M /trunk/gtk/proto_draw.c
-
-- Include ../ui_util.h into files that implement functions declard in
-  ui_util.h
-- Replace one instance of ui_util.h by gui_utils.h
-
-------------------------------------------------------------------------
-r15467 | sahlberg | 2005-08-20 07:38:45 -0500 (Sat, 20 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-aarp.c
-
-remove sprintf
-
-
-------------------------------------------------------------------------
-r15466 | sahlberg | 2005-08-20 07:28:16 -0500 (Sat, 20 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ansi_a.c
-
-get rid of a whole chunk of sprintfs
-
-
-------------------------------------------------------------------------
-r15465 | ulfl | 2005-08-20 07:09:48 -0500 (Sat, 20 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/gtk/Makefile.am
-   M /trunk/gtk/Makefile.common
-   M /trunk/gtk/about_dlg.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_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/conversations_table.c
-   M /trunk/gtk/dcerpc_stat.c
-   M /trunk/gtk/decode_as_dcerpc.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/fc_stat.c
-   M /trunk/gtk/file_dlg.c
-   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/goto_dlg.c
-   M /trunk/gtk/graph_analysis.c
-   M /trunk/gtk/gsm_a_stat.c
-   M /trunk/gtk/gsm_map_stat.c
-   M /trunk/gtk/gsm_map_summary.c
-   M /trunk/gtk/gui_prefs.c
-   A /trunk/gtk/gui_utils.c
-   A /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/hostlist_table.c
-   M /trunk/gtk/io_stat.c
-   M /trunk/gtk/layout_prefs.c
-   M /trunk/gtk/ldap_stat.c
-   M /trunk/gtk/main.c
-   M /trunk/gtk/mgcp_stat.c
-   M /trunk/gtk/mtp3_stat.c
-   M /trunk/gtk/mtp3_summary.c
-   M /trunk/gtk/nameres_prefs.c
-   M /trunk/gtk/packet_list.c
-   M /trunk/gtk/packet_win.c
-   M /trunk/gtk/plugins_dlg.c
-   M /trunk/gtk/prefs_dlg.c
-   M /trunk/gtk/print_dlg.c
-   M /trunk/gtk/print_prefs.c
-   M /trunk/gtk/progress_dlg.c
-   M /trunk/gtk/proto_dlg.c
-   M /trunk/gtk/proto_draw.c
-   M /trunk/gtk/proto_hier_stats_dlg.c
-   M /trunk/gtk/range_utils.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_stream_dlg.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_dlg.c
-   M /trunk/gtk/service_response_time_table.c
-   M /trunk/gtk/simple_dialog.c
-   M /trunk/gtk/sip_stat.c
-   M /trunk/gtk/smb_stat.c
-   M /trunk/gtk/stats_tree_stat.c
-   M /trunk/gtk/summary_dlg.c
-   M /trunk/gtk/supported_protos_dlg.c
-   M /trunk/gtk/tap_dfilter_dlg.c
-   M /trunk/gtk/tcp_graph.c
-   M /trunk/gtk/text_page.c
-   D /trunk/gtk/ui_util.c
-   D /trunk/gtk/ui_util.h
-   M /trunk/gtk/voip_calls_dlg.c
-   M /trunk/gtk/wsp_stat.c
-
-renamed ui_util.c/.h to gui_utils.c/.h to prevent confusion with identical named ui_util.h in / dir
-------------------------------------------------------------------------
-r15464 | guy | 2005-08-20 05:03:07 -0500 (Sat, 20 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/libethereal.def
-
-From Gisle Vanem: export get_timedelta() for use by AFP and SMB taps.
-
-------------------------------------------------------------------------
-r15463 | guy | 2005-08-20 04:35:55 -0500 (Sat, 20 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/osi-utils.c
-
-The order in which arguments to a function are evaluated isn't defined
-by C.  Do decrements of arguments before passing them to a function.
-
-------------------------------------------------------------------------
-r15462 | guy | 2005-08-20 04:08:24 -0500 (Sat, 20 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/file.c
-
-Widen some variables so the code in question can handle large files if,
-as, and when Wiretap can handle them.
-
-------------------------------------------------------------------------
-r15461 | guy | 2005-08-20 03:15:21 -0500 (Sat, 20 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/libethereal.def
-
-Export AFP's CommandCode_vals for use by the AFP taps.
-
-------------------------------------------------------------------------
-r15460 | sahlberg | 2005-08-20 00:37:08 -0500 (Sat, 20 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ospf.c
-
-sprintf elimination
-
-
-------------------------------------------------------------------------
-r15459 | sahlberg | 2005-08-20 00:31:36 -0500 (Sat, 20 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-wbxml.c
-
-sprintf removals
-
-
-------------------------------------------------------------------------
-r15458 | sahlberg | 2005-08-19 21:51:13 -0500 (Fri, 19 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-per.c
-   M /trunk/epan/dissectors/packet-tds.c
-
-remove some more sprintf
-
-
-------------------------------------------------------------------------
-r15457 | sahlberg | 2005-08-19 21:33:33 -0500 (Fri, 19 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
-   M /trunk/epan/dissectors/packet-per.c
-   M /trunk/epan/osi-utils.c
-   M /trunk/epan/osi-utils.h
-   M /trunk/epan/sna-utils.c
-   M /trunk/epan/sna-utils.h
-   M /trunk/epan/to_str.c
-   M /trunk/epan/to_str.h
-   M /trunk/epan/value_string.c
-   M /trunk/epan/xdlc.c
-
-removal of even more sprintf
-
-
-------------------------------------------------------------------------
-r15456 | guy | 2005-08-19 21:19:37 -0500 (Fri, 19 Aug 2005) | 6 lines
-Changed paths:
-   M /trunk/Makefile.common
-   M /trunk/epan/dissectors/packet-afp.c
-   M /trunk/epan/dissectors/packet-afp.h
-   M /trunk/gtk/Makefile.common
-   A /trunk/gtk/afp_stat.c
-   A /trunk/tap-afpstat.c
-
-For AFP requests, add in the frame with the (last part of the) reply, if
-possible, and, for AFP replies, add in the frame with the request and
-the time between those two frames.
-
-Have AFP per-request-type RTT statistics, similar to SMB's statistics.
-
-------------------------------------------------------------------------
-r15455 | guy | 2005-08-19 21:15:02 -0500 (Fri, 19 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-smb.c
-   M /trunk/tap-smbstat.c
-
-Use get_timedelta() to get the difference between two times.
-
-------------------------------------------------------------------------
-r15454 | guy | 2005-08-19 21:14:01 -0500 (Fri, 19 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/cfile.h
-   M /trunk/file.c
-   M /trunk/tethereal.c
-
-Get rid of f_len field in capture_file structure - we can just keep
-the length locally. within cf_read().
-
-------------------------------------------------------------------------
-r15453 | jmayer | 2005-08-19 21:05:02 -0500 (Fri, 19 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/configure.in
-   M /trunk/wiretap/configure.in
-
-Add  -Wmissing-declarations -Wwrite-strings to extra-gcc-flags
-------------------------------------------------------------------------
-r15452 | jmayer | 2005-08-19 21:03:40 -0500 (Fri, 19 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-alcap.c
-
-Trivial warning fixes
-------------------------------------------------------------------------
-r15451 | sahlberg | 2005-08-19 20:24:23 -0500 (Fri, 19 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-mtp3.c
-   M /trunk/epan/dissectors/packet-mtp3.h
-   M /trunk/epan/to_str.c
-   M /trunk/gtk/mtp3_stat.c
-
-remove sprintf from mtp3
-
-
-------------------------------------------------------------------------
-r15450 | sahlberg | 2005-08-19 20:10:40 -0500 (Fri, 19 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-pgm.c
-   M /trunk/epan/dissectors/packet-x11.c
-
-remove sprintf from pgm and x11
-
-
-------------------------------------------------------------------------
-r15449 | sahlberg | 2005-08-19 19:33:08 -0500 (Fri, 19 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-v120.c
-   M /trunk/epan/dissectors/packet-wccp.c
-
-remove sprintf from v120 and wccp
-
-
-------------------------------------------------------------------------
-r15448 | sahlberg | 2005-08-19 19:27:46 -0500 (Fri, 19 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-rpc.c
-
-remove sprintf from rpc
-
-
-------------------------------------------------------------------------
-r15447 | sahlberg | 2005-08-19 19:07:20 -0500 (Fri, 19 Aug 2005) | 8 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-rtps.c
-
-fix buffer  handling and remove sprintf
-
-
-there was at least one instance where an ip address was printed in dotted decimal to a 10 byte array on the stack.
-I.e. a guaranteed buffer overrun for a stack object.
-
-
-
-------------------------------------------------------------------------
-r15446 | sahlberg | 2005-08-19 18:28:23 -0500 (Fri, 19 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-smpp.c
-   M /trunk/epan/dissectors/packet-x25.c
-
-more  sprintf removals,
-replace some char arrays on the stack to ep_alloc()ed memory
-
-
-------------------------------------------------------------------------
-r15445 | sahlberg | 2005-08-19 18:03:56 -0500 (Fri, 19 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-spnego.c
-
-remove a gmalloc and al sprintf  from spnego
-
-
-------------------------------------------------------------------------
-r15444 | sahlberg | 2005-08-19 17:44:56 -0500 (Fri, 19 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-snmp.c
-
-no more g_malloc  or sprintf   in snmp
-
-
-------------------------------------------------------------------------
-r15443 | sahlberg | 2005-08-19 17:34:28 -0500 (Fri, 19 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-snmp.c
-
-more gmalloc sprintf removals
-
-
-------------------------------------------------------------------------
-r15442 | sahlberg | 2005-08-19 17:26:10 -0500 (Fri, 19 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-snmp.c
-
-remove two gmalloc and some sprintf
-
-
-------------------------------------------------------------------------
-r15441 | sahlberg | 2005-08-19 16:19:49 -0500 (Fri, 19 Aug 2005) | 9 lines
-Changed paths:
-   M /trunk/asn1/h245/packet-h245-template.c
-   M /trunk/epan/dissectors/packet-h245.c
-   M /trunk/epan/dissectors/packet-h245.h
-
-from Jeff Snyder
-
-
-H245 updates
-make multiple pdus/frame work
-
-update to have nu limit on the max number of tappable pdus per frame
-
-
-------------------------------------------------------------------------
-r15440 | ulfl | 2005-08-19 16:13:49 -0500 (Fri, 19 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/ringbuffer.c
-
-fix #357: increment ring buffer "file names" (again?)
-------------------------------------------------------------------------
-r15439 | ulfl | 2005-08-19 16:09:38 -0500 (Fri, 19 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/docbook/eug_src/EUG_chapter_build_install.xml
-
-as the WinPcap installation is now longer really needed (it has become part of the main Ethereal installer) clarify things about installation
-------------------------------------------------------------------------
-r15438 | guy | 2005-08-19 14:44:21 -0500 (Fri, 19 Aug 2005) | 6 lines
-Changed paths:
-   M /trunk/config.nmake
-
-We've changed the Wiretap ABI (removed one routine), so bump the library
-version number.
-
-WinPcap 3.1 is no longer in alpha.  (Should we make WINPCAP_VERSION 3.1,
-so we default to assuming WinPcap 3.1?)
-
-------------------------------------------------------------------------
-r15437 | guy | 2005-08-19 14:40:00 -0500 (Fri, 19 Aug 2005) | 12 lines
-Changed paths:
-   M /trunk/capinfos.c
-   M /trunk/cfile.h
-   M /trunk/file.c
-   M /trunk/gtk/file_dlg.c
-   M /trunk/gtk/fileset_dlg.c
-   M /trunk/merge.c
-   M /trunk/merge.h
-   M /trunk/ringbuffer.c
-   M /trunk/tethereal.c
-   M /trunk/wiretap/ascend.c
-   M /trunk/wiretap/wtap.c
-   M /trunk/wiretap/wtap.def
-   M /trunk/wiretap/wtap.h
-
-Add APIs to Wiretap to return the file of the size as supplied by the OS
-(so if the file's gzipped, it's *NOT* the size of the file after
-uncompressing), and an approximation of the amount of that data read
-sequentially so far.
-
-Use those for various progress bars and the like.
-
-Make the fstat() in the Ascend trace reader directly use wth->fd, as
-it's inside Wiretap; that gets rid of the last caller of wtap_fd() (as
-we're no longer directly using fstat() or lseek() in Ethereal), so get
-rid of wtap_fd().
-
-------------------------------------------------------------------------
-r15436 | ulfl | 2005-08-19 14:29:29 -0500 (Fri, 19 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/docbook/eug_src/EUG_chapter_introduction.xml
-
-add information about unsupported/fresh windows versions
-------------------------------------------------------------------------
-r15435 | gerald | 2005-08-19 13:28:50 -0500 (Fri, 19 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-smb.c
-
-Restore pinfo->private_data after calling another dissector, in case it gets
-overwritten.  Fixes bug 367.
-
-------------------------------------------------------------------------
-r15434 | lego | 2005-08-19 11:46:46 -0500 (Fri, 19 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/Makefile.common
-
-Add packet-alcap.h to the Makefiles.
-
-
-------------------------------------------------------------------------
-r15433 | lego | 2005-08-19 10:50:48 -0500 (Fri, 19 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/asn1/acse/packet-acse-template.c
-   M /trunk/epan/dissectors/packet-acse.c
-
-some ememification
-
-
-------------------------------------------------------------------------
-r15432 | lego | 2005-08-19 10:46:39 -0500 (Fri, 19 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/asn1/camel/camel.asn
-   M /trunk/asn1/camel/packet-camel-template.h
-
-add the $Id:$
-
-
-------------------------------------------------------------------------
-r15431 | lego | 2005-08-19 10:35:42 -0500 (Fri, 19 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc-lsa.c
-   M /trunk/epan/dissectors/packet-dcerpc-samr.c
-   M /trunk/epan/dissectors/packet-fw1.c
-
-some ememification
-
-
-------------------------------------------------------------------------
-r15430 | lego | 2005-08-19 06:53:39 -0500 (Fri, 19 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-alcap.c
-   A /trunk/epan/dissectors/packet-alcap.h
-
-Keep information about the call-leg so that all the messages of a leg can be filtered given a parameter of it.
-Create the header to export the structures thyat hold that info.
-
-
-------------------------------------------------------------------------
-r15429 | guy | 2005-08-19 05:00:14 -0500 (Fri, 19 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/Makefile.common
-   M /trunk/epan/Makefile.common
-   M /trunk/epan/libethereal.def
-   A /trunk/epan/stat.c (from /trunk/stat.c:15427)
-   A /trunk/epan/stat.h (from /trunk/stat.h:15427)
-   M /trunk/gtk/ansi_a_stat.c
-   M /trunk/gtk/ansi_map_stat.c
-   M /trunk/gtk/bootp_stat.c
-   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_sctp.c
-   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/fc_stat.c
-   M /trunk/gtk/flow_graph.c
-   M /trunk/gtk/gsm_a_stat.c
-   M /trunk/gtk/gsm_map_stat.c
-   M /trunk/gtk/h225_counter.c
-   M /trunk/gtk/h225_ras_srt.c
-   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_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/ldap_stat.c
-   M /trunk/gtk/main.c
-   M /trunk/gtk/mgcp_stat.c
-   M /trunk/gtk/mtp3_stat.c
-   M /trunk/gtk/rpc_progs.c
-   M /trunk/gtk/rpc_stat.c
-   M /trunk/gtk/rtp_analysis.c
-   M /trunk/gtk/rtp_stream.c
-   M /trunk/gtk/sctp_chunk_stat.c
-   M /trunk/gtk/sctp_stat.c
-   M /trunk/gtk/sip_stat.c
-   M /trunk/gtk/smb_stat.c
-   M /trunk/gtk/stats_tree_stat.c
-   M /trunk/gtk/voip_calls_dlg.c
-   M /trunk/gtk/wsp_stat.c
-   D /trunk/stat.c
-   D /trunk/stat.h
-   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/tethereal.c
-
-Move the stats.[ch] stuff into epan, so plugins can use it.
-
-------------------------------------------------------------------------
-r15428 | sahlberg | 2005-08-19 04:47:11 -0500 (Fri, 19 Aug 2005) | 12 lines
-Changed paths:
-   M /trunk/AUTHORS
-   M /trunk/epan/dissectors/packet-ldap.c
-
-From Matthias Drochner:
-I'll attach a patch which fixes the decoding of authenticated
-LDAP bind replies. The SASL credentials are always "context
-specific" in terms of ASN.1.
-I've tested the fix with DIGEST-MD5 authentication.
-(Without the patch, ethereal complains about a wrong type
-because it expects an ASN.a octet string.)
-(You might also consider a stricter check of the ASN.1 header
-type for the GSSAPI and GSS-SPNEGO cases, but I can't test this.)
-
-
-
-------------------------------------------------------------------------
-r15427 | guy | 2005-08-19 04:29:41 -0500 (Fri, 19 Aug 2005) | 8 lines
-Changed paths:
-   M /trunk/Makefile.common
-   M /trunk/epan/libethereal.def
-   M /trunk/epan/tap.c
-   M /trunk/epan/tap.h
-   M /trunk/gtk/Makefile.am
-   M /trunk/gtk/ansi_a_stat.c
-   M /trunk/gtk/ansi_map_stat.c
-   M /trunk/gtk/bootp_stat.c
-   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_sctp.c
-   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/fc_stat.c
-   M /trunk/gtk/flow_graph.c
-   M /trunk/gtk/follow_dlg.c
-   M /trunk/gtk/gsm_a_stat.c
-   M /trunk/gtk/gsm_map_stat.c
-   M /trunk/gtk/gsm_map_summary.c
-   M /trunk/gtk/h225_counter.c
-   M /trunk/gtk/h225_ras_srt.c
-   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_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/ldap_stat.c
-   M /trunk/gtk/main.c
-   M /trunk/gtk/menu.c
-   M /trunk/gtk/mgcp_stat.c
-   M /trunk/gtk/mtp3_stat.c
-   M /trunk/gtk/mtp3_summary.c
-   M /trunk/gtk/rpc_progs.c
-   M /trunk/gtk/rpc_stat.c
-   M /trunk/gtk/rtp_analysis.c
-   M /trunk/gtk/rtp_stream.c
-   M /trunk/gtk/rtp_stream_dlg.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_dlg.c
-   M /trunk/gtk/sip_stat.c
-   M /trunk/gtk/smb_stat.c
-   A /trunk/gtk/stat_menu.h (from /trunk/gtk/tap_menu.h:15420)
-   M /trunk/gtk/stats_tree_stat.c
-   D /trunk/gtk/tap_menu.h
-   M /trunk/gtk/tcp_graph.c
-   M /trunk/gtk/voip_calls_dlg.c
-   M /trunk/gtk/wsp_stat.c
-   A /trunk/stat.c
-   A /trunk/stat.h
-   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/tethereal.c
-
-Move the APIs for registering and processing "-z" command-line arguments
-and "Statistics" menu items into "stat.h" and "stat.c", to separate them
-from the core tapping APIs.  A tap could conceivably not register as a
-"-z" command-line argument or "Statistics" menu item, and a stat could
-conceivably not be implemented as a tap, and dissectors that implement
-tapping points don't need the UI-related stuff from "stat.h", they just
-want the tap-related stuff in <epan/tap.h>.
-
-------------------------------------------------------------------------
-r15426 | sahlberg | 2005-08-19 04:28:58 -0500 (Fri, 19 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/AUTHORS
-   M /trunk/epan/dissectors/packet-ptp.c
-
-From Markus Seehofer
-
-PTP updates
-
-
-------------------------------------------------------------------------
-r15425 | sahlberg | 2005-08-19 03:43:58 -0500 (Fri, 19 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/gtk/ansi_a_stat.c
-   M /trunk/gtk/ansi_map_stat.c
-   M /trunk/gtk/gsm_a_stat.c
-   M /trunk/gtk/gsm_map_stat.c
-
-From Michael Lum:
-
-Statistics data structure was not being passed to the draw routine.
-
-
-------------------------------------------------------------------------
-r15424 | sahlberg | 2005-08-19 03:39:19 -0500 (Fri, 19 Aug 2005) | 7 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ansi_map.c
-
-From Michael Lum:
-Fixed quite a few parameter IDs based on TIA-41-E (originally my mistakes).
-Added support for filtering by DN, MIN, etc.
-Moved where embedded 'Bearer Data' parameter is sub-dissected.
-
-
-
-------------------------------------------------------------------------
-r15423 | sahlberg | 2005-08-19 03:36:38 -0500 (Fri, 19 Aug 2005) | 7 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-sccp.c
-
-From Michael Lum
-
-Slight modification to allow a protocol beneath SCCP (i.e. MTP3)
-specify how the SCCP message should be dissected.
-
-
-
-------------------------------------------------------------------------
-r15422 | sahlberg | 2005-08-19 03:32:27 -0500 (Fri, 19 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-3g-a11.c
-
-from Michael Lum
-
-update to 3g-a11  
-Modified support for ESN in the Airlink Setup Record
-
-------------------------------------------------------------------------
-r15421 | sahlberg | 2005-08-19 03:19:52 -0500 (Fri, 19 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-etheric.c
-
-remove gmalloc from etheric
-
-
-------------------------------------------------------------------------
-r15420 | sahlberg | 2005-08-19 03:12:26 -0500 (Fri, 19 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-smb-common.c
-   M /trunk/epan/dissectors/packet-smb-common.h
-   M /trunk/epan/dissectors/packet-smb-logon.c
-
-remove g_malloc() from packet-smb-common
-
-
-------------------------------------------------------------------------
-r15419 | sahlberg | 2005-08-19 03:03:28 -0500 (Fri, 19 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-rtsp.c
-
-remove g_malloc()
-
-
-------------------------------------------------------------------------
-r15418 | ulfl | 2005-08-19 02:03:34 -0500 (Fri, 19 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/file.c
-
-file.c(3079) : warning C4090: 'function' : different 'const' qualifiers
-file.c(3079) : warning C4022: 'cf_callback_invoke' : pointer mismatch for actual parameter 2
-------------------------------------------------------------------------
-r15417 | guy | 2005-08-18 20:57:44 -0500 (Thu, 18 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/gtk/fileset_dlg.c
-
-Include <string.h> to declare "strrchr()".
-
-Clean up indentation.
-
-------------------------------------------------------------------------
-r15416 | guy | 2005-08-18 20:56:14 -0500 (Thu, 18 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
-
-Set "hoffset" before using it.
-
-------------------------------------------------------------------------
-r15415 | guy | 2005-08-18 20:17:24 -0500 (Thu, 18 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/cfile.h
-   M /trunk/file.c
-   M /trunk/gtk/main.c
-   M /trunk/summary.c
-   M /trunk/tethereal.c
-
-Have "f_datalen" keep track of the number of bytes of uncompressed file
-data, so that "f_len" still keeps the size of the underlying file (which
-is necessary in order to make the progress bar when files are being read
-work correctly).
-
-------------------------------------------------------------------------
-r15414 | etxrab | 2005-08-18 16:36:59 -0500 (Thu, 18 Aug 2005) | 12 lines
-Changed paths:
-   M /trunk/asn1/tcap/packet-tcap-template.c
-   M /trunk/asn1/tcap/tcap.cnf
-   M /trunk/epan/dissectors/packet-ber.c
-   M /trunk/epan/dissectors/packet-tcap.c
-   M /trunk/epan/dissectors/packet-tcap.h
-
-From Tim Endean:
-
-Small patch to ber.c
-
-The tcap dissector has been updated to use this length. I have not tested other asn.1 dissectors to ensure that they correctly use the indefinite encoding flag instead of the length value returning zero. 
-
-There may also be some problems when re-assembly is needed, but the ability to deal with indefinite length is much more useful.
-
-For developers the get_ber_length now returns the length of the pdu including the EOC, where you have dissectors that use packet-ber.c the eoc may need to be dealt with separately.
-
-The tcap dissector has had numerous changes to make it less cluttered, and the useful feature of the previous version where a dialogue could be filtered out by selecting either the source or destination transaction ID has been incorporated into this version.
-
-------------------------------------------------------------------------
-r15413 | ulfl | 2005-08-18 14:36:19 -0500 (Thu, 18 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/gtk/fileset_dlg.c
-
-fix #305: don't get file creation date/time of the file but just use the filename
-------------------------------------------------------------------------
-r15412 | ulfl | 2005-08-18 14:31:15 -0500 (Thu, 18 Aug 2005) | 6 lines
-Changed paths:
-   M /trunk/asn1/h245/packet-h245-template.c
-   M /trunk/config.h.win32
-   M /trunk/epan/column-utils.c
-   M /trunk/epan/dfilter/dfilter.c
-   M /trunk/epan/dissectors/packet-clnp.c
-   M /trunk/epan/dissectors/packet-cops.c
-   M /trunk/epan/dissectors/packet-diameter.c
-   M /trunk/epan/dissectors/packet-dns.c
-   M /trunk/epan/dissectors/packet-fcdns.c
-   M /trunk/epan/dissectors/packet-fcswils.c
-   M /trunk/epan/dissectors/packet-fddi.c
-   M /trunk/epan/dissectors/packet-fw1.c
-   M /trunk/epan/dissectors/packet-h245.c
-   M /trunk/epan/dissectors/packet-iax2.c
-   M /trunk/epan/dissectors/packet-icep.c
-   M /trunk/epan/plugins.c
-   M /trunk/epan/proto.c
-   M /trunk/mkstemp.c
-
-several times replacing:
-
-sprintf -> g_snprintf
-snprintf -> g_snprintf
-vsnprintf -> g_vsnprintf
-strdup -> g_strdup
-------------------------------------------------------------------------
-r15411 | ulfl | 2005-08-18 14:19:59 -0500 (Thu, 18 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/fileset.c
-
-while sorting the entries, don't use the file creation date but the filename for comparison
-------------------------------------------------------------------------
-r15410 | ulfl | 2005-08-18 14:09:01 -0500 (Thu, 18 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/gtk/menu.c
-
-init the file set submenu items, so that the next and previous file items are disabled by default
-------------------------------------------------------------------------
-r15409 | gerald | 2005-08-18 13:12:55 -0500 (Thu, 18 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-per.c
-
-Fix value_tvb pointers.
-
-------------------------------------------------------------------------
-r15408 | kukosa | 2005-08-18 09:32:49 -0500 (Thu, 18 Aug 2005) | 7 lines
-Changed paths:
-   M /trunk/asn1/h225/h225.asn
-   M /trunk/asn1/h225/h225.cnf
-   M /trunk/asn1/h245/h245.asn
-   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-per.c
-   M /trunk/epan/dissectors/packet-per.h
-   M /trunk/tools/asn2eth.py
-
-- dissect_per_restricted_character_string() returns value in tvbbuff_t instead of char
-- asn2eth:
-  fixed CHOICE tag handling
-  #.FN_PARS support for BIT STRING and all string types
-  intersection of SIZE and FROM constraints for string is handled
-- new asn2eth features used in h225 and h245
-- PER dissectors regeneration
-------------------------------------------------------------------------
-r15407 | etxrab | 2005-08-18 07:55:01 -0500 (Thu, 18 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/ftypes/ftype-time.c
-
-From Richard van der Hoff
-negative relative time fixes.
-------------------------------------------------------------------------
-r15406 | etxrab | 2005-08-18 06:09:50 -0500 (Thu, 18 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-gsm_a.c
-
-Decode some more of MultiRate configuration.
-------------------------------------------------------------------------
-r15405 | sahlberg | 2005-08-18 05:37:41 -0500 (Thu, 18 Aug 2005) | 19 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-kerberos.c
-
-when kerberos claims a conversation, it only claims it for the source port
-since a KDC MIGTH send the reply back from a different port.
-
-Then comes X.L's capture (ethereal-dev) 816fc4.cap from 16Aug2005 where
-the client is reusing the same source port to talk to DNS after finishing
-doing the port 88 KDC stuff.
-
-
-==>
-
-Make kerberos/udp able to test the packet for sanity and reject packets that
-do not look like kerberos (even if there was a conversation that said it was kerberos)
-and thus let other dissectors have a go at it.
-
-
-in doubt,   try 816fc4.cap  before and after this patch :-)
-
-
-
-------------------------------------------------------------------------
-r15404 | guy | 2005-08-18 04:47:00 -0500 (Thu, 18 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/wiretap/netxray.c
-
-Try yet another scheme for handling time stamps; realtick isn't always
-correct.
-
-------------------------------------------------------------------------
-r15403 | sahlberg | 2005-08-18 03:55:22 -0500 (Thu, 18 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-tr.c
-
-replace sprintf with ememified g_snprintf
-
-
-------------------------------------------------------------------------
-r15402 | sahlberg | 2005-08-18 03:37:31 -0500 (Thu, 18 Aug 2005) | 6 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
-   M /trunk/epan/dissectors/packet-ber.h
-
-Tim's patches for packet-ber  for extra testing (works ok with my and with Anders captures)
-
-Anders'  beginnings of a new dissect_ber_set() function
-
-
-------------------------------------------------------------------------
-r15401 | guy | 2005-08-18 02:09:43 -0500 (Thu, 18 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-bittorrent.c
+   M /trunk/Makefile.common
+   M /trunk/capture.h
+   M /trunk/capture_opts.c
+   M /trunk/clopts_common.c
+   M /trunk/clopts_common.h
+   A /trunk/cmdarg_err.h
+   M /trunk/gtk/main.c
+   M /trunk/tethereal.c
 
-The length returned for continuation data should be the length remaining
-in the tvbuff starting at the specified offset, not the entire length of
-the tvbuff.
+Handle "-G" only in Tethereal - it doesn't work in Ethereal, and isn't
+necessary there.
 
-------------------------------------------------------------------------
-r15400 | guy | 2005-08-18 01:40:10 -0500 (Thu, 18 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-sflow.c
+Add a "cmdarg_err()" routine to report command-line option errors; it
+creates a console if necessary, and prints the command name and the
+trailing newline.  Also add "cmdarg_err_cont()", which also creates a
+console if necessary, and prints a trailing newline but no command name;
+it's used to continue the message.  Use those, rather than
+"g_warning()", for errors.
 
-Get rid of a no-longer-used variable.
+That means that we no longer need to pass the command name to various
+command-line argument parsing routines.
 
 ------------------------------------------------------------------------
-r15399 | guy | 2005-08-17 20:17:46 -0500 (Wed, 17 Aug 2005) | 2 lines
+r16525 | guy | 2005-11-16 23:02:30 -0600 (Wed, 16 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-bittorrent.c
+   M /trunk/asn1/x411/x411.cnf
+   M /trunk/asn1/x509if/x509if.cnf
+   M /trunk/epan/dissectors/packet-x411.c
+   M /trunk/epan/dissectors/packet-x509if.c
 
-Show BitTorrent stuff that doesn't look right as continuation data.
+Squelch some const vs. non-const warnings.
 
 ------------------------------------------------------------------------
-r15398 | ulfl | 2005-08-17 18:10:28 -0500 (Wed, 17 Aug 2005) | 1 line
+r16524 | guy | 2005-11-16 22:54:25 -0600 (Wed, 16 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc.c
-   M /trunk/epan/dissectors/packet-dns.c
-   M /trunk/epan/dissectors/packet-icmpv6.c
-   M /trunk/epan/dissectors/packet-ieee80211.c
-   M /trunk/epan/dissectors/packet-isakmp.c
-   M /trunk/epan/dissectors/packet-pim.c
-   M /trunk/epan/dissectors/packet-smb.c
-   M /trunk/epan/proto.c
-   M /trunk/epan/tvbuff.c
-   M /trunk/epan/tvbuff.h
-   M /trunk/plugins/lwres/packet-lwres.c
+   M /trunk/asn1/x509if/packet-x509if-template.c
+   M /trunk/epan/dissectors/packet-x509if.c
 
-snprintf -> g_snprintf
-------------------------------------------------------------------------
-r15397 | ulfl | 2005-08-17 17:49:07 -0500 (Wed, 17 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/docbook/Makefile
+Include <epan/emem.h> to declare ep_alloc().
 
-put the intermediate files of the release_notes chm build into it's own dir release_notes_chm/ instead of .
 ------------------------------------------------------------------------
-r15396 | ulfl | 2005-08-17 17:32:40 -0500 (Wed, 17 Aug 2005) | 3 lines
+r16523 | guy | 2005-11-16 22:47:41 -0600 (Wed, 16 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/docbook/release-notes.xml
+   M /trunk/asn1/x411/packet-x411-template.c
+   M /trunk/epan/dissectors/packet-x411.c
 
-0.10.12 -> 0.10.13 (preliminary)
+"dissect_ber_object_identifier_str" expects a "const char **" as its
+last argument; make it so.
 
-add a section about "new and updated features"
 ------------------------------------------------------------------------
-r15395 | gerald | 2005-08-17 17:27:15 -0500 (Wed, 17 Aug 2005) | 8 lines
+r16522 | guy | 2005-11-16 22:15:01 -0600 (Wed, 16 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-snmp.c
-
-Flip the separators in the MIBS environment variable between ":" and
-";" depending on our platform.  This is a modified version of a patch
-that Jaap Keuter sent in.  Leave the preferences tooltip as-is in case
-we want to be more strict about separators in the future.
+   M /trunk/epan/strutil.h
 
-Add a link to an email from Wes explaining that we shouldn't use a
-default MIB list.
-
-------------------------------------------------------------------------
-r15394 | ulfl | 2005-08-17 17:08:06 -0500 (Wed, 17 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/Makefile.common
+g_strlcat() and g_ascii_isprint() don't exist in GTK+ at all - they
+exist in GLib 2.x, but not in 1.2[.x].  Check the version number of
+GLIB, not of GTK+, to decide whether to #define them.
 
-fix a typo
 ------------------------------------------------------------------------
-r15393 | ulfl | 2005-08-17 17:03:21 -0500 (Wed, 17 Aug 2005) | 1 line
+r16521 | guy | 2005-11-16 22:10:31 -0600 (Wed, 16 Nov 2005) | 11 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ip.c
+   M /trunk/gtk/main.c
 
-snprintf -> g_snprintf
-------------------------------------------------------------------------
-r15392 | ulfl | 2005-08-17 16:52:16 -0500 (Wed, 17 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/gtk/io_stat.c
+Don't list "-B" on UN*X - it's not available there.
 
-strdup -> g_strdup and alike
-------------------------------------------------------------------------
-r15391 | sahlberg | 2005-08-17 15:45:18 -0500 (Wed, 17 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/addr_resolv.h
+On Windows, show it using the same usage-message syntax as other
+options.
 
-update some comments pointing out these buffers need not be freed
+Clean up the usage message.
 
+When doing the "pre-scan" of command-line arguments, suppress error
+messages - that suppresses bogus messages for GTK+ command-line flags,
+and gets rid of double messages for other errors.
 
 ------------------------------------------------------------------------
-r15390 | gerald | 2005-08-17 10:04:44 -0500 (Wed, 17 Aug 2005) | 9 lines
+r16520 | sahlberg | 2005-11-16 17:17:21 -0600 (Wed, 16 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-bittorrent.c
+   M /trunk/AUTHORS
+   M /trunk/asn1/dap/packet-dap-template.c
+   M /trunk/epan/dissectors/Makefile.common
+   A /trunk/epan/dissectors/packet-dap.c
+   A /trunk/epan/dissectors/packet-dap.h
+   A /trunk/epan/dissectors/packet-disp.c
+   A /trunk/epan/dissectors/packet-disp.h
+   A /trunk/epan/dissectors/packet-dsp.c
+   A /trunk/epan/dissectors/packet-dsp.h
+   A /trunk/epan/dissectors/packet-x501.c
+   A /trunk/epan/dissectors/packet-x501.h
 
-If we receive junk data from the network it means we have a
-malformed packet.  It doesn't necessarily mean that we have a problem
-with our dissector.  If we see something we didn't expect, throw a
-ReportedBoundsError instead of calling DISSECTOR_ASSERT() (which makes
-BuildBot open a ticket).
+add the rest of Graeme Lunts patch
 
-Fixes bugs 362 - 366.
 
 
 ------------------------------------------------------------------------
-r15389 | jmayer | 2005-08-17 07:27:05 -0500 (Wed, 17 Aug 2005) | 6 lines
+r16519 | sahlberg | 2005-11-16 17:15:04 -0600 (Wed, 16 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-extreme.c
+   M /trunk/epan/strutil.h
 
-As reported by Jim Young:
-- The port number was incorrectly displayed
-- Be a bit more verbose in the "Info" summary line.
-- Display the version including the internal number.
+add a g_ascii_isprint() macro so that this symbol can be used for gtk1 platforms as well
 
 
 ------------------------------------------------------------------------
-r15388 | jmayer | 2005-08-17 04:59:47 -0500 (Wed, 17 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-extreme.c
-
-Comment fixes
-------------------------------------------------------------------------
-r15387 | etxrab | 2005-08-17 04:43:16 -0500 (Wed, 17 Aug 2005) | 2 lines
+r16518 | sahlberg | 2005-11-16 16:53:33 -0600 (Wed, 16 Nov 2005) | 10 lines
 Changed paths:
-   M /trunk/asn1/gsmmap/packet-gsm_map-template.c
-   M /trunk/epan/dissectors/packet-gsm_map.c
-   M /trunk/epan/dissectors/packet-gsm_map.h
+   A /trunk/asn1/dap
+   A /trunk/asn1/dap/Makefile
+   A /trunk/asn1/dap/dap-exp.cnf
+   A /trunk/asn1/dap/dap.asn
+   A /trunk/asn1/dap/dap.cnf
+   A /trunk/asn1/dap/packet-dap-template.c
+   A /trunk/asn1/dap/packet-dap-template.h
+   A /trunk/asn1/disp
+   A /trunk/asn1/disp/Makefile
+   A /trunk/asn1/disp/disp.asn
+   A /trunk/asn1/disp/disp.cnf
+   A /trunk/asn1/disp/packet-disp-template.c
+   A /trunk/asn1/disp/packet-disp-template.h
+   A /trunk/asn1/dsp
+   A /trunk/asn1/dsp/Makefile
+   A /trunk/asn1/dsp/dsp-exp.cnf
+   A /trunk/asn1/dsp/dsp.asn
+   A /trunk/asn1/dsp/dsp.cnf
+   A /trunk/asn1/dsp/packet-dsp-template.c
+   A /trunk/asn1/dsp/packet-dsp-template.h
+   A /trunk/asn1/x501
+   A /trunk/asn1/x501/Makefile
+   A /trunk/asn1/x501/packet-x501-template.c
+   A /trunk/asn1/x501/packet-x501-template.h
+   A /trunk/asn1/x501/x501-exp.cnf
+   A /trunk/asn1/x501/x501.asn
+   A /trunk/asn1/x501/x501.cnf
 
- from Tomas Kukosa, remove a redundant g_strdup()
+from Graeme Lunt
 
-------------------------------------------------------------------------
-r15386 | sahlberg | 2005-08-17 04:36:20 -0500 (Wed, 17 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/addr_resolv.c
-   M /trunk/epan/atalk-utils.c
-   M /trunk/epan/osi-utils.c
-   M /trunk/epan/strutil.c
+4 new asn based protocols
+X501
+DISP
+DAP
+DSP
 
-replace some more silly rotating buffers with ep_alloc() calls
 
 
 ------------------------------------------------------------------------
-r15385 | sahlberg | 2005-08-17 04:28:24 -0500 (Wed, 17 Aug 2005) | 3 lines
+r16517 | ulfl | 2005-11-16 16:08:50 -0600 (Wed, 16 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/sna-utils.c
-   M /trunk/epan/value_string.c
-
-fix some more silly rotating buffers
-
+   M /trunk/gtk/main.c
 
+hmmm, buggy bugfix
+capture_child isn't initialized already here, so remove the whole error reaction check for now
 ------------------------------------------------------------------------
-r15384 | sahlberg | 2005-08-17 04:25:04 -0500 (Wed, 17 Aug 2005) | 6 lines
+r16516 | ulfl | 2005-11-16 15:46:24 -0600 (Wed, 16 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-aarp.c
-   M /trunk/epan/dissectors/packet-arp.c
-   M /trunk/epan/dissectors/packet-clnp.c
-   M /trunk/epan/dissectors/packet-smb-common.c
-   M /trunk/epan/dissectors/packet-wccp.c
-
-replace a whole bunch of silly rotating stating buffers with ep_alloc() calls
-
-this should fix a whole number of display bugs when there are too many such pdus in a single frame for the silly buffers to handle before they wrap.
-
-
+   M /trunk/gtk/main.c
 
+the "pre-scan" of the command line parameters shouldn't stop the capture child. The child uses a slightly different parameter pattern, so this isn't an error here. Fixes the reported capture problem
 ------------------------------------------------------------------------
-r15383 | sahlberg | 2005-08-17 04:11:37 -0500 (Wed, 17 Aug 2005) | 3 lines
+r16515 | etxrab | 2005-11-16 14:25:29 -0600 (Wed, 16 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-manolito.c
-
-remove g_malloc from manolito
-
+   D /trunk/diameter/3GPPSh.xml
+   A /trunk/diameter/TGPPSh.xml
+   M /trunk/diameter/dictionary.xml
 
+A digit as first letter does not work fix some cut-and-paste errors.
 ------------------------------------------------------------------------
-r15382 | sahlberg | 2005-08-17 03:54:25 -0500 (Wed, 17 Aug 2005) | 3 lines
+r16514 | etxrab | 2005-11-16 14:03:09 -0600 (Wed, 16 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-rtcp.c
-
-remove g_malloc()s from rtcp
-
+   M /trunk/epan/dissectors/packet-isup.c
 
+Decose APN messages correctly.
 ------------------------------------------------------------------------
-r15381 | sahlberg | 2005-08-17 03:50:04 -0500 (Wed, 17 Aug 2005) | 7 lines
+r16513 | jmayer | 2005-11-16 12:44:05 -0600 (Wed, 16 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ftp.c
-   M /trunk/epan/dissectors/packet-sdp.c
-
-replace g_malloc() with ep_alloc() for ftp and sdp
-
+   M /trunk/manuf.tmpl
 
-sdp never free the allocated memory so it were leaking memory for every packet containng sdp.
-fix memleak for sdp
 
+Graeme Hewson: Continue to use the old Netscreen name - it makes it
+        easier to identify the Juniper firewall products.
 
 ------------------------------------------------------------------------
-r15380 | sahlberg | 2005-08-17 03:43:40 -0500 (Wed, 17 Aug 2005) | 3 lines
+r16512 | sahlberg | 2005-11-16 04:59:41 -0600 (Wed, 16 Nov 2005) | 6 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-rip.c
-   M /trunk/epan/dissectors/packet-tacacs.c
-
-remove g_malloc() from rip   remove one g_malloc() from tacacs
+   M /trunk/epan/dissectors/packet-smb2.c
 
+ add dissection of buffercode
+according to
+wiki.etehreal.com/SMB2/BufferCode
 
-------------------------------------------------------------------------
-r15379 | sahlberg | 2005-08-17 03:31:54 -0500 (Wed, 17 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/asn1/camel/packet-camel-template.c
-   M /trunk/epan/dissectors/packet-camel.c
-
-from Tomas Kukosa, remove a redundant g_strdup()
 
 
 ------------------------------------------------------------------------
-r15378 | jmayer | 2005-08-16 16:38:18 -0500 (Tue, 16 Aug 2005) | 3 lines
+r16511 | sahlberg | 2005-11-16 03:27:43 -0600 (Wed, 16 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-extreme.c
-
-- Small comment updates.
-- Add some info about the element to the top level.
+   M /trunk/asn1/x411/packet-x411-template.c
+   M /trunk/asn1/x509if/packet-x509if-template.c
+   M /trunk/epan/dissectors/packet-x411.c
+   M /trunk/epan/dissectors/packet-x411.h
+   M /trunk/epan/dissectors/packet-x509if.c
+   M /trunk/epan/dissectors/packet-x509if.h
+   M /trunk/epan/strutil.h
 
-------------------------------------------------------------------------
-r15377 | gerald | 2005-08-16 11:11:02 -0500 (Tue, 16 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/packet.c
+ add a simple g_strlcat define in strutil   for gtk==1  where this symbol does not exist
 
-For "-G decodes", print the selector values as unsigned ints.
 
 ------------------------------------------------------------------------
-r15376 | gerald | 2005-08-16 11:09:49 -0500 (Tue, 16 Aug 2005) | 3 lines
+r16510 | etxrab | 2005-11-16 01:21:48 -0600 (Wed, 16 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/docbook/release-notes.xml
-
-Add a note about sFlow.  Remove the CSM_ENCAPS bug; I inadvertently
-reintroduced it after the 0.10.12 release.
+   M /trunk/epan/dissectors/packet-diameter-defs.h
+   M /trunk/epan/dissectors/packet-diameter.c
 
+Display AVP:s of Dimater type Unsigned32 as such even when they have "value translation".
 ------------------------------------------------------------------------
-r15375 | gerald | 2005-08-16 11:04:30 -0500 (Tue, 16 Aug 2005) | 11 lines
+r16509 | etxrab | 2005-11-16 01:16:34 -0600 (Wed, 16 Nov 2005) | 8 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-sflow.c
-   M /trunk/epan/proto.c
-
-In packet-sflow.c, don't pass a NULL value pointer to
-proto_tree_add_ipv6().  Add tree items for the extended router source
-and dest mask, and fix offsets.  These changes appear to be correct,
-but I don't have a valid capture with extended router data.
-
-In proto.c, throw a dissector error if we try to pass a NULL value to
-various proto_tree_set_*() routines.
-
-Fixes bug 356.
+   M /trunk/epan/dissectors/ncp2222.py
 
+From Greg Morris;
+The following diff (based on current SVN) fixes the following...
+1. Adds additional return value 0xa901 
+"Invalid Data Type Flag (outdated return value - replaced in NSS as 0x89aa error)" 
+for 87/xx NCP's.
+2. Fixes decode for NCP 87/20 reply packets
+3. Fixes decode for NCP 89/53 request packets
 
 ------------------------------------------------------------------------
-r15374 | sahlberg | 2005-08-16 03:40:06 -0500 (Tue, 16 Aug 2005) | 3 lines
+r16508 | etxrab | 2005-11-16 01:13:12 -0600 (Wed, 16 Nov 2005) | 39 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-smb.c
-
-add SetFileInfo level 1013   SetDispositionInfo decoding
+   M /trunk/asn1/acse/Makefile.nmake
+   M /trunk/asn1/acse/acse.cnf
+   M /trunk/asn1/acse/packet-acse-template.c
+   M /trunk/asn1/cms/Makefile.nmake
+   M /trunk/asn1/cms/cms.cnf
+   M /trunk/asn1/cms/packet-cms-template.c
+   M /trunk/asn1/ess/ExtendedSecurityServices.asn
+   M /trunk/asn1/ess/Makefile.nmake
+   M /trunk/asn1/ess/ess.cnf
+   M /trunk/asn1/rtse/Makefile.nmake
+   M /trunk/asn1/rtse/packet-rtse-template.c
+   M /trunk/asn1/rtse/rtse.cnf
+   M /trunk/asn1/s4406/Makefile.nmake
+   M /trunk/asn1/s4406/s4406.asn
+   M /trunk/asn1/s4406/s4406.cnf
+   M /trunk/asn1/x411/Makefile.nmake
+   M /trunk/asn1/x411/packet-x411-template.c
+   M /trunk/asn1/x411/x411.cnf
+   M /trunk/asn1/x420/x420.cnf
+   M /trunk/asn1/x509af/AuthenticationFramework.asn
+   M /trunk/asn1/x509af/Makefile.nmake
+   M /trunk/asn1/x509af/packet-x509af-template.c
+   M /trunk/asn1/x509af/packet-x509af-template.h
+   M /trunk/asn1/x509af/x509af.cnf
+   M /trunk/asn1/x509if/Makefile.nmake
+   M /trunk/asn1/x509if/packet-x509if-template.c
+   M /trunk/asn1/x509if/packet-x509if-template.h
+   M /trunk/asn1/x509if/x509if-exp.cnf
+   M /trunk/asn1/x509if/x509if.cnf
+   M /trunk/asn1/x509sat/Makefile.nmake
+   M /trunk/asn1/x509sat/SelectedAttributeTypes.asn
+   M /trunk/asn1/x509sat/x509sat.cnf
+   M /trunk/epan/dissectors/packet-acse.c
+   M /trunk/epan/dissectors/packet-cms.c
+   M /trunk/epan/dissectors/packet-ess.c
+   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-s5066.c
+   M /trunk/epan/dissectors/packet-x411.c
+   M /trunk/epan/dissectors/packet-x411.h
+   M /trunk/epan/dissectors/packet-x509af.c
+   M /trunk/epan/dissectors/packet-x509af.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
 
+From Graeme Lunt:
+Here are a number of small patches for asn1 based dissectors:
 
-------------------------------------------------------------------------
-r15373 | sahlberg | 2005-08-16 02:49:03 -0500 (Tue, 16 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-mount.c
+acse:
+  release request/response column information (many X.400/X.500 unbinds are
+empty)
+  "standardised" PNAME to "ISO 8650-1 OSI Association Control Service"
+  fix for crash when using EXTERNAL dissector
 
-prettify MNT (and friends) by placing the path in COL_INFO
+rtse:
+  column information when attempting a resume
 
-------------------------------------------------------------------------
-r15372 | jmayer | 2005-08-16 01:48:06 -0500 (Tue, 16 Aug 2005) | 7 lines
-Changed paths:
-   M /trunk/epan/prefs.c
+x509if:
+  generation of LDAP-style DNs from RDNSequences 
+  new function x509if_get_last_dn() to get the last DN generated.
 
+x509af:
+  DSS parameters
+  certificate extension naming
+  subject naming of certificate
 
-Change the default font size on Unix (etc) to 10 pt, just as it was
-already on Windows.
-Changed the default font to Monospace, as some Linux distributions did
-that already. In case this isn't available on all platforms we will
-need to change it back to "fixed medium".
+x509sat:
+  Guide syntax (as SET now supported)
+  PDU exports.
+  
+cms:
+  verification of message digest attribute (SHA-1 and MD5)
+  
+ess:
+  enumerated/restrictive/permissive/informative security categories
 
-------------------------------------------------------------------------
-r15371 | jmayer | 2005-08-16 01:45:17 -0500 (Tue, 16 Aug 2005) | 7 lines
-Changed paths:
-   M /trunk/gtk/about_dlg.c
-   M /trunk/gtk/main.c
-   M /trunk/tethereal.c
-   M /trunk/version_info.c
-   M /trunk/version_info.h
+x411:
+  generation of string encoding of X.400 addresses, trace information and message identifiers.
 
-Move SVNVERSION handling into version_info. That way, we won't have
-to recompile tethereal.o etc each time the svn version has changed,
-relinking is sufficient.
+s4406:
+  separate types for primary and copy precedence to allow better filtering (e.g. primary precedence = flash)
+  priority-level-qualifier
 
-I'm not sure what to do about mergecap, as it currently doesn't link
-against version_info, so it's "overhead" either way.
 
 ------------------------------------------------------------------------
-r15370 | guy | 2005-08-16 01:09:39 -0500 (Tue, 16 Aug 2005) | 19 lines
+r16507 | guy | 2005-11-15 04:56:18 -0600 (Tue, 15 Nov 2005) | 6 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ieee80211.c
-
-Change to match more closely the way I read 802.11h, at least; I'm just
-guessing about the "17" indicator for "management notification" frames -
-I'm not sure whether, after paying USD 60 to get the current 802.11e
-draft, Preview on my Mac could even decrypt it.
-
-802.11h seems to say in 7.2.3.12 and 7.3.1.11 that the body of an Action
-frame has a 1-byte Category field, with a value of 0 meaning "Spectrum
-management", followed by, for Spectrum management, a 1-byte Action
-field, with 0=Measurement Request, 1=Measurement Report, 2=TPC Request,
-3=TPC Report, and 4=Channel Switch Announcement, followed by:
-
-       for all but Channel Switch Announcement, a 1-byte Dialog Token
-       followed by some tagged parameters;
-
-       for the Channel Switch announcement, some tagged parameters.
+   M /trunk/epan/dissectors/packet-ospf.c
 
-Show some fields given in decimal in various 802.11 specs in decimal,
-not hex.
+Handle OSPF V3 prefixes similarly to the way other IPv6 prefixes are
+handled (but not the same, as the prefix length in OSPF is rounded up to
+a multiple of 4 bytes, not just a byte).  This simplifies the code, and
+keeps us from overflowing the buffer we allocate if the prefix length is
+> 128 (we now just report that as an error).
 
 ------------------------------------------------------------------------
-r15369 | guy | 2005-08-16 00:58:50 -0500 (Tue, 16 Aug 2005) | 6 lines
+r16506 | sahlberg | 2005-11-15 02:49:34 -0600 (Tue, 15 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-bittorrent.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-From Peter Johansson: add an option to decode the client information,
-and check the validity of messages a bit more carefully.
+add decoding of extended attributes
 
-Reformat a bit so not as much code is missed by those of us who like
-narrow editor windows.
 
 ------------------------------------------------------------------------
-r15368 | guy | 2005-08-15 21:04:02 -0500 (Mon, 15 Aug 2005) | 6 lines
+r16505 | kukosa | 2005-11-14 07:05:17 -0600 (Mon, 14 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-daap.c
-
-The real problem is that iTunes requests gzipped data and responds with
-it, so unless you're reassembling headers and bodies the DAAP dissector
-will see the gzipped crap.  The HTTP dissector should perhaps not bother
-handing gzipped or otherwise unusually-encoded bodies to subdissectors
-if it's not undoing the encoding.
-
-------------------------------------------------------------------------
-r15367 | guy | 2005-08-15 20:34:44 -0500 (Mon, 15 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-fc.c
-
-gcc4 gets confused by the break statements, and I guess it thinks you
-can reach them, and thus thinks you can fall off the end of
-"fc_get_ftype()".
+   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-per.c
+   M /trunk/epan/dissectors/packet-per.h
+   M /trunk/epan/dissectors/packet-t38.c
+   M /trunk/tools/asn2eth.py
 
+improvements in value constraint support
+- NO_BOUND is defined instead of usage -1
+- negative bound is handled properly for INTEGER
 ------------------------------------------------------------------------
-r15366 | guy | 2005-08-15 20:24:19 -0500 (Mon, 15 Aug 2005) | 2 lines
+r16504 | sahlberg | 2005-11-14 07:02:23 -0600 (Mon, 14 Nov 2005) | 6 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ieee80211.c
-
-Note where a table comes from, and that we don't use it.
+   M /trunk/asn1/x411/packet-x411-template.c
+   M /trunk/epan/dissectors/packet-x411.c
+   M /trunk/epan/dissectors/packet-x411.h
 
-------------------------------------------------------------------------
-r15365 | lego | 2005-08-15 20:01:17 -0500 (Mon, 15 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/emem.h
+move the include of emem.h a bit further down
+so it does know what size_t is when emem is included.
 
-se_alloc not ep_alloc!
+i needed this change to get it to compile on my box
 
 
 ------------------------------------------------------------------------
-r15364 | lego | 2005-08-15 19:55:08 -0500 (Mon, 15 Aug 2005) | 2 lines
+r16503 | sahlberg | 2005-11-14 06:06:39 -0600 (Mon, 14 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/emem.c
-   M /trunk/epan/emem.h
+   M /trunk/epan/dissectors/packet-smb2.c
 
-more allocators se_alloc0() se_memdups() se_strdup() se_strndup() se_strdup_printf()
-
-------------------------------------------------------------------------
-r15363 | jmayer | 2005-08-15 16:06:09 -0500 (Mon, 15 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/manuf
-   M /trunk/wka.tmpl
+some more infol;evels decoded
 
-- Update manuf
-- Add some Extreme MAC addresses to wka.tmpl
 
 ------------------------------------------------------------------------
-r15362 | jmayer | 2005-08-15 15:31:57 -0500 (Mon, 15 Aug 2005) | 4 lines
+r16502 | guy | 2005-11-14 04:49:13 -0600 (Mon, 14 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/idl2eth.sh
+   M /trunk/epan/dissectors/packet-gssapi.h
 
-- Change $1 to $@
-- Don't exit if we can't find the scripts - try to continue anyway,
-  as they might be installed in some preconfigured system directory.
+Fix the declaration of gssapi_lookup_oid_str() to match its definition.
 
 ------------------------------------------------------------------------
-r15361 | gerald | 2005-08-15 15:28:04 -0500 (Mon, 15 Aug 2005) | 2 lines
+r16501 | kukosa | 2005-11-14 04:02:31 -0600 (Mon, 14 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-telnet.c
-
-When we create a new tvb, make sure the memory is freed at some point.
+   M /trunk/asn1/acse/acse.cnf
+   M /trunk/asn1/acse/packet-acse-template.c
+   M /trunk/asn1/cmip/cmip.cnf
+   M /trunk/asn1/cmip/packet-cmip-template.c
+   M /trunk/asn1/cms/cms.cnf
+   M /trunk/asn1/cms/packet-cms-template.c
+   M /trunk/asn1/ess/ess.cnf
+   M /trunk/asn1/ess/packet-ess-template.c
+   M /trunk/asn1/ftam/ftam.cnf
+   M /trunk/asn1/ftam/packet-ftam-template.c
+   M /trunk/asn1/ocsp/ocsp.cnf
+   M /trunk/asn1/ocsp/packet-ocsp-template.c
+   M /trunk/asn1/pkix1explicit/packet-pkix1explicit-template.c
+   M /trunk/asn1/pkix1explicit/pkix1explicit.cnf
+   M /trunk/asn1/pkixcmp/cmp.cnf
+   M /trunk/asn1/pkixcmp/packet-cmp-template.c
+   M /trunk/asn1/pkixcrmf/crmf.cnf
+   M /trunk/asn1/pkixcrmf/packet-crmf-template.c
+   M /trunk/asn1/pkixqualified/packet-pkixqualified-template.c
+   M /trunk/asn1/pkixqualified/pkixqualified.cnf
+   M /trunk/asn1/pres/packet-pres-template.c
+   M /trunk/asn1/pres/pres.cnf
+   M /trunk/asn1/spnego/packet-spnego-template.c
+   M /trunk/asn1/spnego/spnego.cnf
+   M /trunk/asn1/tcap/packet-tcap-template.c
+   M /trunk/asn1/tcap/tcap.cnf
+   M /trunk/asn1/x411/packet-x411-template.c
+   M /trunk/asn1/x411/x411.cnf
+   M /trunk/asn1/x420/packet-x420-template.c
+   M /trunk/asn1/x420/x420.cnf
+   M /trunk/asn1/x509af/packet-x509af-template.c
+   M /trunk/asn1/x509af/x509af.cnf
+   M /trunk/asn1/x509ce/packet-x509ce-template.c
+   M /trunk/asn1/x509ce/x509ce.cnf
+   M /trunk/asn1/x509if/packet-x509if-template.c
+   M /trunk/asn1/x509if/x509if.cnf
+   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-cmip.c
+   M /trunk/epan/dissectors/packet-cmp.c
+   M /trunk/epan/dissectors/packet-cms.c
+   M /trunk/epan/dissectors/packet-crmf.c
+   M /trunk/epan/dissectors/packet-ess.c
+   M /trunk/epan/dissectors/packet-ftam.c
+   M /trunk/epan/dissectors/packet-gssapi.c
+   M /trunk/epan/dissectors/packet-ocsp.c
+   M /trunk/epan/dissectors/packet-pkix1explicit.c
+   M /trunk/epan/dissectors/packet-pkixqualified.c
+   M /trunk/epan/dissectors/packet-pres.c
+   M /trunk/epan/dissectors/packet-spnego.c
+   M /trunk/epan/dissectors/packet-tcap.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-x509ce.c
+   M /trunk/epan/dissectors/packet-x509if.c
 
+ - dissect_ber_object_identifier() returns value as tvb
+ - new dissect_ber_object_identifier_str() function
+ - BER dissectors adapted and regenerated
 ------------------------------------------------------------------------
-r15360 | etxrab | 2005-08-15 14:35:09 -0500 (Mon, 15 Aug 2005) | 1 line
+r16500 | etxrab | 2005-11-13 14:53:24 -0600 (Sun, 13 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-gsm_sms.c
+   M /trunk/epan/dissectors/packet-h263.c
 
-TP-PI (TP-Parameter-Indicator) is optional.
-------------------------------------------------------------------------
-r15359 | jmayer | 2005-08-15 10:50:25 -0500 (Mon, 15 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-extreme.c
+Fix Bug 566  H.263: in display filters, ftype bit masked by sbit 
 
-Properly dissect vlan flags
 ------------------------------------------------------------------------
-r15358 | jmayer | 2005-08-15 07:41:08 -0500 (Mon, 15 Aug 2005) | 5 lines
+r16499 | etxrab | 2005-11-13 12:09:44 -0600 (Sun, 13 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-extreme.c
-
-- Documentation update
-- The slot and port numbers printed on the chassis are off by
-  one when compared to the transmitted values (reported by
-  Jim Young).
+   M /trunk/asn1/ranap/Makefile.nmake
+   M /trunk/asn1/ranap/packet-ranap-template.c
+   M /trunk/asn1/ranap/ranap.asn
+   M /trunk/epan/dissectors/packet-ranap.c
 
+Fix the lenght calculation.
 ------------------------------------------------------------------------
-r15357 | sahlberg | 2005-08-15 07:04:15 -0500 (Mon, 15 Aug 2005) | 3 lines
+r16498 | etxrab | 2005-11-13 10:40:55 -0600 (Sun, 13 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-icep.c
-   M /trunk/epan/dissectors/packet-icmpv6.c
-
-ememify g_malloc() calls
-
+   A /trunk/diameter/3GPPSh.xml
+   M /trunk/diameter/dictionary.xml
+   M /trunk/diameter/imscxdx.xml
+   M /trunk/diameter/mobileipv4.xml
+   M /trunk/diameter/nasreq.xml
 
+Update some 3GPP AVP:s
 ------------------------------------------------------------------------
-r15356 | sahlberg | 2005-08-15 06:53:57 -0500 (Mon, 15 Aug 2005) | 4 lines
+r16497 | sahlberg | 2005-11-12 17:17:06 -0600 (Sat, 12 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ldp.c
-
-ememify g_malloc() calls
+   M /trunk/epan/dissectors/packet-smb2.c
+
+prettify read/write
 
 
 
 ------------------------------------------------------------------------
-r15355 | jmayer | 2005-08-14 18:25:20 -0500 (Sun, 14 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/capture_sync.c
-   M /trunk/color_filters.c
-   M /trunk/epan/dissectors/ncp2222.py
-   M /trunk/epan/dissectors/packet-atalk.c
-   M /trunk/epan/dissectors/packet-atalk.h
-   M /trunk/epan/dissectors/packet-dcerpc-samr.c
-   M /trunk/epan/dissectors/packet-rpc.c
-   M /trunk/file.c
-   M /trunk/fileset.c
-   M /trunk/g711.c
-   M /trunk/gtk/menu.c
-   M /trunk/packet-range.c
-
-Some 'no previous declararion' warning fixes
-------------------------------------------------------------------------
-r15354 | sahlberg | 2005-08-14 01:00:20 -0500 (Sun, 14 Aug 2005) | 9 lines
+r16496 | sahlberg | 2005-11-12 17:05:29 -0600 (Sat, 12 Nov 2005) | 11 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-sip.c
+   M /trunk/epan/dissectors/packet-smb2.c
+
+prettify smb2
+
+always put the filename in col_info if it is known
 
-ememify sip   and at the same plug a memleak
+for getinfo/setinfo  put the class/level in colinfo as well.
 
-every single time the sip dissector was called   a 32byte or larger blob was g_malloced and never freed.
-this not only leaks 32+ bytes + g_malloc bookkeeping overhead  but also fragments memory so the real leak of memory is likely much bigger.
 
+this makes it very easy to see in the packet summary which file a icommand applies to and what kind of info is requested
 
-fix  bad memleak
 
 
 ------------------------------------------------------------------------
-r15353 | sahlberg | 2005-08-14 00:54:54 -0500 (Sun, 14 Aug 2005) | 4 lines
+r16495 | sahlberg | 2005-11-12 16:05:53 -0600 (Sat, 12 Nov 2005) | 16 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-cip.c
+   M /trunk/epan/dissectors/packet-rlogin.c
+
+from martin marthieson
 
-ememify cip
+updates to rlogin
+
+Hi, this patch:
+- uses value_string for control message field
+- doesn't use a single global time value to mark start of all conversations!
+- corrects client-user-name, server-user-name order in initial user-info
+message
+- adds data (text input/output) into the protocol tree
+- makes lots more things filterable
+- improves info column text (always calls rlogin_display() now)
+- cleans up some whitespace
 
 
 
 ------------------------------------------------------------------------
-r15352 | sahlberg | 2005-08-14 00:50:14 -0500 (Sun, 14 Aug 2005) | 8 lines
+r16494 | sahlberg | 2005-11-12 15:56:02 -0600 (Sat, 12 Nov 2005) | 16 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcm.c
+   M /trunk/epan/dissectors/packet-smb.c
 
-change a g_malloc() that was never released into ep_alloc()
+from Laurent Constantin
 
-this function would always leak memory when called.
+updates to smb
+A patch for packet-smb.c is attached:
+ - it improves timeout decoding
+ - it defines common NT transaction IOCTL functions
+ - it corrects decoding of resume key in search queries
+ - it defines a new function dissect_4_2_16_8_unsure() to replace
+ Â  dissect_4_2_16_8(). I'm unsure if it is correct. As said in
+ Â  comments, it works for me, but I find strange that nobody noticed
+ Â  dissect_4_2_16_8() was wrong. So, it is between "#if 0".
+ Â  Someone else should confirm dissect_4_2_16_8_unsure() works
+ Â  before activating it.
 
-this fixes a memleak in dcm
 
 
+------------------------------------------------------------------------
+r16493 | sahlberg | 2005-11-12 15:14:17 -0600 (Sat, 12 Nov 2005) | 2 lines
+Changed paths:
+   M /trunk/epan/dissectors/packet-smb2.c
+
+if we get the error BUTTER_TOO_SMALL coming back in a getinfo reply   the data will just be 4 bytes and will contain the required buffer size
 
 ------------------------------------------------------------------------
-r15351 | sahlberg | 2005-08-14 00:37:12 -0500 (Sun, 14 Aug 2005) | 7 lines
+r16492 | ulfl | 2005-11-12 10:44:54 -0600 (Sat, 12 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-x11.c
+   M /trunk/wiretap/file_util.h
 
-ememify packet-x11
+minor mkdir bugfix from Gisle Vanem
 
 
-plug a memleak for ...].strptr   that is alloced by g_malloc() but never released.
+------------------------------------------------------------------------
+r16491 | sahlberg | 2005-11-12 05:42:06 -0600 (Sat, 12 Nov 2005) | 3 lines
+Changed paths:
+   M /trunk/epan/dissectors/packet-smb2.c
 
+the timestamps of negprot are known
 
 
 ------------------------------------------------------------------------
-r15350 | sahlberg | 2005-08-13 20:48:43 -0500 (Sat, 13 Aug 2005) | 3 lines
+r16490 | sahlberg | 2005-11-12 05:27:34 -0600 (Sat, 12 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-giop.c
+   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/epan/dissectors/packet-smb.h
+   M /trunk/epan/dissectors/packet-smb2.c
 
-giop allocates only and never releases the memory from the gmemchunk  so replace it with equivalen g_malloc() calls and get rid of the gmemchunks
+ improve the dissection of Create and fill in most of the fields
 
 
 ------------------------------------------------------------------------
-r15349 | sahlberg | 2005-08-13 20:41:55 -0500 (Sat, 13 Aug 2005) | 5 lines
+r16489 | guy | 2005-11-12 05:05:02 -0600 (Sat, 12 Nov 2005) | 12 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-tds.c
+   M /trunk/file.c
+   M /trunk/gtk/packet_list.c
+   M /trunk/gtk/progress_dlg.c
+   M /trunk/gtk/proto_draw.c
+   M /trunk/gtk/rtp_analysis.c
+   M /trunk/progress_dlg.h
+   M /trunk/proto_hier_stats.c
+
+Allow a progress dialog to have "Stop" or "Cancel" as the "terminate
+button"; "Stop" should be used for operations that can only be stopped
+(meaning that what it's already done isn't undone), not cancelled
+(meaning that whatever it's already done *is* undone), for which
+"Cancel" is used.
+
+Allow the merging process to be cancelled.
 
-the tds dissector were only using a GMemChunk as a simple way to prevent memleaks in case of an exception. (reset the gmemchunk at the start of each packet)
+Clean up indentation.
 
-replace this gmemchunk with ep_alloc()
+Update some comments.
 
+------------------------------------------------------------------------
+r16488 | ulfl | 2005-11-12 04:09:02 -0600 (Sat, 12 Nov 2005) | 2 lines
+Changed paths:
+   M /trunk/epan/dissectors/packet-lldp.c
+   M /trunk/epan/oui.h
 
+(on behalf of the PROFIBUS Nutzerorganisation e.V. Deutschland):
+add some PROFINET specific LLDP extensions
 ------------------------------------------------------------------------
-r15348 | sahlberg | 2005-08-13 20:26:34 -0500 (Sat, 13 Aug 2005) | 3 lines
+r16487 | sahlberg | 2005-11-12 04:07:12 -0600 (Sat, 12 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/reassemble.c
+   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/epan/dissectors/packet-smb.h
+   M /trunk/epan/dissectors/packet-smb2.c
 
-remove two more GMemChunks
+dissect more of Close request/response
 
 
 ------------------------------------------------------------------------
-r15347 | sahlberg | 2005-08-13 19:37:05 -0500 (Sat, 13 Aug 2005) | 3 lines
+r16486 | ulfl | 2005-11-12 04:01:35 -0600 (Sat, 12 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/h225-persistentdata.c
-
-get rid of another two GMemChunks
+   M /trunk/capture_opts.c
 
+including io.h isn't needed
+------------------------------------------------------------------------
+r16485 | ulfl | 2005-11-12 03:39:24 -0600 (Sat, 12 Nov 2005) | 1 line
+Changed paths:
+   M /trunk/plugins/profinet/packet-pn-dcp.c
 
+minor enhancements
 ------------------------------------------------------------------------
-r15346 | sahlberg | 2005-08-13 19:26:56 -0500 (Sat, 13 Aug 2005) | 8 lines
+r16484 | sahlberg | 2005-11-12 02:48:02 -0600 (Sat, 12 Nov 2005) | 6 lines
 Changed paths:
-   M /trunk/epan/packet.c
+   M /trunk/epan/dissectors/packet-dcerpc.c
+   M /trunk/epan/dissectors/packet-smb2.c
+   M /trunk/epan/dissectors/packet-smb2.h
 
-Data sources have a lifetime spanning a single packet   
-so instead for g-alloc and g_free   data
-just use ep_alloc() that is automatically freed instead.
+add initial decode of dcerpc over smb2
 
-this also gets rid of one more GMemChunk
 
+it does not yet multiplex between different files   but it is better than nothing
 
 
 ------------------------------------------------------------------------
-r15345 | sahlberg | 2005-08-13 19:10:41 -0500 (Sat, 13 Aug 2005) | 10 lines
+r16483 | sahlberg | 2005-11-12 01:45:01 -0600 (Sat, 12 Nov 2005) | 11 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-scsi.c
+   M /trunk/epan/dissectors/packet-smb2.c
+   M /trunk/epan/dissectors/packet-smb2.h
 
-add dissection of two more SSC commands
+in order to handle dcerpc over smb2 later and to make the heuristics stronger for determining what might and what might not be a pipe
 
 
-add 4 commands from SMC to the SSC tables.
-the fallback for missing commands/i.e. commands defined outside the SSC
-only handles SPC   I.e.  If a command for SSC is missing in the SSC tables, assume it might be imported from SPC instead.
+add   TID tracking.   for all TreeConnect requests/resposnes seen,   store the name->tid mapping and other metadata.
 
-This fallback only works with opcodes imported from SPC.
 
+as a freebee    the disswection of the tid in the ehader is aware of this table so when a tid value is dissected in the header and we known the name for this tid   then put it in an expansion below the tid.
 
-------------------------------------------------------------------------
-r15344 | guy | 2005-08-13 17:35:50 -0500 (Sat, 13 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-extreme.c
 
-Use gboolean for Booleans.
 
-Use "proto_tree_add_item()" whenever possible.
 
 ------------------------------------------------------------------------
-r15343 | guy | 2005-08-13 17:34:44 -0500 (Sat, 13 Aug 2005) | 3 lines
+r16482 | sahlberg | 2005-11-11 22:23:52 -0600 (Fri, 11 Nov 2005) | 10 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ieee8023.c
+   M /trunk/epan/dissectors/packet-smb2.c
+   M /trunk/epan/dissectors/packet-smb2.h
 
-Construct the tvbuff for the payload of an 802.3 packet to have the
-appropriate length (min(reported length, captured data present)).
+start separating things out into structures
+we can regenerate from the header
+we need to remember between request/response
+we need on a per conersation bases
+
+to reduce the amount of data we store in the per req/resp  pair  since there will be many of them and we want that struct as small as possible.
 
-------------------------------------------------------------------------
-r15342 | guy | 2005-08-13 17:08:22 -0500 (Sat, 13 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-rpc.c
 
-Properly terminate the string generated for string items.
 
-Use "format_text()" to handle non-printable characters in the display
-string for those items.
 
 ------------------------------------------------------------------------
-r15341 | guy | 2005-08-13 17:05:01 -0500 (Sat, 13 Aug 2005) | 13 lines
+r16481 | sahlberg | 2005-11-11 19:21:43 -0600 (Fri, 11 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-scsi.c
+   M /trunk/epan/dissectors/packet-dcerpc-nt.c
 
-Get rid of unused variables.
+ a guid is only 16  bytes  so dont highlight 20 bytes in the hexpane
 
-Use "tvb_format_text()" and friends to format strings for display.
 
-Don't throw an exception on errors if we can keep dissecting.
+------------------------------------------------------------------------
+r16480 | jmayer | 2005-11-11 18:42:45 -0600 (Fri, 11 Nov 2005) | 1 line
+Changed paths:
+   M /trunk/epan/dissectors/pidl/idl_types.h
 
-Use "PROTO_ITEM_SET_GENERATED()" to mark items as generated.
+Update to samba 11681
+------------------------------------------------------------------------
+r16479 | jmayer | 2005-11-11 18:42:03 -0600 (Fri, 11 Nov 2005) | 24 lines
+Changed paths:
+   M /trunk/tools/pidl/TODO
+   M /trunk/tools/pidl/lib/Parse/Pidl/NDR.pm
+   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm
+   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/NDR/Server.pm
+   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/Template.pm
 
-If an item covers real data, it's not generated.
+Update to samba 11691:
+------------------------------------------------------------------------
+r11535 | jelmer | 2005-11-06 14:53:37 +0100 (Sun, 06 Nov 2005) | 2 lines
+Changed paths:
+   M /branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba/Template.pm
 
-Dissect WRITE FILEMARKS (6) (we already had a dissector, but it wasn't
-being used).
+Support void functions when generating templates.
 
 ------------------------------------------------------------------------
-r15340 | gerald | 2005-08-13 13:52:41 -0500 (Sat, 13 Aug 2005) | 2 lines
+r11539 | jelmer | 2005-11-06 15:31:01 +0100 (Sun, 06 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/docbook/release-notes.xml
+   M /branches/SAMBA_4_0/source/pidl/TODO
+   M /branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/NDR.pm
+   M /branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba/NDR/Header.pm
+   M /branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba/NDR/Server.pm
+   M /branches/SAMBA_4_0/source/pidl/lib/Parse/Pidl/Samba/Template.pm
 
-Add an item for CSM_ENCAPS.
+Fix indentation in templates. Always generate lower-case
+UUID strings as GUID_from_string seems to have trouble with
+uppercased ones.
 
 ------------------------------------------------------------------------
-r15339 | gerald | 2005-08-13 13:49:57 -0500 (Sat, 13 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-csm-encaps.c
 
-Fix another infinite loop found by randpkt.
 
 ------------------------------------------------------------------------
-r15338 | etxrab | 2005-08-13 05:17:20 -0500 (Sat, 13 Aug 2005) | 1 line
+r16478 | jmayer | 2005-11-11 18:25:27 -0600 (Fri, 11 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-gsm_a.c
+   M /trunk/epan/dissectors/packet-smb2.c
+   M /trunk/epan/dissectors/packet-smb2.h
 
-Get rid of an unused variable, don't include tcap.h and remove some redundant code.
+Propset svn:...
 ------------------------------------------------------------------------
-r15337 | etxrab | 2005-08-13 05:11:23 -0500 (Sat, 13 Aug 2005) | 3 lines
+r16477 | sahlberg | 2005-11-11 16:12:10 -0600 (Fri, 11 Nov 2005) | 10 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-gsm_a.c
+   M /trunk/epan/dissectors/packet-dcerpc-nt.c
+   M /trunk/epan/dissectors/packet-dcerpc-nt.h
+   M /trunk/epan/dissectors/packet-smb2.c
 
-From Peter Johansson:
-mnc>>4; Should  be replaced with mnc = mnc>>4;
+in smb2   the file handles are not normal context handles    they are just a guid
 
-------------------------------------------------------------------------
-r15336 | guy | 2005-08-13 03:10:12 -0500 (Sat, 13 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/debian/ethereal-root.desktop
+make them a guid in smb2 dissector and make tim pottesr excellent conmtext handle tracking also able to do the same thing for GUIDs
 
-"fi" comes before "fr" in alphabetical order.  (This also makes it match
-the main "ethereal.desktop" file.)
 
-Expand the RCS ID.
+( a context handle is just a 32 biut attribute field followed by a uuid anyway)
 
-------------------------------------------------------------------------
-r15335 | guy | 2005-08-13 02:30:57 -0500 (Sat, 13 Aug 2005) | 9 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-tcp.c
 
-Do the sequence number analysis *before* dissecting the payload, so we
-don't have to worry about catching exceptions in the payload dissection
-and doing the sequence number analysis - we weren't doing so in one
-place.  That also puts the sequence number analysis *before* the "TCP
-payload" entry for payload being reassembled into a later packet.
 
-XXX - should we do the tapping before dissecting the payload, too, so
-that it gets done even if we throw an exception?
 
 ------------------------------------------------------------------------
-r15334 | jmayer | 2005-08-13 01:42:19 -0500 (Sat, 13 Aug 2005) | 1 line
+r16476 | etxrab | 2005-11-11 16:05:21 -0600 (Fri, 11 Nov 2005) | 5 lines
 Changed paths:
-   M /trunk/idl2eth.sh
+   M /trunk/epan/dissectors/packet-isup.c
 
-Small optimization
+fix:
+Malformed packet IAM, Calling party number 
+Application transport -  some code clean up. 
+bug 551 Nor Med PC ethereal-bugs@ethereal.com NEW SS7, ISUP, IAM-signal, malformed packet (not) 
+Bug 554 Min Low PC ethereal-bugs@ethereal.com NEW ETSI codec dissection error in BICC 
 ------------------------------------------------------------------------
-r15333 | jmayer | 2005-08-13 01:29:09 -0500 (Sat, 13 Aug 2005) | 1 line
+r16475 | sahlberg | 2005-11-11 06:49:42 -0600 (Fri, 11 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/ethereal.desktop
+   M /trunk/epan/dissectors/packet-smb2.c
+
+start decoding notify requests
+
 
-Additions from current Suse and Debian
 ------------------------------------------------------------------------
-r15332 | sahlberg | 2005-08-13 01:21:37 -0500 (Sat, 13 Aug 2005) | 3 lines
+r16474 | sahlberg | 2005-11-11 05:35:10 -0600 (Fri, 11 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/epan.c
-   M /trunk/epan/frame_data.c
-   M /trunk/epan/frame_data.h
+   M /trunk/epan/dissectors/packet-smb2.c
 
-get rid of one more gmemchunk
+dissect READ packets
 
 
 ------------------------------------------------------------------------
-r15331 | jmayer | 2005-08-13 00:55:06 -0500 (Sat, 13 Aug 2005) | 4 lines
+r16473 | sahlberg | 2005-11-11 05:14:14 -0600 (Fri, 11 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/debian/changelog
-   M /trunk/debian/control
-   M /trunk/debian/ethereal-common.files
-   M /trunk/debian/ethereal-common.manpages
-   M /trunk/debian/ethereal-dev.docs
-   M /trunk/debian/ethereal-dev.files
-   M /trunk/debian/ethereal-dev.header-files
-   M /trunk/debian/ethereal-dev.manpages
-   M /trunk/debian/ethereal-dev.postinst
-   M /trunk/debian/ethereal-dev.prerm
-   A /trunk/debian/ethereal-root.desktop
-   M /trunk/debian/ethereal.files
-   M /trunk/debian/ethereal.manpages
-   M /trunk/debian/ethereal.menu
-   A /trunk/debian/patches
-   A /trunk/debian/patches/00list
-   A /trunk/debian/patches/01_idl2deb.dpatch
-   A /trunk/debian/patches/02_asn2deb.dpatch
-   A /trunk/debian/patches/03_preferences.dpatch
-   A /trunk/debian/patches/04_drop-capabilities.dpatch
-   A /trunk/debian/patches/05_plugin-libdir.dpatch
-   A /trunk/debian/patches/06_giop-buffer.dpatch
-   A /trunk/debian/patches/07_gcc4.dpatch
-   A /trunk/debian/patches/08_ethereal-desktop-menu.dpatch
-   A /trunk/debian/patches/09_idl2eth.dpatch
-   A /trunk/debian/patches/10_ethereal_gen.dpatch
-   A /trunk/debian/patches/11_diameter_vendors.dpatch
-   M /trunk/debian/rules
-   M /trunk/debian/tethereal.files
-   M /trunk/debian/tethereal.manpages
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Aplly those parts of ethereal_0.10.12-3.diff.gz
-from Debian, that change debian/
+write offset is 32 bits   so is write length
 
 
 ------------------------------------------------------------------------
-r15330 | sahlberg | 2005-08-12 21:24:11 -0500 (Fri, 12 Aug 2005) | 3 lines
+r16472 | sahlberg | 2005-11-11 05:03:00 -0600 (Fri, 11 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/circuit.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-more gmemchunk -> se_alloc() conversions
+ add allocation size
 
 
 ------------------------------------------------------------------------
-r15329 | sahlberg | 2005-08-12 21:19:03 -0500 (Fri, 12 Aug 2005) | 3 lines
+r16471 | sahlberg | 2005-11-11 04:26:36 -0600 (Fri, 11 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/conversation.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-start converting gmemchunk into se_alloc() in /epan
+add decode of endoffile for file infolevel 0x12
 
 
 ------------------------------------------------------------------------
-r15328 | sahlberg | 2005-08-12 20:29:31 -0500 (Fri, 12 Aug 2005) | 10 lines
+r16470 | sahlberg | 2005-11-11 03:09:31 -0600 (Fri, 11 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/asn1/acse/packet-acse-template.c
-   M /trunk/epan/dissectors/packet-acse.c
-   M /trunk/epan/dissectors/packet-dcerpc-nt.c
-   M /trunk/epan/dissectors/packet-dcerpc.c
-   M /trunk/epan/dissectors/packet-iax2.c
-   M /trunk/epan/dissectors/packet-jxta.c
-   M /trunk/epan/dissectors/packet-ncp.c
-   M /trunk/epan/dissectors/packet-ntlmssp.c
-   M /trunk/epan/dissectors/packet-rpc.c
-   M /trunk/epan/dissectors/packet-smb-sidsnooping.c
-   M /trunk/epan/dissectors/packet-smb.c
-   M /trunk/epan/dissectors/packet-ssh.c
-   M /trunk/epan/dissectors/packet-wcp.c
-
-some more gmemchunk -> se_alloc() updates
+   M /trunk/epan/dissectors/packet-smb2.c
 
+class:3  level:0 is just a normal nt security descvriptor
 
-there are only 5 gmemchunks left   but they have different litetime for their allocations   than the 100+   ones that have been removed.
-
-The remaining 5 should be converted some other way.
 
+------------------------------------------------------------------------
+r16469 | sahlberg | 2005-11-11 02:23:11 -0600 (Fri, 11 Nov 2005) | 3 lines
+Changed paths:
+   M /trunk/epan/dissectors/packet-smb2.c
 
+opcode 0x0c is Cancel
 
 
 ------------------------------------------------------------------------
-r15327 | sahlberg | 2005-08-12 19:03:12 -0500 (Fri, 12 Aug 2005) | 3 lines
+r16468 | sahlberg | 2005-11-11 02:14:59 -0600 (Fri, 11 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-afp.c
-   M /trunk/epan/dissectors/packet-afs.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-gmemchunk -> se_alloc() improvements
+opcode 0x0f is Notify
 
 
 ------------------------------------------------------------------------
-r15326 | sahlberg | 2005-08-12 18:57:01 -0500 (Fri, 12 Aug 2005) | 2 lines
+r16467 | sahlberg | 2005-11-11 02:04:32 -0600 (Fri, 11 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ndps.c
-   M /trunk/epan/dissectors/packet-nfs.c
+   M /trunk/epan/dissectors/packet-smb2.c
+
+SMB2_FILE_INFO_0a  structure   which is used with SetInfo  to rename a file
+
 
-gmemchunk -> se_alloc() improvements
 
 ------------------------------------------------------------------------
-r15325 | sahlberg | 2005-08-12 18:46:46 -0500 (Fri, 12 Aug 2005) | 3 lines
+r16466 | sahlberg | 2005-11-11 01:49:13 -0600 (Fri, 11 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-tcp.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-some gmemchunk -> se_alloc() improvements for tcp
+dont dereference null pointers
 
 
 ------------------------------------------------------------------------
-r15324 | sahlberg | 2005-08-12 18:34:59 -0500 (Fri, 12 Aug 2005) | 3 lines
+r16465 | sahlberg | 2005-11-11 01:41:09 -0600 (Fri, 11 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ajp13.c
-   M /trunk/epan/dissectors/packet-aoe.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-gmemchunk -> se_alloc() improvements
+the uid is 64 bits
 
 
 ------------------------------------------------------------------------
-r15323 | sahlberg | 2005-08-12 18:29:19 -0500 (Fri, 12 Aug 2005) | 3 lines
+r16464 | sahlberg | 2005-11-10 22:35:22 -0600 (Thu, 10 Nov 2005) | 6 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcm.c
-   M /trunk/epan/dissectors/packet-eap.c
+   M /trunk/epan/stream.c
+
+from albert chin
 
-gmemchunk -> se_alloc() improvements
+
+remove some c99-isms
 
 
 ------------------------------------------------------------------------
-r15322 | sahlberg | 2005-08-12 18:17:30 -0500 (Fri, 12 Aug 2005) | 3 lines
+r16463 | sahlberg | 2005-11-10 21:50:53 -0600 (Thu, 10 Nov 2005) | 7 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-fc.c
-   M /trunk/epan/dissectors/packet-fcdns.c
-   M /trunk/epan/dissectors/packet-fcels.c
-   M /trunk/epan/dissectors/packet-fcswils.c
+   M /trunk/epan/dissectors/Makefile.common
+   M /trunk/epan/dissectors/packet-smb2.c
+   A /trunk/epan/dissectors/packet-smb2.h
 
-gmemchunk -> se_alloc() improvements
+break out some structures into packet-smb2.h   so we can start tapping in later
 
+we will do service-response-time   statistics before other inferior products have even noticed a new protocol is in town.
 
-------------------------------------------------------------------------
-r15321 | sahlberg | 2005-08-12 18:00:01 -0500 (Fri, 12 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-fcfcs.c
-   M /trunk/epan/dissectors/packet-fcfzs.c
-   M /trunk/epan/dissectors/packet-fcp.c
-   M /trunk/epan/dissectors/packet-giop.c
-   M /trunk/epan/dissectors/packet-ipx.c
-   M /trunk/epan/dissectors/packet-iscsi.c
 
-more gmemchunk -> se_alloc() improvements
 
 
 ------------------------------------------------------------------------
-r15320 | jmayer | 2005-08-12 17:55:58 -0500 (Fri, 12 Aug 2005) | 1 line
+r16462 | gerald | 2005-11-10 18:04:37 -0600 (Thu, 10 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-extreme.c
+   M /trunk/epan/dissectors/packet-p_mul.c
+
+Don't use null values for blurbs in header fields.
 
-Fix dissector bug on last element of ESRP
 ------------------------------------------------------------------------
-r15319 | sahlberg | 2005-08-12 17:12:32 -0500 (Fri, 12 Aug 2005) | 3 lines
+r16461 | sahlberg | 2005-11-10 16:46:10 -0600 (Thu, 10 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-t38.c
-   M /trunk/epan/dissectors/packet-x11.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-more gmemchunk->se_alloc() improvements
+start decoding SMB2_FILE_INFO_22
 
 
 ------------------------------------------------------------------------
-r15318 | sahlberg | 2005-08-12 16:29:06 -0500 (Fri, 12 Aug 2005) | 3 lines
+r16460 | sahlberg | 2005-11-10 15:52:55 -0600 (Thu, 10 Nov 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-rdt.c
-   M /trunk/epan/dissectors/packet-sip.c
+   M /trunk/epan/dtd_preparse.l
 
-gmemchunk -> se_alloc() improvements
+from albert chan
+
+dont use a variable with the name dirname since it will collide with symbols on some hosts
 
 
 ------------------------------------------------------------------------
-r15317 | sahlberg | 2005-08-12 16:21:49 -0500 (Fri, 12 Aug 2005) | 3 lines
+r16459 | sahlberg | 2005-11-10 15:50:30 -0600 (Thu, 10 Nov 2005) | 6 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-socks.c
-   M /trunk/epan/dissectors/packet-vj.c
+   M /trunk/epan/dissectors/packet-cimd.c
+   M /trunk/epan/dissectors/packet-dcp.c
 
-gmemchunk -> se_alloc() updates
+from albert chin
+
+
+dont use c++ style comments
 
 
 ------------------------------------------------------------------------
-r15316 | etxrab | 2005-08-12 16:08:02 -0500 (Fri, 12 Aug 2005) | 12 lines
+r16458 | sahlberg | 2005-11-10 04:08:32 -0600 (Thu, 10 Nov 2005) | 11 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-juniper.c
-   M /trunk/wiretap/libpcap.c
-   M /trunk/wiretap/wtap.c
-   M /trunk/wiretap/wtap.h
+   M /trunk/epan/dissectors/packet-smb2.c
+
+use the policy_handle framework for dcerpc    to trach which frame a policy handle is opened in and which one it is closed in.
 
-From Hannes Gredler
 
-- add support for Multi-Link Frame-Relay (FRF.15) captures
-  taken on Juniper ML-, LS-, AS- PICs.
+also attempt to store a name for it   like File:foo
+
+
+but this does not work yet.
+
 
-- rework of the common juniper header dissector:
-    test the extension flag (0x80) which indicates that there are
-    meta-information like interface-index, interface-name etc.
-    present
 
-- minor bugfix (LSQ L3-proto masks, direction masks were broken)
 
 ------------------------------------------------------------------------
-r15315 | gerald | 2005-08-12 11:32:28 -0500 (Fri, 12 Aug 2005) | 3 lines
+r16457 | guy | 2005-11-10 01:42:23 -0600 (Thu, 10 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-giop.c
+   M /trunk/epan/prefs.c
+   M /trunk/epan/proto.c
 
-Don't try to allocate more than ITEM_LABEL_LENGTH bytes for something we're 
-adding to the tree.  Fixes bugs 349 and 352.
+Don't pass signed characters to the <ctype.h> macros.
 
 ------------------------------------------------------------------------
-r15314 | gerald | 2005-08-12 10:27:11 -0500 (Fri, 12 Aug 2005) | 3 lines
+r16456 | guy | 2005-11-10 01:26:30 -0600 (Thu, 10 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc.c
+   M /trunk/epan/dissectors/packet-slimp3.c
 
-Fix the length that we pass to proto_tree_add_uint_format() so that we don't
-throw a dissector error.  Fixes bug 348.
+Include <ctype.h> to declare "isprint()".
 
 ------------------------------------------------------------------------
-r15313 | jmayer | 2005-08-12 09:05:38 -0500 (Fri, 12 Aug 2005) | 5 lines
+r16455 | guy | 2005-11-09 21:16:25 -0600 (Wed, 09 Nov 2005) | 6 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-extreme.c
+   M /trunk/epan/dissectors/packet-ipv6.h
 
-- Bug fix: Show ip-addresses with correct endianess.
-- Show version properly
-- VLAN ID was at a different place than expected.
-- Add some documentation infos
+There's no guarantee that BYTE_ORDER is defined as anything useful, and
+the BYTE_ORDER == BIG_ENDIAN values for FMIP_HI_FLAG_ASSIGNED and
+FMIP_HI_FLAG_BUFFER are bogus for the way they're used anyway (they're
+used to check bits in a one-byte value), so throw away those values, and
+get rid of the leading 00 in the BYTE_ORDER == LITTLE_ENDIAN values.
 
 ------------------------------------------------------------------------
-r15312 | sahlberg | 2005-08-12 05:50:55 -0500 (Fri, 12 Aug 2005) | 3 lines
+r16454 | guy | 2005-11-09 21:00:43 -0600 (Wed, 09 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-rtcp.c
-   M /trunk/epan/dissectors/packet-rtp.c
-   M /trunk/epan/dissectors/packet-rtsp.c
-
-more gmemchunk -> se_alloc() improvements
+   M /trunk/gtk/toolbar.c
 
+Skip some toolbar #includes if we're not using GTK+ 2.x.
 
 ------------------------------------------------------------------------
-r15311 | sahlberg | 2005-08-12 05:41:22 -0500 (Fri, 12 Aug 2005) | 3 lines
+r16453 | guy | 2005-11-09 20:49:54 -0600 (Wed, 09 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-atalk.c
+   M /trunk/wiretap/file_wrappers.c
 
-more gmemchunk -> se_alloc() improvements
+Include <unistd.h> if available, to get "close()" declared.
 
+Update the big comment to reflect current reality.
 
 ------------------------------------------------------------------------
-r15310 | sahlberg | 2005-08-12 05:29:09 -0500 (Fri, 12 Aug 2005) | 3 lines
+r16452 | etxrab | 2005-11-09 15:50:39 -0600 (Wed, 09 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ldap.c
-
-more gmemchunk -> se_alloc() improvements
-
+   M /trunk/AUTHORS
+   M /trunk/epan/dissectors/packet-rtcp.c
 
+From Andrei Emeltchenko
+I have added new RTCP POC fields as OMA standard says. With some additions. 
 ------------------------------------------------------------------------
-r15309 | sahlberg | 2005-08-12 05:21:14 -0500 (Fri, 12 Aug 2005) | 3 lines
+r16451 | sahlberg | 2005-11-09 15:06:06 -0600 (Wed, 09 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-beep.c
-   M /trunk/epan/dissectors/packet-rlogin.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-some more gmemchunk -> se_alloc() improvements
+add initial decode for SMB2_FS_INFO_01
 
 
 ------------------------------------------------------------------------
-r15308 | sahlberg | 2005-08-12 05:03:17 -0500 (Fri, 12 Aug 2005) | 5 lines
+r16450 | sahlberg | 2005-11-09 14:57:56 -0600 (Wed, 09 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-scsi.c
-   M /trunk/epan/dissectors/packet-smtp.c
-
-remove some unused variables from scsi
+   M /trunk/epan/dissectors/packet-smb2.c
 
-change two gmemchunks in smtp to se_alloc() and remove one now redundant init routine.
+add decode of SMB2_FS_INFO_05 
 
 
 ------------------------------------------------------------------------
-r15307 | sahlberg | 2005-08-12 04:56:28 -0500 (Fri, 12 Aug 2005) | 4 lines
+r16449 | sahlberg | 2005-11-09 14:37:49 -0600 (Wed, 09 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-msproxy.c
-   M /trunk/epan/dissectors/packet-scsi.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-add missing include to scsi
+add decoding of the create request
 
-change two gmemchunks to se_alloc() for msproxy
 
 ------------------------------------------------------------------------
-r15306 | jmayer | 2005-08-12 04:56:13 -0500 (Fri, 12 Aug 2005) | 1 line
+r16448 | gerald | 2005-11-09 10:01:35 -0600 (Wed, 09 Nov 2005) | 10 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-extreme.c
+   M /trunk/epan/dissectors/packet-p_mul.c
 
-EDS/EAPS/EPRS mostly finished - several fixmes remain
-------------------------------------------------------------------------
-r15305 | sahlberg | 2005-08-12 04:47:33 -0500 (Fri, 12 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/libethereal.def
+From Stig Bjørlykke:
 
-add some symbols to libethereal.def
+I just learned how easy it is to reassemble multiple UDP packets, so  I
+had to implement this for the P_Mul protocol :)
 
+This patch fixes:
+* Reassemble multiple data packets
+* Add packet length check
+* Fix for PDU type in tree entry
 
 ------------------------------------------------------------------------
-r15304 | sahlberg | 2005-08-12 04:31:07 -0500 (Fri, 12 Aug 2005) | 4 lines
+r16447 | sahlberg | 2005-11-09 07:19:57 -0600 (Wed, 09 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-scsi.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-oops forgot to delete a variable
+some more of the never ending stream of smb2 updates
 
 
 
 ------------------------------------------------------------------------
-r15303 | sahlberg | 2005-08-12 04:30:24 -0500 (Fri, 12 Aug 2005) | 15 lines
+r16446 | sahlberg | 2005-11-09 04:18:31 -0600 (Wed, 09 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-scsi.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
- get rid of some unnessecary GMemChunks.
+add decode of Write commands
 
 
-These GMemChunks are used here because :
-1, GMemChunks are cheap to allocate and cheap to free
-2, We always unconditionally free the entire chunk When and only when we load a new capture.
+------------------------------------------------------------------------
+r16445 | sahlberg | 2005-11-09 03:29:41 -0600 (Wed, 09 Nov 2005) | 10 lines
+Changed paths:
+   M /trunk/epan/dissectors/packet-smb2.c
+
+add support for Close   and the new guess that the FID is present in the Find request.
 
-==>
-se_alloc() does exactly the same thing but with significantly less code
 
-==>
-se_alloc() is a much better fit to out allocation requirements and useage than GMemChunks
+Ohoy sailor,    we have spotted the concept of current working directory.
 
+does this mean we also get rid of the silly 200-256 byte path length limitation?
 
 
-------------------------------------------------------------------------
-r15302 | tuexen | 2005-08-12 04:16:51 -0500 (Fri, 12 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-asap.c
 
-Fix handling of ASAP_ENDPOINT_KEEP_ALIVE message.
 
 ------------------------------------------------------------------------
-r15301 | sahlberg | 2005-08-12 03:51:08 -0500 (Fri, 12 Aug 2005) | 3 lines
+r16444 | sahlberg | 2005-11-09 03:14:11 -0600 (Wed, 09 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/emem.c
-   M /trunk/epan/emem.h
-   M /trunk/epan/packet.c
-   M /trunk/gtk/main.c
-   M /trunk/tethereal.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Add beginning of seasonal allocation   in addition to the existing ephemeral ones.
+dissect more of the SMB2/Close function
 
 
 ------------------------------------------------------------------------
-r15300 | guy | 2005-08-12 02:47:27 -0500 (Fri, 12 Aug 2005) | 6 lines
+r16443 | guy | 2005-11-09 02:46:24 -0600 (Wed, 09 Nov 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-iax2.c
+   M /trunk/gtk/main.c
 
-In an "address" structure, "data" is a pointer; dereferencing "&data"
-doesn't give you the address value, it gives a pointer to the address
-value.
+Remove comment that no longer applies.
 
-Don't assume that pointer is aligned on a 32-bit boundary.
+If we get a getopt() error in the pre-scanning, quit - don't do all the
+GUI stuff and re-scan the arguments (and print the error message twice).
 
 ------------------------------------------------------------------------
-r15299 | jmayer | 2005-08-11 23:06:04 -0500 (Thu, 11 Aug 2005) | 1 line
+r16442 | ulfl | 2005-11-08 18:39:20 -0600 (Tue, 08 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/Makefile.common
-   A /trunk/epan/dissectors/packet-extreme.c
+   M /trunk/docbook/release-notes.xml
 
-Beginnings of a EDP, ESRP and EAPS dissector
+Updated feature: When cancelling a file load operation...
 ------------------------------------------------------------------------
-r15298 | lego | 2005-08-11 18:51:35 -0500 (Thu, 11 Aug 2005) | 3 lines
+r16441 | ulfl | 2005-11-08 16:24:53 -0600 (Tue, 08 Nov 2005) | 9 lines
 Changed paths:
-   M /trunk/asn1/h248/packet-h248-template.c
-   M /trunk/epan/dissectors/packet-h248.c
-
-avoid throwing a malformed packet
+   M /trunk/file.c
 
+from Jaap Keuter:
+Anyone having objections to idea of stopping the load of a capture file
+i.s.o. cancelling it? I'm refering to WishList Data I/O item #6.
+It seems a very reasonable idea and easy to implement.
 
-------------------------------------------------------------------------
-r15297 | jmayer | 2005-08-11 18:18:46 -0500 (Thu, 11 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-llc.c
+I've done some extensions:
+-Improve the corresponding comment on the implications why this is useful
+-added a new simple_dialog text to explain what's really going on (simply using the WTAP truncated packet message was a bit misleading)
 
-Add Extreme OUI, reorder alphabetically
 ------------------------------------------------------------------------
-r15296 | etxrab | 2005-08-11 15:47:09 -0500 (Thu, 11 Aug 2005) | 2 lines
+r16440 | etxrab | 2005-11-08 16:18:06 -0600 (Tue, 08 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-gsm_a.c
+   M /trunk/epan/asn1.h
+   M /trunk/epan/dissectors/format-oid.h
+   M /trunk/epan/dissectors/packet-cops.c
 
-From Rene Pilz:
-The MCC/MNC in de_gmm_rai is not correct decoded
+Move def of subid_t to format-oid.h don't include asn1.h in cops any more.
 ------------------------------------------------------------------------
-r15295 | etxrab | 2005-08-11 15:14:41 -0500 (Thu, 11 Aug 2005) | 16 lines
+r16439 | sahlberg | 2005-11-08 15:16:36 -0600 (Tue, 08 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-giop.c
-   M /trunk/epan/dissectors/packet-giop.h
-   M /trunk/ethereal_gen.py
-
-From W. Borgert:
-three trivial corrections for the GIOP dissector:
-
-- allow filtering GIOP exceptions, e.g. "giop.replystatus = 2"
-  or "giop.exceptionid matches MyError", older patch at
-  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=314835
+   M /trunk/epan/dissectors/packet-smb2.c
 
-- show IDLs sequence<octet> more compact, not one line per
-  octet, older patch at
-  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=314836
+ start dissecting SMB2_FILE_INFO_12
 
-- decode _is_a requests and replies, older patch at
-  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=314871
-
-With a change to not create a malformed packet in the "stub data".
 
 ------------------------------------------------------------------------
-r15294 | lego | 2005-08-11 13:21:23 -0500 (Thu, 11 Aug 2005) | 9 lines
+r16438 | gerald | 2005-11-08 09:28:15 -0600 (Tue, 08 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/asn1/h248/packet-h248-template.c
-   M /trunk/epan/dissectors/packet-h248.c
-
-Change a switch into an "if else if else if else" that fixes the "too large for switch" in HP-UX 10.20 .
-
-The generated file has a lot of indentation changes due probably to a change in asn2eth.
-
-The underlying reason for which I added this code (dissect_ber_integer() would not add as a "filterable" field if it is larger than 4 bytes, should be handled in dissect_ber_integer() ) remains there.
-
-Should we change dissect_ber_integer() itself to make sure that a 5 byte unsigned integer which fits in 4 bytes gets added to the tree as "filterable"?
+   M /trunk/epan/dissectors/packet-gtp.c
 
+From Peter Kovar: Fix the typo referenced in bug 577.
 
 ------------------------------------------------------------------------
-r15293 | gerald | 2005-08-11 11:24:12 -0500 (Thu, 11 Aug 2005) | 2 lines
+r16437 | gerald | 2005-11-08 09:23:20 -0600 (Tue, 08 Nov 2005) | 2 lines
 Changed paths:
    M /trunk/docbook/release-notes.xml
 
-Add notes about SCSI, BER, and ONC RPC bugs.
+Fix a cut-and-pasteo.
 
 ------------------------------------------------------------------------
-r15292 | gerald | 2005-08-11 10:35:17 -0500 (Thu, 11 Aug 2005) | 2 lines
+r16436 | gerald | 2005-11-08 09:22:38 -0600 (Tue, 08 Nov 2005) | 7 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
+   M /trunk/docbook/release-notes.xml
+   M /trunk/epan/dissectors/packet-gtp.c
+
+You don't tug on Superman's cape.  You don't spit into the wind.
+You don't pull the mask off the old Lone Ranger, and you don't
+overflow a guint8.  Fixes the infinite loop in bug 576.
 
-Add checks for infinite loops.  Fixes recent Buildbot failures.
+Fix up whitespace.  Add an entry to the release notes.  Apologies
+to Jim Croce.
 
 ------------------------------------------------------------------------
-r15291 | sahlberg | 2005-08-11 05:08:45 -0500 (Thu, 11 Aug 2005) | 11 lines
+r16435 | sahlberg | 2005-11-08 03:20:04 -0600 (Tue, 08 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-iscsi.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Fix for bug 342
+dissect some of GetInfo requests and Replies
 
 
-If we encounter a frame we have already seen (i.e. visited==1)  but we can not fing the ISCSI command inside the _matched table, this just means there were no response pdu nor any data pdu with the S bit set.
-So, then just pick the cdata structure up from the _unmatched table instead.
+------------------------------------------------------------------------
+r16434 | sahlberg | 2005-11-08 02:53:55 -0600 (Tue, 08 Nov 2005) | 6 lines
+Changed paths:
+   M /trunk/epan/dissectors/packet-smb2.c
 
-The SCSI CDB  dissector really really want a real CDATA structure passed to it.
+add a comment to keep the dissector in sync with the wiki
 
+rename functions 0x10 and 0x11 to follow the names in the wiki
 
 
 
 ------------------------------------------------------------------------
-r15290 | sahlberg | 2005-08-11 04:20:23 -0500 (Thu, 11 Aug 2005) | 15 lines
+r16433 | sahlberg | 2005-11-08 02:41:42 -0600 (Tue, 08 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-rpc.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-We use heuristics to detect what MIGHT be onc-rpc packets.
+add a pointer to the wiki for documentation of this protocol
 
-as heuristics they are not 100% perfect, else they would not be heuristics.
 
+------------------------------------------------------------------------
+r16432 | sahlberg | 2005-11-08 02:40:32 -0600 (Tue, 08 Nov 2005) | 4 lines
+Changed paths:
+   M /trunk/epan/dissectors/packet-smb2.c
 
-IF the preference option "Dissect unknown RPC program numbers" are enabled,
-add a sanity check to see that program_version is <=10
-  (no one uses versions >10 ?)
-to avoid trying to add 2 bilion different versions to the program->version linked list
-in case we mistook the packet for ONC-RPC and the "version" field contains a huge random number.
-
+ add dissection of the known parts of negotiate protocol
 
-This bug would only trigger a hang/crash IFF the option above is enabled.
 
 
 ------------------------------------------------------------------------
-r15289 | sahlberg | 2005-08-11 03:15:52 -0500 (Thu, 11 Aug 2005) | 4 lines
+r16431 | guy | 2005-11-07 22:03:50 -0600 (Mon, 07 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-scsi.c
-
-fix several bugs where we might dereference a null pointer
-
+   M /trunk/configure.in
 
+When using GCC, compile with -Wpointer-arith, to catch code that some
+other C compilers can't handle.
 
 ------------------------------------------------------------------------
-r15288 | sahlberg | 2005-08-11 02:44:38 -0500 (Thu, 11 Aug 2005) | 3 lines
+r16430 | guy | 2005-11-07 16:50:34 -0600 (Mon, 07 Nov 2005) | 8 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-smpp.c
-   M /trunk/epan/dissectors/packet-wsp.c
+   M /trunk/epan/dissectors/packet-s5066.c
+
+Use "proto_tree_add_item()", not "proto_tree_add_bytes()", if you're
+just supplying the result of "tvb_get_ptr()" with the same tvbuff,
+offset, and length as the byte array.
 
-some more tcv_get_stringz() to tvb_get_ephemeral_stringz() conversions
+Get rid of an unused variable.
 
+Set svn:keywords and svn:eol-style appropriately.
 
 ------------------------------------------------------------------------
-r15287 | gerald | 2005-08-10 15:17:53 -0500 (Wed, 10 Aug 2005) | 2 lines
+r16429 | gerald | 2005-11-07 15:58:27 -0600 (Mon, 07 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/docbook/release-notes.xml
+   M /trunk/epan/dissectors/packet-dec-dnart.c
 
-Add bug IDs to the list of bugs fixed.
+Fix an ftsanity.py error.
 
 ------------------------------------------------------------------------
-r15286 | ulfl | 2005-08-10 14:49:45 -0500 (Wed, 10 Aug 2005) | 5 lines
+r16428 | gerald | 2005-11-07 15:54:08 -0600 (Mon, 07 Nov 2005) | 9 lines
 Changed paths:
-   M /trunk/gtk/capture_prefs.c
-   M /trunk/gtk/color_dlg.c
-   M /trunk/gtk/column_prefs.c
-   M /trunk/gtk/conversations_table.c
-   M /trunk/gtk/decode_as_dlg.c
-   M /trunk/gtk/dfilter_expr_dlg.c
-   M /trunk/gtk/gtk_stat_util.c
-   M /trunk/gtk/hostlist_table.c
-   M /trunk/gtk/main.c
-   M /trunk/gtk/mtp3_summary.c
-   M /trunk/gtk/packet_list.c
-   M /trunk/gtk/proto_dlg.c
-   M /trunk/gtk/proto_draw.c
-   M /trunk/gtk/proto_hier_stats_dlg.c
-   M /trunk/gtk/rtp_analysis.c
-   M /trunk/gtk/sctp_chunk_stat_dlg.c
-   M /trunk/gtk/sctp_stat_dlg.c
-   M /trunk/gtk/toolbar.c
-   M /trunk/gtk/ui_util.c
+   M /trunk/epan/dissectors/packet-s5066.c
 
-removed tons of MSVC const related warnings.
+Fix bug 575, from Menno Andriesse:
 
-This might at some places interfere with the changes for gcc4, we might have to negotiate in that case :-)
-
-Please note that a lot of these warnings were GTK1.x related only!
-------------------------------------------------------------------------
-r15285 | guy | 2005-08-10 14:38:04 -0500 (Wed, 10 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/docbook/release-notes.xml
+  In two functions that call proto_tree_add_bytes I forgot the
+  'tvb_get_ptr' function, the argument was 'FALSE' instead.  This gave
+  a predictable 'NULL' pointer bug...
 
-Fix a typo.
+Fix an ftsanity.py error.  Fixup whitespace.
 
-------------------------------------------------------------------------
-r15284 | ulfl | 2005-08-10 14:37:29 -0500 (Wed, 10 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/file.c
 
-more snprintf() -> g_snprintf() replacements
 ------------------------------------------------------------------------
-r15283 | ulfl | 2005-08-10 14:34:09 -0500 (Wed, 10 Aug 2005) | 1 line
+r16427 | sahlberg | 2005-11-07 15:19:59 -0600 (Mon, 07 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/gtk/capture_if_details_dlg.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-don't warn the user about the WinPcap 3.1 release version as being unknown
-------------------------------------------------------------------------
-r15282 | gerald | 2005-08-10 14:31:21 -0500 (Wed, 10 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-csm-encaps.c
+begin dissecting the Find response packet
 
-Remove proprietary information at the author's request.
 
 ------------------------------------------------------------------------
-r15281 | gerald | 2005-08-10 14:28:08 -0500 (Wed, 10 Aug 2005) | 2 lines
+r16426 | guy | 2005-11-07 15:10:52 -0600 (Mon, 07 Nov 2005) | 8 lines
 Changed paths:
-   M /trunk/epan/libethereal.def
+   M /trunk/epan/dissectors/packet-rtcp.c
 
-ep_tvb_get_string -> tvb_get_ephemeral_string
+The return value of tvb_get_ptr() is a const ptr; assign it to a const
+ptr.
+
+The answer to the question
+"??????????????????????????????????????????????????????????????????" is
+"No - the return value of tvb_get_ptr() is a reference, not an allocated
+copy, and it cannot be freed and doesn't need to be freed."
 
 ------------------------------------------------------------------------
-r15280 | gerald | 2005-08-10 13:54:30 -0500 (Wed, 10 Aug 2005) | 2 lines
+r16425 | sahlberg | 2005-11-07 15:00:09 -0600 (Mon, 07 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/docbook/release-notes.xml
+   M /trunk/epan/dissectors/packet-smb2.c
+
+dissect the treeconnect request packet
 
-Add an item for the SLIMP3 overflow.
 
 ------------------------------------------------------------------------
-r15279 | gerald | 2005-08-10 13:50:36 -0500 (Wed, 10 Aug 2005) | 4 lines
+r16424 | sahlberg | 2005-11-07 14:32:27 -0600 (Mon, 07 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-slimp3.c
+   M /trunk/epan/dissectors/packet-smb2.c
+
+add request response matching so we can start passing info levels around from request to response and start dissecting some of the commands
 
-Don't overflow a buffer.  This might fix bug 327.
 
-Don't print non-pritable characters.
 
 ------------------------------------------------------------------------
-r15278 | gerald | 2005-08-10 11:05:50 -0500 (Wed, 10 Aug 2005) | 7 lines
+r16423 | guy | 2005-11-07 14:14:40 -0600 (Mon, 07 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-scsi.c
+   M /trunk/wiretap/ascend.c
 
-When we receive junk data, mark it as a malformed packet instead of
-a dissector bug.  This keeps buildbot from opening unnecessary bugs
-during fuzz testing.
+The problem wasn't that <sys/stat.h> wasn't being included, the problem
+was that file_util.h wasn't in the distribution tarball, so it couldn't
+be included - it handles including <sys/stat.h>.
 
-When we create a new scsi_task_data_t struct make sure all of its
-members are initialized.
+------------------------------------------------------------------------
+r16422 | ulfl | 2005-11-07 13:51:16 -0600 (Mon, 07 Nov 2005) | 1 line
+Changed paths:
+   M /trunk/wiretap/Makefile.common
 
+add file_util.h so distcheck might work
 ------------------------------------------------------------------------
-r15277 | gerald | 2005-08-10 10:58:26 -0500 (Wed, 10 Aug 2005) | 2 lines
+r16421 | etxrab | 2005-11-07 13:40:55 -0600 (Mon, 07 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/plugins/mgcp/packet-mgcp.c
+   M /trunk/epan/dissectors/packet-rtcp.c
 
-ep_tvb_get_string() -> tvb_get_ephemeral_string().
+Display MSW and LSW as NTP timestamp as well.
+------------------------------------------------------------------------
+r16420 | etxrab | 2005-11-07 13:39:38 -0600 (Mon, 07 Nov 2005) | 1 line
+Changed paths:
+   M /trunk/epan/dissectors/packet-alcap.c
 
+Dissect NSAP
 ------------------------------------------------------------------------
-r15276 | sahlberg | 2005-08-10 09:37:52 -0500 (Wed, 10 Aug 2005) | 3 lines
+r16419 | etxrab | 2005-11-07 13:39:02 -0600 (Mon, 07 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-smb-common.c
-   M /trunk/epan/dissectors/packet-smb-logon.c
+   M /trunk/epan/dissectors/packet-isup.c
 
-tvb_get_stringz() to tvb_get_ephemeral_stringz() conversion
+Bug fix to dissection of NSAP E164 Country codes
+------------------------------------------------------------------------
+r16418 | etxrab | 2005-11-07 13:37:10 -0600 (Mon, 07 Nov 2005) | 2 lines
+Changed paths:
+   M /trunk/epan/dissectors/packet-dec-dnart.c
 
+Martin Hill has examined packet-dec-dnart.c and found some errors and made some improvements.
 
 ------------------------------------------------------------------------
-r15275 | sahlberg | 2005-08-10 09:35:24 -0500 (Wed, 10 Aug 2005) | 3 lines
+r16417 | etxrab | 2005-11-07 13:35:48 -0600 (Mon, 07 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-image-jfif.c
-   M /trunk/epan/dissectors/packet-pgsql.c
-   M /trunk/epan/dissectors/packet-smb-browse.c
+   M /trunk/AUTHORS
+   M /trunk/epan/dissectors/Makefile.common
+   A /trunk/epan/dissectors/packet-p_mul.c
 
-tvb_get_stringz() to tvb_get_ephemeral_stringz() conversion.
+From Stig Bjørlykke
 
+A new dissector for P_Mul (ACP142) http://www.jcs.mil/j6/cceb/acps/Acp142.pdf
 
 ------------------------------------------------------------------------
-r15274 | sahlberg | 2005-08-10 09:28:18 -0500 (Wed, 10 Aug 2005) | 3 lines
+r16416 | guy | 2005-11-07 11:18:52 -0600 (Mon, 07 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-afp.c
-
-convert to tvb_get_ephemeral_stringz() and fix an obvious memleak
+   M /trunk/wiretap/ascend.c
 
+You need <sys/stat.h>, if present, to use fstat().
 
 ------------------------------------------------------------------------
-r15273 | sahlberg | 2005-08-10 09:25:59 -0500 (Wed, 10 Aug 2005) | 3 lines
+r16415 | guy | 2005-11-07 11:12:43 -0600 (Mon, 07 Nov 2005) | 5 lines
 Changed paths:
-   M /trunk/doc/README.developer
-   M /trunk/epan/tvbuff.c
-   M /trunk/epan/tvbuff.h
+   M /trunk/wiretap/file_util.h
 
-add new function tvb_get_ephemeral_stringz()
+The standard <dirent.h> routines to rewind and close a directory are
+rewinddir() and closedir().
 
+Clean up indentation.
 
 ------------------------------------------------------------------------
-r15272 | sahlberg | 2005-08-10 09:17:27 -0500 (Wed, 10 Aug 2005) | 3 lines
+r16414 | sahlberg | 2005-11-07 02:57:04 -0600 (Mon, 07 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc-nt.c
-   M /trunk/epan/dissectors/packet-gsm_sms.c
-   M /trunk/epan/dissectors/packet-kerberos.c
-   M /trunk/epan/dissectors/packet-ms-mms.c
-   M /trunk/epan/dissectors/packet-ntlmssp.c
-   M /trunk/epan/dissectors/packet-per.c
-   M /trunk/epan/dissectors/packet-srvloc.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-convert some tvb_fake_unicode() to tvb_get_ephemeral_faked_unicode()
+put the error code in col info
 
 
 ------------------------------------------------------------------------
-r15271 | sahlberg | 2005-08-10 08:56:34 -0500 (Wed, 10 Aug 2005) | 3 lines
+r16413 | sahlberg | 2005-11-07 02:39:23 -0600 (Mon, 07 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/doc/README.developer
-   M /trunk/epan/dissectors/packet-tds.c
-   M /trunk/epan/tvbuff.c
-   M /trunk/epan/tvbuff.h
+   M /trunk/epan/dissectors/packet-smb2.c
 
-rename ep_tvb_fake_unicode() to tvb_get_ephemeral_faked_unicode() and update the README file.
+smb2 updates,    most of the header is now decoded properly
 
 
 ------------------------------------------------------------------------
-r15270 | sahlberg | 2005-08-10 08:41:13 -0500 (Wed, 10 Aug 2005) | 3 lines
+r16412 | guy | 2005-11-07 02:36:25 -0600 (Mon, 07 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/doc/README.developer
-   M /trunk/epan/dissectors/packet-3g-a11.c
-   M /trunk/epan/dissectors/packet-afp.c
-   M /trunk/epan/dissectors/packet-aim-messaging.c
-   M /trunk/epan/dissectors/packet-aim.c
-   M /trunk/epan/dissectors/packet-ansi_a.c
-   M /trunk/epan/dissectors/packet-atalk.c
-   M /trunk/epan/dissectors/packet-bacapp.c
-   M /trunk/epan/dissectors/packet-dcerpc-nt.c
-   M /trunk/epan/dissectors/packet-dcm.c
-   M /trunk/epan/dissectors/packet-dhcp-failover.c
-   M /trunk/epan/dissectors/packet-dhcpv6.c
-   M /trunk/epan/dissectors/packet-dsi.c
-   M /trunk/epan/dissectors/packet-edonkey.c
-   M /trunk/epan/dissectors/packet-fcdns.c
-   M /trunk/epan/dissectors/packet-fcswils.c
-   M /trunk/epan/dissectors/packet-fix.c
-   M /trunk/epan/dissectors/packet-gsm_a.c
-   M /trunk/epan/dissectors/packet-gtp.c
-   M /trunk/epan/dissectors/packet-http.c
-   M /trunk/epan/dissectors/packet-icep.c
-   M /trunk/epan/dissectors/packet-ieee80211.c
-   M /trunk/epan/dissectors/packet-image-gif.c
-   M /trunk/epan/dissectors/packet-jxta.c
-   M /trunk/epan/dissectors/packet-mmse.c
-   M /trunk/epan/dissectors/packet-mq.c
-   M /trunk/epan/dissectors/packet-ms-mms.c
-   M /trunk/epan/dissectors/packet-msrp.c
-   M /trunk/epan/dissectors/packet-multipart.c
-   M /trunk/epan/dissectors/packet-pagp.c
-   M /trunk/epan/dissectors/packet-q931.c
-   M /trunk/epan/dissectors/packet-quake2.c
-   M /trunk/epan/dissectors/packet-rpc.c
-   M /trunk/epan/dissectors/packet-rsvp.c
-   M /trunk/epan/dissectors/packet-rtcp.c
-   M /trunk/epan/dissectors/packet-rtsp.c
-   M /trunk/epan/dissectors/packet-sdp.c
-   M /trunk/epan/dissectors/packet-sip.c
-   M /trunk/epan/dissectors/packet-sipfrag.c
-   M /trunk/epan/dissectors/packet-slsk.c
-   M /trunk/epan/dissectors/packet-smb.c
-   M /trunk/epan/dissectors/packet-sna.c
-   M /trunk/epan/dissectors/packet-tacacs.c
-   M /trunk/epan/dissectors/packet-tds.c
-   M /trunk/epan/dissectors/packet-telnet.c
-   M /trunk/epan/dissectors/packet-ucp.c
-   M /trunk/epan/dissectors/packet-uma.c
-   M /trunk/epan/dissectors/packet-vnc.c
-   M /trunk/epan/dissectors/packet-wsp.c
-   M /trunk/epan/tvbuff.c
-   M /trunk/epan/tvbuff.h
+   M /trunk/epan/plugins.c
+   M /trunk/fileset.c
 
-rename ep_tvb_get_string() to tvb_get_ephemeral_string() asnd update the documentation in README.developer
+Use eth_dir_open(), not g_dir_open(); g_dir_open() isn't available in
+GLib 1.2[.x].
 
+------------------------------------------------------------------------
+r16411 | guy | 2005-11-07 02:35:28 -0600 (Mon, 07 Nov 2005) | 3 lines
+Changed paths:
+   M /trunk/pcap-util-unix.c
+
+This is UN*X-only, so it doesn't need to use the eth_close() wrapper;
+close() will be available.
 
 ------------------------------------------------------------------------
-r15269 | sahlberg | 2005-08-10 08:01:16 -0500 (Wed, 10 Aug 2005) | 3 lines
+r16410 | guy | 2005-11-06 20:47:09 -0600 (Sun, 06 Nov 2005) | 6 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dhcp-failover.c
+   M /trunk/epan/addr_resolv.c
+   M /trunk/epan/filesystem.c
+   M /trunk/epan/plugins.c
+   M /trunk/epan/prefs.c
+   M /trunk/plugins/asn1/packet-asn1.c
+   M /trunk/plugins/mate/mate_util.c
 
-ememify tywo more tvb_get_string()
+Use <wiretap/file_util.h> to include "file_util.h"; otherwise, the
+include fails as we don't do -Iwiretap.
 
+If we have it, include <sys/stat.h> in epan/filesystem.c - we need it
+for stat() and the macros and structures it uses.
 
 ------------------------------------------------------------------------
-r15268 | gerald | 2005-08-09 09:46:06 -0500 (Tue, 09 Aug 2005) | 2 lines
+r16409 | guy | 2005-11-06 20:45:19 -0600 (Sun, 06 Nov 2005) | 8 lines
 Changed paths:
-   M /trunk/docbook/release-notes.xml
+   M /trunk/wiretap/file_access.c
+   M /trunk/wiretap/file_wrappers.c
+   M /trunk/wiretap/file_wrappers.h
 
-Add a note about the IrDA dissector crash.
+If we're using libz, make file_open() construct the open() flag
+argument, rather than requiring the caller to get the open() flag and
+the fopen() flag in sync.  That also means that if we're *not* using
+libz, it can just be a wrapper around eth_fopen().
+
+We need to include <fcntl.h>, at least on UN*X, to get open() declared
+and the O_ flags defined.
 
 ------------------------------------------------------------------------
-r15267 | gerald | 2005-08-09 09:38:11 -0500 (Tue, 09 Aug 2005) | 4 lines
+r16408 | guy | 2005-11-06 20:38:34 -0600 (Sun, 06 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/plugins/irda/packet-irda.c
+   M /trunk/capture_loop.c
 
-Make sure we initialize our iap_conv struct _before_ we go digging
-into a tvbuff.  This keeps us from leaving junk data behind if we
-throw an exception.
+Fix a typo.
 
 ------------------------------------------------------------------------
-r15266 | guy | 2005-08-08 19:07:12 -0500 (Mon, 08 Aug 2005) | 3 lines
+r16407 | guy | 2005-11-06 20:35:02 -0600 (Sun, 06 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/gtk/proto_draw.c
+   M /trunk/tethereal.c
+
+Include <wiretap/file_util.h> to declare the eth_ routines.
+
+------------------------------------------------------------------------
+r16406 | ulfl | 2005-11-06 18:20:20 -0600 (Sun, 06 Nov 2005) | 3 lines
+Changed paths:
+   M /trunk/util.c
+   M /trunk/wiretap/file_util.h
 
-"g_locale_to_utf8()" returns a "gchar *", and the string it returns is
-dynamically allocated.  Don't assign its result to "const gchar *".
+as mkstemp makes trouble and is only used once in util.c, move definition from file_util.h to util.c for now
 
+this hopefully fixes the mkstemp problem
 ------------------------------------------------------------------------
-r15265 | guy | 2005-08-08 19:03:45 -0500 (Mon, 08 Aug 2005) | 7 lines
+r16405 | guy | 2005-11-06 17:21:03 -0600 (Sun, 06 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/plugins/irda/packet-irda.c
+   M /trunk/wiretap/file_util.h
 
-The "proto" argument to "conversation_get_proto_data()" and
-"conversation_add_proto_data()" is supposed to be a protocol ID, as
-returned by "proto_register_protocol()".  In addition, there are two
-different types of protocol data being attached to a conversation; use
-different protocol IDs for them, so we don't misinterpret an
-"iap_conversation_t" as a "lmp_conversation_t" or vice versa.
+Get rid of CRs and set svn:eol-style to native, so that Windows machines
+get the CRs and UN*X machines don't.  Also set svn:keywords to Id to
+expand RCS IDs.
+
+------------------------------------------------------------------------
+r16404 | ulfl | 2005-11-06 17:11:49 -0600 (Sun, 06 Nov 2005) | 1 line
+Changed paths:
+   M /trunk/wiretap/file_util.h
 
+Obviously, <glib/gstdio.h> is available since GLib version 2.6 only ...
 ------------------------------------------------------------------------
-r15264 | ulfl | 2005-08-08 13:50:39 -0500 (Mon, 08 Aug 2005) | 5 lines
+r16403 | ulfl | 2005-11-06 16:43:25 -0600 (Sun, 06 Nov 2005) | 7 lines
 Changed paths:
+   M /trunk/capture.c
+   M /trunk/capture_loop.c
    M /trunk/capture_sync.c
+   M /trunk/color_filters.c
+   M /trunk/config.h.win32
    M /trunk/disabled_protos.c
    M /trunk/epan/addr_resolv.c
-   M /trunk/epan/asn1.c
-   M /trunk/epan/atalk-utils.c
-   M /trunk/epan/atalk-utils.h
-   M /trunk/epan/column-utils.c
-   M /trunk/epan/dfilter/dfilter.c
-   M /trunk/epan/dissectors/packet-afp.c
-   M /trunk/epan/dissectors/packet-amr.c
-   M /trunk/epan/dissectors/packet-aoe.c
-   M /trunk/epan/dissectors/packet-ber.c
-   M /trunk/epan/dissectors/packet-bgp.c
-   M /trunk/epan/dissectors/packet-brdwlk.c
-   M /trunk/epan/dissectors/packet-bssgp.c
-   M /trunk/epan/dissectors/packet-camel.c
-   M /trunk/epan/dissectors/packet-ccsds.c
-   M /trunk/epan/dissectors/packet-cip.c
-   M /trunk/epan/dissectors/packet-cpfi.c
-   M /trunk/epan/dissectors/packet-cpha.c
-   M /trunk/epan/dissectors/packet-csm-encaps.c
-   M /trunk/epan/dissectors/packet-dcerpc-samr.c
-   M /trunk/epan/dissectors/packet-dcerpc.c
-   M /trunk/epan/dissectors/packet-dcm.c
-   M /trunk/epan/dissectors/packet-dcom.c
-   M /trunk/epan/dissectors/packet-diameter.c
-   M /trunk/epan/dissectors/packet-dnp.c
-   M /trunk/epan/dissectors/packet-dns.c
-   M /trunk/epan/dissectors/packet-enip.c
-   M /trunk/epan/dissectors/packet-fc.c
-   M /trunk/epan/dissectors/packet-fcct.c
-   M /trunk/epan/dissectors/packet-fcdns.c
-   M /trunk/epan/dissectors/packet-fcels.c
-   M /trunk/epan/dissectors/packet-fcfcs.c
-   M /trunk/epan/dissectors/packet-fcfzs.c
-   M /trunk/epan/dissectors/packet-fclctl.c
-   M /trunk/epan/dissectors/packet-fcp.c
-   M /trunk/epan/dissectors/packet-fcsb3.c
-   M /trunk/epan/dissectors/packet-fcsp.c
-   M /trunk/epan/dissectors/packet-fcswils.c
-   M /trunk/epan/dissectors/packet-g723.c
-   M /trunk/epan/dissectors/packet-gprs-llc.c
-   M /trunk/epan/dissectors/packet-hyperscsi.c
-   M /trunk/epan/dissectors/packet-ieee80211.c
-   M /trunk/epan/dissectors/packet-igmp.c
-   M /trunk/epan/dissectors/packet-image-gif.c
-   M /trunk/epan/dissectors/packet-image-jfif.c
-   M /trunk/epan/dissectors/packet-ipdc.c
-   M /trunk/epan/dissectors/packet-ipv6.c
-   M /trunk/epan/dissectors/packet-ipvs-syncd.c
-   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_thin.c
-   M /trunk/epan/dissectors/packet-jxta.c
+   M /trunk/epan/column.c
    M /trunk/epan/dissectors/packet-kerberos.c
-   M /trunk/epan/dissectors/packet-laplink.c
-   M /trunk/epan/dissectors/packet-ldap.c
-   M /trunk/epan/dissectors/packet-lwapp.c
-   M /trunk/epan/dissectors/packet-mdshdr.c
-   M /trunk/epan/dissectors/packet-msrp.c
-   M /trunk/epan/dissectors/packet-mtp3.c
-   M /trunk/epan/dissectors/packet-mtp3mg.c
-   M /trunk/epan/dissectors/packet-multipart.c
-   M /trunk/epan/dissectors/packet-ntp.c
-   M /trunk/epan/dissectors/packet-pflog.c
-   M /trunk/epan/dissectors/packet-pim.c
-   M /trunk/epan/dissectors/packet-pn-rt.c
-   M /trunk/epan/dissectors/packet-ptp.c
-   M /trunk/epan/dissectors/packet-rsvp.c
-   M /trunk/epan/dissectors/packet-rtps.c
-   M /trunk/epan/dissectors/packet-sccp.c
-   M /trunk/epan/dissectors/packet-sccpmg.c
-   M /trunk/epan/dissectors/packet-sebek.c
-   M /trunk/epan/dissectors/packet-sflow.c
-   M /trunk/epan/dissectors/packet-sigcomp.c
-   M /trunk/epan/dissectors/packet-sndcp.c
-   M /trunk/epan/dissectors/packet-stun.c
-   M /trunk/epan/dissectors/packet-uma.c
-   M /trunk/epan/dissectors/packet-wccp.c
-   M /trunk/epan/dissectors/packet-wsp.c
-   M /trunk/epan/dissectors/packet-wtls.c
-   M /trunk/epan/dissectors/packet-wtp.c
    M /trunk/epan/filesystem.c
-   M /trunk/epan/follow.c
-   M /trunk/epan/inet_ntop.c
-   M /trunk/epan/ipproto.c
    M /trunk/epan/plugins.c
-   M /trunk/epan/proto.c
-   M /trunk/epan/sigcomp-udvm.c
-   M /trunk/epan/sigcomp_state_hdlr.c
-   M /trunk/epan/to_str.c
-   M /trunk/epan/to_str.h
-   M /trunk/epan/value_string.c
+   M /trunk/epan/prefs.c
+   M /trunk/epan/sha1.c
+   M /trunk/file.c
+   M /trunk/fileset.c
    M /trunk/filters.c
+   M /trunk/gtk/capture_if_dlg.c
+   M /trunk/gtk/drag_and_drop.c
+   M /trunk/gtk/file_dlg.c
+   M /trunk/gtk/fileset_dlg.c
+   M /trunk/gtk/filter_dlg.h
+   M /trunk/gtk/follow_dlg.c
+   M /trunk/gtk/graph_analysis.c
+   M /trunk/gtk/gui_utils.c
+   M /trunk/gtk/help_dlg.c
+   M /trunk/gtk/main.c
+   M /trunk/gtk/print_dlg.c
+   M /trunk/gtk/print_mswin.c
+   M /trunk/gtk/proto_draw.c
+   M /trunk/gtk/recent.c
+   M /trunk/gtk/rtp_analysis.c
+   M /trunk/gtk/rtp_stream.c
+   M /trunk/gtk/text_page.c
+   M /trunk/mergecap.c
+   M /trunk/mkstemp.c
    M /trunk/pcap-util-unix.c
    M /trunk/plugins/asn1/packet-asn1.c
-   M /trunk/plugins/ciscosm/packet-sm.c
-   M /trunk/plugins/docsis/packet-vendor.c
-   M /trunk/plugins/irda/packet-ircomm.c
-   M /trunk/plugins/irda/packet-irda.c
-   M /trunk/plugins/opsi/packet-opsi.c
-   M /trunk/plugins/rlm/packet-rlm.c
-   M /trunk/plugins/v5ua/packet-v5ua.c
+   M /trunk/plugins/mate/mate_util.c
+   M /trunk/print.c
    M /trunk/ringbuffer.c
-   M /trunk/tap-iousers.c
-   M /trunk/tap-rpcprogs.c
    M /trunk/tethereal.c
    M /trunk/util.c
+   M /trunk/wiretap/ascend.c
+   M /trunk/wiretap/config.h.win32
+   M /trunk/wiretap/file_access.c
+   A /trunk/wiretap/file_util.h
+   M /trunk/wiretap/file_wrappers.c
+   M /trunk/wiretap/file_wrappers.h
+   M /trunk/wiretap/k12.c
+   M /trunk/wiretap/wtap.c
 
-various code cleanup:
--use g_snprintf instead of sprintf and snprintf
--use g_strdup_printf where appropriate
--remove #include "snprintf.h" (as only g_snprintf should be used)
--replace some more alloc/realloc/calloc/free with their glib pendants
-------------------------------------------------------------------------
-r15263 | ulfl | 2005-08-08 12:22:55 -0500 (Mon, 08 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/gtk/simple_dialog.c
-   M /trunk/gtk/tcp_graph.c
-   M /trunk/gtk/toolbar.c
-   M /trunk/gtk/ui_util.c
-   M /trunk/gtk/ui_util.h
+replace *a lot* of file related calls by their GLib counterparts. This is necessary for the switch to GTK 2.6 (at least on WIN32).
 
-fix some MSVC const warnings
-------------------------------------------------------------------------
-r15262 | jmayer | 2005-08-08 11:53:09 -0500 (Mon, 08 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/Makefile.am
+to do this, I've added file_util.h to wiretap (would file_compat.h be a better name?), and provide compat_macros like eth_open() instead of open(). While at it, move other file related things there, like #include <io.h>, definition of O_BINARY and alike, so it's all in one place.
 
-OK, so Didier was probably right using $^ :-)
+deleted related things from config.h.win32
 
+As of these massive changes, I'm almost certain that this will break the Unix build. I'll keep an eye on the buildbot so hopefully everything is working again soon.
 ------------------------------------------------------------------------
-r15261 | jmayer | 2005-08-08 09:17:42 -0500 (Mon, 08 Aug 2005) | 4 lines
+r16402 | sahlberg | 2005-11-06 07:04:57 -0600 (Sun, 06 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/Makefile.am
+   M /trunk/epan/dissectors/packet-smb2.c
+
+dissect some of the session setup and the security blob for smb2
 
-Didier Gautheron:
-        A small patch for compiling ethereal outside the source tree.
 
 
 ------------------------------------------------------------------------
-r15260 | sahlberg | 2005-08-08 04:52:59 -0500 (Mon, 08 Aug 2005) | 8 lines
+r16401 | sahlberg | 2005-11-06 05:55:17 -0600 (Sun, 06 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-rpc.c
-
-From
-Eric Wedel
-
-Add a preference to RPC (default off) that will heuristically attempt to find
-PDUs starting in the middle of a segment.
+   M /trunk/epan/dissectors/packet-smb2.c
 
+dissect the smb2 request/response flag
 
 
 ------------------------------------------------------------------------
-r15259 | sahlberg | 2005-08-08 03:53:05 -0500 (Mon, 08 Aug 2005) | 6 lines
+r16400 | sahlberg | 2005-11-06 05:46:10 -0600 (Sun, 06 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-gsm_a.c
-   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
-
-updates from Anders B
-
-Regenerate gsm ss and gsm map
+   M /trunk/epan/dissectors/packet-smb2.c
 
+dissect the smb2 tree id
 
 
 ------------------------------------------------------------------------
-r15258 | guy | 2005-08-08 02:27:14 -0500 (Mon, 08 Aug 2005) | 7 lines
+r16399 | sahlberg | 2005-11-05 23:32:01 -0600 (Sat, 05 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-rsvp.c
+   M /trunk/epan/dissectors/packet-smb2.c
 
-Centralize the code to create the subtree for RSVP objects and to put
-the length and object class items into that tree.  Put the object class
-item into the tree as a visible item, rather than as a hidden item and
-as a text entry.
+some smb2 updates
 
-Add some additional length checks.
 
 ------------------------------------------------------------------------
-r15257 | sahlberg | 2005-08-07 18:39:00 -0500 (Sun, 07 Aug 2005) | 5 lines
+r16398 | sahlberg | 2005-11-05 22:18:13 -0600 (Sat, 05 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-slowprotocols.c
-
-from Dominique Bastien
+   M /trunk/epan/dissectors/Makefile.common
+   A /trunk/epan/dissectors/packet-smb2.c
 
-small update for slowprotocols
+add an empty dissector for SMB2
 
 
 ------------------------------------------------------------------------
-r15256 | ulfl | 2005-08-07 18:10:06 -0500 (Sun, 07 Aug 2005) | 4 lines
+r16397 | etxrab | 2005-11-05 15:38:22 -0600 (Sat, 05 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/packaging/nsis/Makefile.am
-   M /trunk/packaging/nsis/WinPcapPage.ini
-   A /trunk/packaging/nsis/WinPcap_3_1.exe
-   D /trunk/packaging/nsis/WinPcap_3_1_beta4.exe
-   M /trunk/packaging/nsis/ethereal.nsi
-
-Use the now released WinPcap 3.1 version instead of the beta 4.
+   M /trunk/epan/dissectors/packet-amr.c
+   M /trunk/epan/dissectors/packet-rtp.c
+   M /trunk/epan/dissectors/packet-rtp.h
+   M /trunk/gtk/rtp_analysis.c
 
-We don't need to uninstall an old WinPcap version first, as this is done by the WinPcap installer itself now.
+Packet-amr Register as  "AMR" not "amr".
 
+Add Dynamic PT:s mimestring  to rtp_info if avalable.
+Use Dynamic PT:s mime string to find clock rate.
 ------------------------------------------------------------------------
-r15255 | guy | 2005-08-07 15:06:01 -0500 (Sun, 07 Aug 2005) | 10 lines
+r16396 | sahlberg | 2005-11-05 14:32:33 -0600 (Sat, 05 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dhcp-failover.c
-
-DHCP Failover runs over TCP; use tcp_dissect_pdus.
-
-There's no need to build a list of all the options and then dissect them
-individually; just have one loop that dissects them.  (The full list
-wasn't being freed, so we were leaking memory.)
+   M /trunk/epan/dissectors/packet-clnp.c
 
-Add some more sanity checks.
+get rid of some strcat
 
-Clean up a bunch of other things.
 
 ------------------------------------------------------------------------
-r15254 | guy | 2005-08-07 13:03:34 -0500 (Sun, 07 Aug 2005) | 10 lines
+r16395 | sahlberg | 2005-11-04 20:03:21 -0600 (Fri, 04 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dhcp-failover.c
-
-Fix the spelling of "transferred".
-
-Fix the sizes of some items to match what's in the I-D and what's being
-fetched from the packet.
+   M /trunk/epan/dissectors/packet-brdwlk.c
 
-Check for the length of items before doing *anything* with the item,
-including fetching the data from the packet.  Just put a "bad length"
-indication into the protocol tree; don't abort the dissection (we can
-just move on to the next TLV).
+get rid of an array and dissect a bitmask properly
+get rid of some strcat()s
 
-------------------------------------------------------------------------
-r15253 | jmayer | 2005-08-06 19:21:35 -0500 (Sat, 06 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/docbook
 
-Add release-notes-...pdf to svn:ignore
 ------------------------------------------------------------------------
-r15252 | jmayer | 2005-08-06 19:07:18 -0500 (Sat, 06 Aug 2005) | 6 lines
+r16394 | sahlberg | 2005-11-04 19:23:06 -0600 (Fri, 04 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/docbook/README.txt
-
-Start a list of packages required for each distro.
-So far only Suse 9.3 is covered.
+   M /trunk/epan/dissectors/packet-ncp.c
 
-Infos for other systems are very welcome.
+remove an array and some strcat from ncp
 
 
 ------------------------------------------------------------------------
-r15251 | guy | 2005-08-06 16:38:43 -0500 (Sat, 06 Aug 2005) | 9 lines
+r16393 | sahlberg | 2005-11-04 17:03:26 -0600 (Fri, 04 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-frame.c
-   M /trunk/epan/dissectors/packet-frame.h
-   M /trunk/epan/exceptions.h
+   M /trunk/epan/dissectors/packet-ospf.c
 
-If a dissector writer directly throws DissectorError, don't punish the
-user by crashing due to a null pointer dereference, punish the dissector
-writer by saying he or she didn't bother providing an explanation of the
-error.
+remove an array and the remaining strcat from ospf
 
-The exception message isn't a const string any more; make the
-"exception_message" argument to "show_exception()" a "char *", not a
-"const char *".
 
 ------------------------------------------------------------------------
-r15250 | guy | 2005-08-06 14:58:45 -0500 (Sat, 06 Aug 2005) | 14 lines
+r16392 | sahlberg | 2005-11-04 15:55:23 -0600 (Fri, 04 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-frame.c
-   M /trunk/epan/except.c
-   M /trunk/epan/except.h
-   M /trunk/epan/exceptions.h
-
-Support throwing an exception with a null message pointer, and have the
-message not be const (as we generate messages with "g_strdup_sprintf()",
-which means they need to be freed; using a null message means that we
-don't have to use a special string for exceptions with no message, and
-don't have to worry about not freeing that).
+   M /trunk/epan/dissectors/packet-ospf.c
 
-Have THROW() throw an exception with a null message pointer.  (This
-means that you crash if you throw DissectorError with THROW().  Don't do
-that - it means you don't get a more detailed explanation of the
-dissector problem.  Use the DISSECTOR_ASSERT, etc. macros in
-epan/proto.h instead.)
+get rid of some strcat  and a stackbased array
 
-Free the exception message for DissectorError, as it's mallocated.
 
 ------------------------------------------------------------------------
-r15249 | guy | 2005-08-06 13:42:07 -0500 (Sat, 06 Aug 2005) | 5 lines
+r16391 | sahlberg | 2005-11-04 15:22:21 -0600 (Fri, 04 Nov 2005) | 5 lines
 Changed paths:
-   M /trunk/filters.c
-   M /trunk/filters.h
+   M /trunk/epan/dissectors/packet-winsrepl.c
 
-"read_filter_list()" and "save_filter_list()" mallocate the path string
-that they return through the "pref_path_return" argument; make it a
-"char **", as a pointer to a "char *" is passed to it, and the caller
-has to free that.
+from Metze
 
-------------------------------------------------------------------------
-r15248 | guy | 2005-08-06 13:40:03 -0500 (Sat, 06 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/file.c
+some winsrepl updates
 
-We no longer generate a "Loading" message ourselves, we just pass the
-name of the file being loaded to "delayed_create_progress_dlg()".  Get
-rid of the pointless "g_strdup_printf()" call (which amounted to a
-more-expensive "g_strdup()", and the variables it used.
 
 ------------------------------------------------------------------------
-r15247 | guy | 2005-08-06 13:38:35 -0500 (Sat, 06 Aug 2005) | 15 lines
+r16390 | sahlberg | 2005-11-04 15:14:33 -0600 (Fri, 04 Nov 2005) | 8 lines
 Changed paths:
-   M /trunk/util.c
+   M /trunk/AUTHORS
+   M /trunk/epan/dissectors/Makefile.common
+   A /trunk/epan/dissectors/packet-s5066.c
 
-"setup_tmpdir()" either returns the const string passed to it, or it
-returns a malloced string that's supposed to persist as long as Ethereal
-is running.  Make it return "const char *", and return either the former
-pointer or the result of mallocation, so we don't end up using the same
-variable for a const pointer and a non-const pointer.
+From Menno Andriesse
 
-Make the variables to which its result is assigned const pointers as
-well.
+New protocol : STANAG 5066
 
-"strlen()" returns size_t; make a argument to which its result is
-assigned a size_t.
+I changed it from being a plugin to a builtin dissector
+and also changed a couple of small bugs
 
-Just out of paranoia, check for a zero-length string passed to
-"setup_tmpdir()".
 
 ------------------------------------------------------------------------
-r15246 | gerald | 2005-08-06 10:23:52 -0500 (Sat, 06 Aug 2005) | 2 lines
+r16389 | etxrab | 2005-11-03 13:14:52 -0600 (Thu, 03 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/docbook/release-notes.xml
-
-Add a note about the ISIS LSP bug.
+   M /trunk/epan/dissectors/packet-gsm_a.c
 
+Fix a typo and change TLLI representation to HEX.
 ------------------------------------------------------------------------
-r15245 | gerald | 2005-08-06 10:18:45 -0500 (Sat, 06 Aug 2005) | 3 lines
+r16388 | jmayer | 2005-11-03 09:23:09 -0600 (Thu, 03 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-isis-lsp.c
-
-Increase the size of some variables so that we don't overflow them and loop
-forever.  Fixes bug 320.
+   M /trunk/tools/pidl/TODO
+   M /trunk/tools/pidl/lib/Parse/Pidl/Ethereal/NDR.pm
+   M /trunk/tools/pidl/lib/Parse/Pidl/NDR.pm
+   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/NDR/Parser.pm
 
+Update to samba svn 11484
 ------------------------------------------------------------------------
-r15244 | jmayer | 2005-08-06 09:03:14 -0500 (Sat, 06 Aug 2005) | 3 lines
+r16387 | guy | 2005-11-02 22:35:39 -0600 (Wed, 02 Nov 2005) | 5 lines
 Changed paths:
-   M /trunk/capture_loop.c
-   M /trunk/capture_sync.c
-   M /trunk/file.c
-   M /trunk/filters.c
-   M /trunk/filters.h
-   M /trunk/gtk/io_stat.c
-   M /trunk/gtk/mtp3_stat.c
-   M /trunk/gtk/mtp3_summary.c
-   M /trunk/gtk/progress_dlg.c
-   M /trunk/gtk/rtp_analysis.c
-   M /trunk/gtk/sctp_chunk_stat_dlg.c
-   M /trunk/gtk/sctp_stat_dlg.c
-   M /trunk/gtk/tcp_graph.c
-   M /trunk/gtk/voip_calls_dlg.c
-   M /trunk/progress_dlg.h
-   M /trunk/tap-iostat.c
-   M /trunk/util.c
-   M /trunk/util.h
-
+   M /trunk/epan/dissectors/packet-cmp.c
 
-Last set of char -> const char trivial warning fixes.
+"dissect_cmp_http()" doesn't check for a valid packet (it doesn't need
+to, it's selected by the media-type string, not something unreliable
+such as a port number), and doesn't return anything, so give it the
+right type and don't declare it as a "new-style" dissector.
 
 ------------------------------------------------------------------------
-r15243 | tuexen | 2005-08-06 07:02:34 -0500 (Sat, 06 Aug 2005) | 6 lines
+r16386 | guy | 2005-11-02 22:33:51 -0600 (Wed, 02 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-asap.c
-   M /trunk/epan/dissectors/packet-enrp.c
-
-Update to
- * http://www.ietf.org/internet-drafts/draft-ietf-rserpool-common-param-09.txt
- * http://www.ietf.org/internet-drafts/draft-ietf-rserpool-enrp-12.txt
- * http://www.ietf.org/internet-drafts/draft-ietf-rserpool-asap-12.txt
+   M /trunk/epan/dissectors/packet-bacapp.c
 
+Get rid of (valid) warning about uninitialized variable, and clean up
+indentation.
 
 ------------------------------------------------------------------------
-r15242 | guy | 2005-08-06 05:31:27 -0500 (Sat, 06 Aug 2005) | 2 lines
+r16385 | guy | 2005-11-02 22:32:11 -0600 (Wed, 02 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/packet.h
-   M /trunk/gtk/decode_as_dlg.c
-   M /trunk/tethereal.c
+   M /trunk/gtk/plugins_dlg.c
 
-Squelch more const pointer warnings.
+Get rid of no-longer-used code (the list of plugins is now just a tab in
+Help->About, not a separate dialog from Help->About Plugins).
 
 ------------------------------------------------------------------------
-r15241 | guy | 2005-08-06 05:30:21 -0500 (Sat, 06 Aug 2005) | 4 lines
+r16384 | guy | 2005-11-02 22:30:35 -0600 (Wed, 02 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/gtk/voip_calls.c
+   M /trunk/epan/ftypes/ftype-integer.c
 
-Make some structure members that are always set from mallocated data not
-"const" pointers, so that we don't get warnings when we free the data
-they point to.
+Fix usage of PRI[du]64 - they just replace the "letter" part of the
+format, they don't include the "%".
 
 ------------------------------------------------------------------------
-r15240 | guy | 2005-08-06 05:29:20 -0500 (Sat, 06 Aug 2005) | 3 lines
+r16383 | lego | 2005-11-02 17:01:15 -0600 (Wed, 02 Nov 2005) | 6 lines
 Changed paths:
-   M /trunk/plugins/mate/mate_parser.l
+   M /trunk/asn1/h248/h248.cnf
+   M /trunk/asn1/h248/packet-h248-template.c
+   M /trunk/epan/dissectors/packet-h248.c
+
+Some cleanup,
+- Improve expert info
+- Remove the debug tree (one warning unused function, will go)
+- Make Sure Pending messages have a cmdmsg (and so a colinfo label)
 
-Make a variable whose value might be trashed by setjmp/longjmp
-"volatile" to avoid that.
 
 ------------------------------------------------------------------------
-r15239 | guy | 2005-08-06 04:23:28 -0500 (Sat, 06 Aug 2005) | 14 lines
+r16382 | etxrab | 2005-11-02 15:49:24 -0600 (Wed, 02 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-ms-mms.c
-
-Don't assign "" to a string that's only used after it's assigned to.
-
-"tvb_fake_unicode()" never returns a null pointer, so there's no need to
-check for it; there's also no need to check that it's not an empty
-string before freeing it, as it's always assigned a g_malloc()ed string.
-
-It also takes as an argument the number of Unicode characters in the
-string, not the number of bytes in the string.
-
-Use "format_text()" when adding a string to the Info column, in case
-it has non-printable characters.
-
-Don't use "proto_tree_add_string_format()" if you don't have to.
+   M /trunk/epan/dissectors/packet-isup.c
 
+Handle a optional parameter length of zero.
 ------------------------------------------------------------------------
-r15238 | guy | 2005-08-06 04:18:52 -0500 (Sat, 06 Aug 2005) | 9 lines
+r16381 | ulfl | 2005-11-02 14:50:54 -0600 (Wed, 02 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcm.c
-
-Use a NULL value for di->xfer as an indication that we don't know the
-transfer context; that way, we don't have to make "di->xfer" a "const"
-pointer, and can thus pass it to "g_free()" (if non-null) without
-the compiler whining at us.
-
-Note that telling the user to "click on ASSOC request" is not the best
-thing to do, unless we simply cannot determine the right ASSOC request
-to click on.
+   M /trunk/epan/proto.c
 
+MSVC warning fixed:
+proto.c(4694) : warning C4101: 'stringified' : unreferenced local variable
 ------------------------------------------------------------------------
-r15237 | guy | 2005-08-05 23:01:38 -0500 (Fri, 05 Aug 2005) | 4 lines
+r16380 | etxrab | 2005-11-02 14:28:58 -0600 (Wed, 02 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-smb.c
+   M /trunk/epan/dissectors/packet-scsi.c
 
-DissectorError is not supposed to be directly thrown; one should use the
-various DISSECTOR_ macros, so the error message includes an indication
-of the problem, and the file and line number.
+From David Wysochanski fix a typo.
+------------------------------------------------------------------------
+r16379 | etxrab | 2005-11-02 14:24:42 -0600 (Wed, 02 Nov 2005) | 1 line
+Changed paths:
+   M /trunk/epan/dissectors/packet-sip.c
 
+Use dissect_sip_tcp_heur for TCP to make re-assembly work on hueristics.
 ------------------------------------------------------------------------
-r15236 | guy | 2005-08-05 22:44:55 -0500 (Fri, 05 Aug 2005) | 8 lines
+r16378 | lego | 2005-11-02 13:46:47 -0600 (Wed, 02 Nov 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/tap.c
-   M /trunk/epan/tap.h
-   M /trunk/gtk/ansi_a_stat.c
-   M /trunk/gtk/ansi_map_stat.c
-   M /trunk/gtk/bootp_stat.c
-   M /trunk/gtk/dcerpc_stat.c
-   M /trunk/gtk/fc_stat.c
-   M /trunk/gtk/gsm_a_stat.c
-   M /trunk/gtk/gsm_map_stat.c
-   M /trunk/gtk/h225_counter.c
-   M /trunk/gtk/h225_ras_srt.c
-   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_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/ldap_stat.c
-   M /trunk/gtk/menu.c
-   M /trunk/gtk/mgcp_stat.c
-   M /trunk/gtk/mtp3_stat.c
-   M /trunk/gtk/rpc_progs.c
-   M /trunk/gtk/rpc_stat.c
-   M /trunk/gtk/rtp_analysis.c
-   M /trunk/gtk/rtp_stream.c
-   M /trunk/gtk/sctp_chunk_stat.c
-   M /trunk/gtk/sctp_stat.c
-   M /trunk/gtk/sip_stat.c
-   M /trunk/gtk/smb_stat.c
-   M /trunk/gtk/stats_tree_stat.c
-   M /trunk/gtk/summary_dlg.c
-   M /trunk/gtk/toolbar.c
-   M /trunk/gtk/voip_calls_dlg.c
-   M /trunk/gtk/wsp_stat.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
-
-Squelch more const warnings (and fix some memory leaks that found).
-
-_U_-ify some unused arguments, rather than assigning them to themselves.
-
-Un-constify one variable that gets assigned a mallocated pointer.
+   M /trunk/asn1/h248/h248.cnf
+   M /trunk/asn1/h248/packet-h248-template.c
+   M /trunk/epan/dissectors/packet-h248.c
+
+- terminate a value_string
+- wildcard field subdissector
 
-Clean up indentation.
 
 ------------------------------------------------------------------------
-r15235 | gerald | 2005-08-05 22:43:42 -0500 (Fri, 05 Aug 2005) | 6 lines
+r16377 | ulfl | 2005-11-02 13:33:46 -0600 (Wed, 02 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/asn1.c
-   M /trunk/epan/dissectors/packet-frame.c
-   M /trunk/epan/dissectors/packet-kerberos.c
-   M /trunk/epan/dissectors/packet-ldap.c
-   M /trunk/epan/dissectors/packet-smb.c
-   M /trunk/epan/dissectors/packet-spnego.c
-
-In packet-frame.c, don't free static memory when we throw a
-DissectorError.  In packet-kerberos.c, restore pinfo->private_data if
-we throw an exception, which keeps the SMB dissector from throwing
-a DissectorError.  Initialize variables in other places to squelch
-valgrind warnings.
+   M /trunk/plugins/profinet/ChangeLog
+   M /trunk/plugins/profinet/moduleinfo.h
+   M /trunk/plugins/profinet/packet-pn-dcp.c
 
+minor enhancement (raised plugin version to 0.1.2):
+PN-DCP: dissection of "DHCP/DHCP client identifier" suboption was added
 ------------------------------------------------------------------------
-r15234 | guy | 2005-08-05 20:39:51 -0500 (Fri, 05 Aug 2005) | 2 lines
+r16376 | etxrab | 2005-11-02 01:51:55 -0600 (Wed, 02 Nov 2005) | 6 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-socks.c
+   M /trunk/asn1/camel/Makefile.nmake
+   M /trunk/asn1/camel/camel.asn
+   M /trunk/asn1/camel/packet-camel-template.c
+   M /trunk/asn1/inap/packet-inap-template.c
+   M /trunk/epan/dissectors/packet-camel.c
+   M /trunk/epan/dissectors/packet-camel.h
+   M /trunk/epan/dissectors/packet-inap.c
+   M /trunk/epan/dissectors/packet-inap.h
 
-Squelch another const warning.
+From Tim
 
+A small patch for camel and inap, where the linkedid doesn't get dissected correctly in camel or inap
+and some tidy up in the camel asn.1 which now compiles with no warnings.
+
+also fix the copy_file target (/y)
 ------------------------------------------------------------------------
-r15233 | ulfl | 2005-08-05 19:06:14 -0500 (Fri, 05 Aug 2005) | 1 line
+r16375 | lego | 2005-11-01 15:09:28 -0600 (Tue, 01 Nov 2005) | 5 lines
 Changed paths:
-   M /trunk/plugins/xml/xml_plugin.c
+   M /trunk/asn1/h248/packet-h248-template.c
+   M /trunk/asn1/h248/packet-h248-template.h
+   M /trunk/epan/dissectors/packet-h248.c
+   M /trunk/epan/dissectors/packet-h248.h
+
+- add a counter for pending messages
+- do not use a value string for context ids
+- remove the plugin registration as it is not supposedd to be a plugin
+
 
-fix a comment typo
 ------------------------------------------------------------------------
-r15232 | ulfl | 2005-08-05 18:58:58 -0500 (Fri, 05 Aug 2005) | 1 line
+r16374 | etxrab | 2005-11-01 13:50:25 -0600 (Tue, 01 Nov 2005) | 1 line
 Changed paths:
-   M /trunk/capture_stop_conditions.c
-   M /trunk/conditions.c
-   M /trunk/docbook/edg_src/EDG_chapter_dissection.xml
-   M /trunk/epan/dissectors/packet-bssgp.c
-   M /trunk/epan/dissectors/packet-dcm.c
-   M /trunk/epan/follow.c
-   M /trunk/epan/tap.c
-   M /trunk/gtk/sctp_assoc_analyse.c
-   M /trunk/gtk/sctp_stat.c
-   M /trunk/gtk/tcp_graph.c
-   M /trunk/gtk/ui_util.c
+   M /trunk/epan/dissectors/packet-xml.c
 
-replace malloc and alike calls by their GLib pendants -> g_malloc
+Add "application/resource-lists+xml" to xml types
 ------------------------------------------------------------------------
-r15231 | guy | 2005-08-05 18:18:05 -0500 (Fri, 05 Aug 2005) | 3 lines
+r16373 | obiot | 2005-11-01 12:18:46 -0600 (Tue, 01 Nov 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-daap.c
+   M /trunk/epan/dissectors/packet-image-gif.c
+   M /trunk/epan/dissectors/packet-image-jfif.c
+   M /trunk/epan/dissectors/packet-mmse.c
+   M /trunk/epan/dissectors/packet-smpp.c
+   M /trunk/epan/dissectors/packet-wbxml.c
+   M /trunk/epan/dissectors/packet-wsp.c
 
-Put in a comment asking about the music going over the connection - we
-shouldn't try to parse it as DAAP.
+Use g_print() instead of fprintf() to write messages to the debug console.
 
 ------------------------------------------------------------------------
-r15230 | guy | 2005-08-05 18:17:15 -0500 (Fri, 05 Aug 2005) | 2 lines
+r16372 | lego | 2005-11-01 10:28:13 -0600 (Tue, 01 Nov 2005) | 3 lines
 Changed paths:
-   M /trunk/plugins/mate/mate_parser.l
+   M /trunk/asn1/h248/h248.cnf
+   M /trunk/asn1/h248/packet-h248-template.c
+   M /trunk/asn1/h248/packet-h248-template.h
+   M /trunk/epan/dissectors/packet-h248.c
+   M /trunk/epan/dissectors/packet-h248.h
+
+- Embryonic Transaction & Context tracing
 
-Squelch a warning about "state" being used uninitialized.
 
 ------------------------------------------------------------------------
-r15229 | lego | 2005-08-05 17:36:28 -0500 (Fri, 05 Aug 2005) | 3 lines
+r16371 | guy | 2005-10-30 21:45:11 -0600 (Sun, 30 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/gtk/hostlist_table.c
-
-have the definition of init_hostlist_table *ACTUALLY* match its declaration.
+   M /trunk/doc/ethereal-filter.pod.template
 
+Improve the description of "contains" and "matches" a bit.
 
 ------------------------------------------------------------------------
-r15228 | lego | 2005-08-05 17:34:45 -0500 (Fri, 05 Aug 2005) | 3 lines
+r16370 | guy | 2005-10-30 21:33:14 -0600 (Sun, 30 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/gtk/hostlist_table.c
-
-have the definition of init_hostlist_table match the declaration.
+   M /trunk/epan/dfilter/dfvm.c
 
+Dump the range when printing an MK_RANGE operator.
 
 ------------------------------------------------------------------------
-r15227 | jmayer | 2005-08-05 15:59:08 -0500 (Fri, 05 Aug 2005) | 5 lines
-Changed paths:
-   M /trunk/color_filters.c
-   M /trunk/color_filters.h
-   M /trunk/epan/packet.c
-   M /trunk/epan/packet.h
-   M /trunk/gtk/about_dlg.c
-   M /trunk/gtk/ansi_a_stat.c
-   M /trunk/gtk/ansi_map_stat.c
-   M /trunk/gtk/capture_dlg.c
-   M /trunk/gtk/capture_prefs.c
-   M /trunk/gtk/color_dlg.c
-   M /trunk/gtk/column_prefs.c
-   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_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/decode_as_dcerpc.c
-   M /trunk/gtk/decode_as_dcerpc.h
-   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/file_dlg.c
-   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/gsm_a_stat.c
-   M /trunk/gtk/gsm_map_stat.c
-   M /trunk/gtk/gtk_stat_util.c
-   M /trunk/gtk/gtk_stat_util.h
-   M /trunk/gtk/h225_counter.c
-   M /trunk/gtk/h225_ras_srt.c
-   M /trunk/gtk/help_dlg.c
-   M /trunk/gtk/hostlist_eth.c
-   M /trunk/gtk/hostlist_table.c
-   M /trunk/gtk/hostlist_table.h
-   M /trunk/gtk/main.c
-   M /trunk/gtk/menu.c
-   M /trunk/gtk/menu.h
-   M /trunk/gtk/packet_list.c
-   M /trunk/gtk/plugins_dlg.c
-   M /trunk/gtk/print_dlg.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/sctp_error_dlg.c
-   M /trunk/gtk/sctp_stat.h
-   M /trunk/gtk/service_response_time_table.c
-   M /trunk/gtk/tap_menu.h
-   M /trunk/gtk/ui_util.c
-   M /trunk/gtk/ui_util.h
-   M /trunk/gtk/voip_calls.c
-   M /trunk/gtk/voip_calls.h
-   M /trunk/image/dn_arrow.xpm
-   M /trunk/image/eexcl3d64.xpm
-   M /trunk/image/eicon3d16.xpm
-   M /trunk/image/eicon3d32.xpm
-   M /trunk/image/eicon3d48.xpm
-   M /trunk/image/icon-ethereal.xpm
-   M /trunk/image/icon-excl.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_warning_48.xpm
-   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
-   M /trunk/image/up_arrow.xpm
-   M /trunk/plugins/stats_tree/pinfo_stats_tree.c
-   M /trunk/tap_dfilter_dlg.h
-
-
-More char -> const char warning fixes.
-Removed (very few) casts that only change the warning message
-  but don't remove it (with gcc-4).
-
-------------------------------------------------------------------------
-r15226 | etxrab | 2005-08-05 14:37:57 -0500 (Fri, 05 Aug 2005) | 12 lines
+r16369 | guy | 2005-10-30 20:42:22 -0600 (Sun, 30 Oct 2005) | 18 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-bacapp.c
-   M /trunk/epan/dissectors/packet-bacapp.h
+   M /trunk/epan/dfilter/dfvm.c
+   M /trunk/epan/ftypes/ftype-bytes.c
+   M /trunk/epan/ftypes/ftype-integer.c
+   M /trunk/epan/ftypes/ftype-pcre.c
+   M /trunk/epan/ftypes/ftype-string.c
+   M /trunk/epan/ftypes/ftype-tvbuff.c
+   M /trunk/epan/proto.c
+   M /trunk/plugins/mate/mate_util.c
+
+When printing the code for a display filter:
+
+       print register numbers as unsigned (they're guint32);
 
-From David Richards:
-here are the highlights of what's fixed:
+       when printing a PUT_FVALUE instruction, show the value as well
+       as the type of the value.
 
-1) Decoding of vendor-defined types
-2) Decoding of some event notification parameters (not all)
-3) Decoding of ABSTRACT-SYNTAX&Type
-4) Decoding of BACnetTimeStamp
-5) Some problems with context-tagged values (like booleans)
-6) Continuation segments - don't try to decode them since you can't 
-start mid-PDU
-7) Removed some excessive levels of subtrees
+That requires that a bunch of types get to_repr methods; add them for
+PCRE (FTREPR_DFILTER-only - show the regular expression as text),
+tvbuffs (FTREPR_DFILTER_only - show the data as a hex string), integral
+types, string types other than FT_STRING, and FT_IPv6.
 
-------------------------------------------------------------------------
-r15225 | etxrab | 2005-08-05 14:32:26 -0500 (Fri, 05 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/plugins/asn1/packet-asn1.c
+That means we can use fvalue_to_string_repr() for FT_IPXNET and FT_IPv6
+in proto_construct_dfilter_string(), and that we don't need to handle
+integer and floating types specially in MATE.
+
+Fix some problems with the PCRE execution code for tvbuff types.
 
-From Thomas Steffen:
-Fix a copy-paste error in the prefs. code
 ------------------------------------------------------------------------
-r15224 | etxrab | 2005-08-05 14:16:29 -0500 (Fri, 05 Aug 2005) | 3 lines
+r16368 | guy | 2005-10-30 20:21:02 -0600 (Sun, 30 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/AUTHORS
-   M /trunk/epan/dissectors/packet-gprs-llc.c
-   M /trunk/epan/dissectors/packet-gsm_a.c
+   M /trunk/epan/dissectors/packet-ieee80211.c
 
-From THORNTON, MATT
-Some changes that I made to flesh out GPRS message parsing.  More information is displayed about the various frame formats.  I have also added some code to parse XID parameters in the U frame.  I have also fixed a couple of display bugs in the GSM and GPRS LLC parser.
+Get rid of an unused variable, and declare a variable that points into a
+tvbuff's data const.
 
 ------------------------------------------------------------------------
-r15223 | jmayer | 2005-08-05 08:23:47 -0500 (Fri, 05 Aug 2005) | 1 line
+r16367 | guy | 2005-10-30 17:01:12 -0600 (Sun, 30 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/proto.c
+   M /trunk/epan/libethereal.def
 
-char -> const char warning fixes
-------------------------------------------------------------------------
-r15222 | jmayer | 2005-08-05 08:10:58 -0500 (Fri, 05 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
-   M /trunk/epan/dissectors/packet-ber.h
-   M /trunk/epan/dissectors/packet-tcp.c
-   M /trunk/epan/dissectors/packet-telnet.c
-   M /trunk/epan/dissectors/packet-tr.c
-   M /trunk/epan/dissectors/packet-trmac.c
-   M /trunk/epan/dissectors/packet-user_encap.c
-   M /trunk/epan/dissectors/packet-vines.c
-   M /trunk/epan/dissectors/packet-windows-common.c
-   M /trunk/epan/dissectors/packet-x25.c
+Export fvalue_get_integer64(), for completeness.
 
-More char -> const char warning fixes
 ------------------------------------------------------------------------
-r15221 | ulfl | 2005-08-05 04:20:48 -0500 (Fri, 05 Aug 2005) | 3 lines
+r16366 | guy | 2005-10-30 16:55:30 -0600 (Sun, 30 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/docbook/edg_src/EDG_chapter_sources.xml
-   M /trunk/docbook/edg_src/EDG_chapter_tools.xml
+   M /trunk/epan/ftypes/ftype-ipv4.c
 
-note that calling distclean target should be done first
+"XXX.XXX.XXX.XXX" is 15 characters, not 14 characters.
 
-add the MSVC tools to the verify_tools target, add some explanation of common problems
 ------------------------------------------------------------------------
-r15220 | ulfl | 2005-08-05 03:34:47 -0500 (Fri, 05 Aug 2005) | 4 lines
+r16365 | guy | 2005-10-30 14:16:01 -0600 (Sun, 30 Oct 2005) | 4 lines
 Changed paths:
-   M /trunk/Makefile.nmake
+   M /trunk/capture_loop.c
 
-verify_tools: 
-- not only look for the cygwin tools, but also check the MSVC tools required like cl.exe, link.exe and nmake.exe
+Make capture filter (and capture filter error message) strings "safe" as
+necessary before putting them into an error message dialog.  Fixes bug
+564.
 
-- I don't know why we should use /usr/bin/find but simply find, check for it instead. If there's a reason to use /usr/bin/find, we should use $(FIND) instead but I currently don't see a reason for this
 ------------------------------------------------------------------------
-r15219 | jmayer | 2005-08-04 19:29:34 -0500 (Thu, 04 Aug 2005) | 1 line
+r16364 | ulfl | 2005-10-30 07:46:40 -0600 (Sun, 30 Oct 2005) | 1 line
 Changed paths:
-   M /trunk/asn1/gsm_ss/Makefile
+   M /trunk/doc/ethereal-filter.pod.template
 
-Add eol-style and keywords properties
+very minor enhancements
 ------------------------------------------------------------------------
-r15218 | jmayer | 2005-08-04 19:23:22 -0500 (Thu, 04 Aug 2005) | 1 line
+r16363 | jmayer | 2005-10-30 03:14:38 -0600 (Sun, 30 Oct 2005) | 7 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-gssapi.c
-   M /trunk/epan/dissectors/packet-gssapi.h
-   M /trunk/epan/dissectors/packet-ncp2222.inc
-   M /trunk/epan/dissectors/packet-ndmp.c
-   M /trunk/epan/dissectors/packet-nlsp.c
-   M /trunk/epan/dissectors/packet-nntp.c
-   M /trunk/epan/dissectors/packet-nt-sonmp.c
-   M /trunk/epan/dissectors/packet-ntp.c
-   M /trunk/epan/dissectors/packet-osi-options.c
-   M /trunk/epan/dissectors/packet-ospf.c
-   M /trunk/epan/dissectors/packet-pgm.c
-   M /trunk/epan/dissectors/packet-pn-rt.c
-   M /trunk/epan/dissectors/packet-portmap.c
-   M /trunk/epan/dissectors/packet-q931.c
-   M /trunk/epan/dissectors/packet-q933.c
-   M /trunk/epan/dissectors/packet-quakeworld.c
-   M /trunk/epan/dissectors/packet-radius.h
-   M /trunk/epan/dissectors/packet-ranap.c
-   M /trunk/epan/dissectors/packet-rdt.c
-   M /trunk/epan/dissectors/packet-rdt.h
-   M /trunk/epan/dissectors/packet-rsvp.c
-   M /trunk/epan/dissectors/packet-sap.c
-   M /trunk/epan/dissectors/packet-scsi.c
-   M /trunk/epan/dissectors/packet-sip.c
-   M /trunk/epan/dissectors/packet-slsk.c
-   M /trunk/epan/dissectors/packet-smb.c
-   M /trunk/epan/dissectors/packet-snmp.c
-   M /trunk/epan/dissectors/packet-socks.c
-   M /trunk/epan/dissectors/packet-ssl.c
-   M /trunk/epan/dissectors/packet-t38.c
-   M /trunk/epan/dissectors/packet-t38.h
-   M /trunk/epan/radius_dict.l
-   M /trunk/epan/tap.c
-   M /trunk/epan/tap.h
+   M /trunk/epan/dissectors/packet-ieee80211.c
+
+- Split dissect_wendor_specific_ie into
+  dissect_vendor_ie_wpawme and dissect_vendor_ie_rsn
+- Display the vendor code on the top level of vendor specific IEs
+- Make the vendor code of vendor specific IEs filterable
+  (wlan_mgt.tag.oui)
+
 
-More char -> const char warning fixes
 ------------------------------------------------------------------------
-r15217 | sahlberg | 2005-08-04 19:23:08 -0500 (Thu, 04 Aug 2005) | 3 lines
+r16362 | jmayer | 2005-10-30 03:13:27 -0600 (Sun, 30 Oct 2005) | 6 lines
 Changed paths:
-   A /trunk/asn1/gsm_ss/Makefile
+   M /trunk/epan/dissectors/packet-ieee80211.c
 
-Add unix makefile for work in progress GSM-SS dissector
+- Remove trailing whitespace
+- IS_WEP is now (11i) called IS_PROTECTED
+- Remove duplicate (and commented out) code
+- Add reson code 0x24 to reason_codes
 
 
 ------------------------------------------------------------------------
-r15216 | jmayer | 2005-08-04 17:54:04 -0500 (Thu, 04 Aug 2005) | 1 line
+r16361 | guy | 2005-10-29 18:22:13 -0500 (Sat, 29 Oct 2005) | 12 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-iax2.c
+   M /trunk/epan/dissectors/packet-mip6.c
+   M /trunk/epan/dissectors/packet-mip6.h
+
+Give RFC numbers for MIPv6, NEMO, and FMIPv6.
+
+Fix up NEMO #defines for field offsets, and field and option lengths, to
+match #defines for other options.
+
+Handle the padding in the FMIPv6 LLA option internally to the option
+parser, and don't include the link-layer address unless it's present. 
+Don't handle the length of the LLA option specially in the generic
+option parser.
+
+Clean up white space.
 
-Separate declaration from initialization with non-static values
 ------------------------------------------------------------------------
-r15215 | guy | 2005-08-04 17:37:49 -0500 (Thu, 04 Aug 2005) | 3 lines
+r16360 | sahlberg | 2005-10-29 17:47:20 -0500 (Sat, 29 Oct 2005) | 4 lines
 Changed paths:
-   M /trunk/README.win32
+   M /trunk/epan/dissectors/packet-ospf.c
+
+remove some strcat   and dissect the options bitfield properly
+
 
-Note that if you're building from a source tarball, before the first
-build you must do "nmake -f makefile.make distclean".
 
 ------------------------------------------------------------------------
-r15214 | guy | 2005-08-04 17:22:53 -0500 (Thu, 04 Aug 2005) | 5 lines
+r16359 | guy | 2005-10-29 16:48:37 -0500 (Sat, 29 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/Makefile.nmake
-   M /trunk/plugins/mate/Makefile.nmake
-   M /trunk/plugins/xml/Makefile.nmake
+   M /trunk/epan/dissectors/packet-alcap.c
 
-Put in comments explaining why we're removing some generated files with
-"make distclean", even though they come with the distribution, and
-make the one in plugins/xml/Makefile.nmake match the one in some other
-files.
+Use NULL for pointers, 0 for integers, to squelch compiler warnings.
 
 ------------------------------------------------------------------------
-r15213 | guy | 2005-08-04 17:13:33 -0500 (Thu, 04 Aug 2005) | 3 lines
+r16358 | guy | 2005-10-29 16:43:53 -0500 (Sat, 29 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/cleanbld.bat
+   M /trunk/epan/dissectors/packet-rmt-fec.c
 
-Delete some new Flex-generated files, and put in a comment explaining
-that we're doing that and explaining why we're doing it.
+Set "ti" in all code paths, to squelch a compiler warning.
 
 ------------------------------------------------------------------------
-r15212 | jmayer | 2005-08-04 16:54:00 -0500 (Thu, 04 Aug 2005) | 1 line
+r16357 | guy | 2005-10-29 16:43:00 -0500 (Sat, 29 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/Makefile.common
+   M /trunk/epan/dissectors/packet-ncp2222.inc
+
+Get rid of an unused variable.
 
-Forgot to remove gdebug.h from Makefile.common too
 ------------------------------------------------------------------------
-r15211 | jmayer | 2005-08-04 16:40:58 -0500 (Thu, 04 Aug 2005) | 3 lines
+r16356 | etxrab | 2005-10-29 10:34:16 -0500 (Sat, 29 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/doc/README.developer
+   M /trunk/gtk/rtp_analysis.c
 
-Don't initialize variables in their declaration with non-constant
-values.
+From Jaap Keuter
+Improvments to PCMA and PCMU handling-
+------------------------------------------------------------------------
+r16355 | ulfl | 2005-10-29 04:48:29 -0500 (Sat, 29 Oct 2005) | 1 line
+Changed paths:
+   M /trunk/Makefile.am
+   M /trunk/README.win32
+   D /trunk/cleanbld.bat
 
+remove cleanbld.bat (use the distclean target instead)
 ------------------------------------------------------------------------
-r15210 | jmayer | 2005-08-04 16:31:40 -0500 (Thu, 04 Aug 2005) | 6 lines
+r16354 | sahlberg | 2005-10-28 22:07:26 -0500 (Fri, 28 Oct 2005) | 8 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ms-mms.c
+   M /trunk/epan/dissectors/packet-pvfs2.c
+
+add some simple heuristics for PVFS
+
+make PVFS use tcp_dissect_pdus   so it will handle
+reassembly,   pdu boundary tracking, pdu transfer time atc.
 
 
-Albert Chin:
-        uses of some C99'isms which prevent compilation on
-        IRIX 6.5 with the SGI C compiler.
 
 
 ------------------------------------------------------------------------
-r15209 | jmayer | 2005-08-04 16:09:08 -0500 (Thu, 04 Aug 2005) | 6 lines
+r16353 | sahlberg | 2005-10-28 17:13:13 -0500 (Fri, 28 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dfilter/gencode.c
-   M /trunk/epan/ftypes/ftype-tvbuff.c
-   D /trunk/epan/gdebug.h
+   M /trunk/epan/dissectors/packet-pvfs2.c
 
+comment out the heuristics registration until we actually implement some heuristics
 
-Albert Chin:
-        Don't include epan/gdebug.h
-
-Now that epan/gdebug.h is unused: remove it
 
 ------------------------------------------------------------------------
-r15208 | jmayer | 2005-08-04 15:41:52 -0500 (Thu, 04 Aug 2005) | 6 lines
+r16352 | sahlberg | 2005-10-28 17:08:15 -0500 (Fri, 28 Oct 2005) | 8 lines
 Changed paths:
-   M /trunk/tools/lemon/lempar.c
+   M /trunk/AUTHORS
+   M /trunk/epan/dissectors/Makefile.common
+   A /trunk/epan/dissectors/packet-pvfs2.c
 
+From Mike Frisch
 
-Albert Chin:
-        "config.h" should always be included first. However, lemon
-        includes <stdio.h> first.
+New protocol : PVFS2
 
 
-------------------------------------------------------------------------
-r15207 | gerald | 2005-08-04 12:14:19 -0500 (Thu, 04 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/docbook/release-notes.xml
+Example captures for fuzz testing can be found in Mikes email of Oct 7
 
-Add items for the recent FC-FCS and RSVP bug fixes.
 
 ------------------------------------------------------------------------
-r15206 | gerald | 2005-08-04 12:11:32 -0500 (Thu, 04 Aug 2005) | 3 lines
+r16351 | etxrab | 2005-10-28 14:27:13 -0500 (Fri, 28 Oct 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-rsvp.c
+   M /trunk/epan/libethereal.def
+   M /trunk/ethereal_gen.py
 
-Increase the size of some variables, so that we don't overflow them.  Fixes
-the infinite loops in bugs 311 and 314.
+1. replace "and" with "&&" in ethereal_gen.py:2103
 
-------------------------------------------------------------------------
-r15205 | gram | 2005-08-04 08:54:46 -0500 (Thu, 04 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/AUTHORS
-   M /trunk/epan/Makefile.am
-   M /trunk/epan/dissectors/packet-frame.c
-   M /trunk/epan/exceptions.h
-   A /trunk/epan/exntest.c
+2. add make_printable_string in libethereal.def
 
-Exception handling fixes, and a fix to packet-frame.c,
-from Richard van der Hoff.
 
 ------------------------------------------------------------------------
-r15204 | guy | 2005-08-04 05:24:33 -0500 (Thu, 04 Aug 2005) | 2 lines
+r16350 | gerald | 2005-10-28 10:08:14 -0500 (Fri, 28 Oct 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-fcfcs.c
+   M /trunk/epan/to_str.c
 
-When processing records, advance the offset.
+If bytes_to_str() is passed a zero length value, return an empty string
+instead of asserting.  Fixes bug 560.
 
-------------------------------------------------------------------------
-r15203 | etxrab | 2005-08-03 15:51:54 -0500 (Wed, 03 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/asn1/gsmmap/gsm_map-exp.cnf
-   M /trunk/asn1/gsmmap/gsmmap.cnf
-   M /trunk/asn1/gsmmap/packet-gsm_map-template.c
-   M /trunk/asn1/gsmmap/packet-gsm_map-template.h
+Fix up whitespace.
 
-Use the new fn_par functions, fix of a bug and export functions used by gsm_ss.
 ------------------------------------------------------------------------
-r15202 | etxrab | 2005-08-03 15:49:52 -0500 (Wed, 03 Aug 2005) | 2 lines
+r16349 | gerald | 2005-10-28 09:20:18 -0500 (Fri, 28 Oct 2005) | 3 lines
 Changed paths:
-   A /trunk/asn1/gsm_ss
-   A /trunk/asn1/gsm_ss/Makefile.nmake
-   A /trunk/asn1/gsm_ss/SS-Operations.asn
-   A /trunk/asn1/gsm_ss/gsm_ss.cnf
-   A /trunk/asn1/gsm_ss/packet-gsm_ss-template.c
-   A /trunk/asn1/gsm_ss/packet-gsm_ss-template.h
+   M /trunk/epan/dissectors/packet-dec-dnart.c
+
+Fix the bit mask for dec_dna.ctl.router_state.  This should fix the
+"check ftsanity.py output" error in Buildbot.  Fix up whitespace.
 
-First checkin of asn2eth generated gsm ss dissector - work in progress not ready to replace the existing
-dissector yet.
 ------------------------------------------------------------------------
-r15201 | etxrab | 2005-08-03 15:37:28 -0500 (Wed, 03 Aug 2005) | 20 lines
+r16348 | lego | 2005-10-28 07:02:13 -0500 (Fri, 28 Oct 2005) | 8 lines
 Changed paths:
-   M /trunk/epan/Makefile.common
-   M /trunk/epan/dissectors/packet-iax2.c
-   A /trunk/epan/nstime.c
-   M /trunk/epan/nstime.h
-   M /trunk/timestats.c
-   M /trunk/timestats.h
+   M /trunk/epan/dissectors/packet-alcap.c
+   M /trunk/epan/dissectors/packet-alcap.h
 
-From Richard van der Hoff:
+Came up to be an almost complete rewrite:
 
-Among the improvements are:
-- fixes to call-tracking (it's now less likely to confuse two separate 
-calls, for instance)
-- improvements to Information Element dissection (clearer dissection, 
-dissects more IE types, easier to extend)
-- you can now filter on the content of DTMF packets
-- Analysis of timestamps (calculation of absolute timestamp, and packet 
-lateness).
-- fixed a couple of assertion failures in subtle corner-cases.
+- decode up to Q.2630.3
+- (almost) all parameter fields have its own filter expression
+- remove buffers from the stack
+- add some color (expert info) to the tree
 
-negative relative times:
-   - get_timedelta()
-   - addtime()
-   - ftype-time.c:relative_val_from_unparsed()
 
-I've also moved get_timedelta() and addtime() out of calldata.c into a 
-new file, epan/nstime.c, as I needed to use them in a dissector I'm 
-working on (and they therefore needed to go into libethereal).
 ------------------------------------------------------------------------
-r15200 | gerald | 2005-08-03 12:32:00 -0500 (Wed, 03 Aug 2005) | 2 lines
+r16347 | guy | 2005-10-27 15:18:50 -0500 (Thu, 27 Oct 2005) | 6 lines
 Changed paths:
-   M /trunk/wiretap/i4b_trace.h
-   M /trunk/wiretap/i4btrace.c
+   M /trunk/file.c
+   M /trunk/gtk/packet_list.c
+   M /trunk/gtk/proto_draw.c
+   M /trunk/proto_hier_stats.c
+
+Fix uninitialized variable errors.
 
-Don't assume ints are 32 bits.  Fixes a recent Buildbot error.
+Rename some variables to make the names used in progress bars more
+common.  (Should more of that functionality be moved into common
+progress bar code?)
 
 ------------------------------------------------------------------------
-r15199 | etxrab | 2005-08-02 16:16:56 -0500 (Tue, 02 Aug 2005) | 1 line
+r16346 | guy | 2005-10-27 14:42:24 -0500 (Thu, 27 Oct 2005) | 7 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-gsm_sms.c
+   M /trunk/gtk/io_stat.c
+   M /trunk/tap-iostat.c
+
+Make the processing of "-z" arguments in the Tethereal I/O stat tap more
+like that of the Ethereal I/O stat tap.  Improve error messages in both
+taps.
+
+Use nstime() routines and structure assignment to do operations on
+nstime_t values.
 
-Fix "tvb_fake_unicode takes the lengt in number of guint16's not guint8's" fix up indentation.
 ------------------------------------------------------------------------
-r15198 | gerald | 2005-08-02 13:26:31 -0500 (Tue, 02 Aug 2005) | 4 lines
+r16345 | gerald | 2005-10-27 08:46:32 -0500 (Thu, 27 Oct 2005) | 2 lines
 Changed paths:
    M /trunk/docbook/release-notes.xml
 
-After reading through the code again, the LPD
-dissector wasn't susceptible to a crash.  The patch at
-http://cvs.fedora.redhat.com/viewcvs/rpms/ethereal/FC-4/ is unneccessary.
+Add a CVE item for the IRC bug.
 
 ------------------------------------------------------------------------
-r15197 | sahlberg | 2005-08-02 12:34:14 -0500 (Tue, 02 Aug 2005) | 7 lines
+r16344 | sahlberg | 2005-10-27 06:54:55 -0500 (Thu, 27 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-mmse.c
-
-ememify the tvb_get_string call in mmse.
-the strings mmse got from tvb_get_string were never released anyway
-so this would resolve significant memory leakage in mmse.
+   M /trunk/asn1/pkixcrmf/crmf.cnf
+   M /trunk/asn1/pkixcrmf/packet-crmf-template.c
+   M /trunk/epan/dissectors/packet-crmf.c
 
-there are still memleaks in mmse   but one step at a time
+register 1.2.840.113533.7.66.13 as passwordbasedmac from CRMF
 
 
 ------------------------------------------------------------------------
-r15196 | sahlberg | 2005-08-02 12:24:26 -0500 (Tue, 02 Aug 2005) | 3 lines
+r16343 | sahlberg | 2005-10-27 06:27:40 -0500 (Thu, 27 Oct 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-rpc.c
+   M /trunk/epan/dissectors/packet-ber.c
+
+add decoding of some more universal types for the opportunistic decode of unknown ber blobs.
 
-ememify packet-rpc call to tvb_get_string()
 
 
 ------------------------------------------------------------------------
-r15195 | sahlberg | 2005-08-02 12:15:56 -0500 (Tue, 02 Aug 2005) | 3 lines
+r16342 | sahlberg | 2005-10-27 05:11:22 -0500 (Thu, 27 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-sdp.c
+   M /trunk/epan/dissectors/packet-nfs.c
 
-remove a pointless g_strdup
+get rid of the last two strcpy   from epan/dissectors
 
 
 ------------------------------------------------------------------------
-r15194 | gerald | 2005-08-02 10:25:41 -0500 (Tue, 02 Aug 2005) | 2 lines
+r16341 | sahlberg | 2005-10-27 04:58:16 -0500 (Thu, 27 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dfilter/Makefile.am
-   M /trunk/plugins/mate/Makefile.am
+   M /trunk/epan/dissectors/packet-nbns.c
+
+remove some strcpy
 
-Clean up after ourselves so that we pass "distcheck" again.
 
 ------------------------------------------------------------------------
-r15193 | guy | 2005-08-02 03:42:02 -0500 (Tue, 02 Aug 2005) | 3 lines
+r16340 | sahlberg | 2005-10-27 04:48:19 -0500 (Thu, 27 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/exceptions.h
+   M /trunk/epan/dissectors/packet-mount.c
+   M /trunk/epan/dissectors/packet-ncp.c
 
-Explain the BoundsError and ReportedBoundsError errors a bit more, as
-per Ulf Lamping's request.
+get rid of some strcpy
 
-------------------------------------------------------------------------
-r15192 | jmayer | 2005-08-02 03:37:53 -0500 (Tue, 02 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/gtk
 
-Include .libs in svn:ignore
 ------------------------------------------------------------------------
-r15191 | jmayer | 2005-08-02 03:30:33 -0500 (Tue, 02 Aug 2005) | 2 lines
+r16339 | sahlberg | 2005-10-27 04:43:32 -0500 (Thu, 27 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ndps.c
-   M /trunk/epan/dissectors/packet-sscop.c
-   M /trunk/epan/dissectors/packet-tacacs.c
-   M /trunk/epan/dissectors/packet-tds.c
-   M /trunk/epan/dissectors/packet-ymsg.c
-   M /trunk/epan/stats_tree.c
-   M /trunk/gtk/menu.c
-   M /trunk/plugins/mate/mate_util.c
-   M /trunk/plugins/mate/packet-mate.c
+   M /trunk/epan/dissectors/packet-syslog.c
 
-Last set of trivial fixes for "no previous declaration" warnings.
+get rid of a strcpy
 
-------------------------------------------------------------------------
-r15190 | ulfl | 2005-08-02 02:30:38 -0500 (Tue, 02 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/epan/epan.h
 
-add some comments, has to be extended
 ------------------------------------------------------------------------
-r15189 | ulfl | 2005-08-02 02:29:15 -0500 (Tue, 02 Aug 2005) | 1 line
+r16338 | sahlberg | 2005-10-27 04:35:14 -0500 (Thu, 27 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/gtk/main.c
+   M /trunk/epan/dissectors/packet-fclctl.c
+
+get rid of some strcpy
+
 
-add some minor comments around the GTK main loop
 ------------------------------------------------------------------------
-r15188 | ulfl | 2005-08-02 02:26:57 -0500 (Tue, 02 Aug 2005) | 9 lines
+r16337 | sahlberg | 2005-10-27 04:26:35 -0500 (Thu, 27 Oct 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc.c
-
-bugfix: in an attepmt to fix a crash while doing reassemling of connection oriented packets, some weeks ago I've added some tvb_ensure_bytes_exist() calls to test the case that the alloc_hint value is bogus (found in private fuzz testing).
+   M /trunk/epan/dissectors/packet-ppp.c
 
-Unfortunately, this is *very* safe now as it will mark a lot of DCE/RPC packets as malformed, thus the reassembling code won't work with most packets :-(
+remove some strcpy
 
-I've replaced this with the correct check and used THROW(ReportedBoundsError) instead which is hopefully the right error in this case.
 
-BTW: could someone please add a description of the ReportedBoundsError vs. BoundsError to the code as I still don't get it.
 
-In addition: Use a toplevel tree item to display the DCE/RPC defragmentation just as it's done in the TCP desegmentation code.
 ------------------------------------------------------------------------
-r15187 | jmayer | 2005-08-02 02:03:46 -0500 (Tue, 02 Aug 2005) | 1 line
+r16336 | sahlberg | 2005-10-27 04:17:10 -0500 (Thu, 27 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/aclocal-flags
+   M /trunk/epan/dissectors/packet-t38.c
+
+remove a strcpy() call
+
 
-Make aclocal-flags executable again (hopefully fixes buildbot fc4)
 ------------------------------------------------------------------------
-r15186 | jmayer | 2005-08-02 01:44:18 -0500 (Tue, 02 Aug 2005) | 6 lines
+r16335 | sahlberg | 2005-10-27 04:14:07 -0500 (Thu, 27 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/doc/capinfos.pod
-   M /trunk/doc/editcap.pod
-   M /trunk/doc/ethereal-filter.pod.template
-   M /trunk/doc/ethereal-tut.mgp
-   M /trunk/doc/ethereal.pod
-   M /trunk/doc/idl2eth.pod
-   M /trunk/doc/mergecap.pod
-   M /trunk/doc/sgml.doc.template
-   M /trunk/doc/tethereal.pod
-   M /trunk/doc/text2pcap.pod
-
+   M /trunk/epan/dissectors/packet-sip.c
 
- Fix svn properties where needed:
-          Add svn:eol-style
-          Add svn:keywords
+remove a strcpy
 
 
 ------------------------------------------------------------------------
-r15185 | jmayer | 2005-08-02 01:39:04 -0500 (Tue, 02 Aug 2005) | 7 lines
+r16334 | sahlberg | 2005-10-27 04:11:00 -0500 (Thu, 27 Oct 2005) | 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_works.xml
-   M /trunk/docbook/release-notes.xml
+   M /trunk/epan/dissectors/packet-rdt.c
 
- Fix svn properties where needed:
-          Remove svn:executable
-          Add svn:executable
-          Add svn:eol-style
-          Add svn:keywords
-          Add mime-type
+get rid of a strcpy
 
 ------------------------------------------------------------------------
-r15184 | jmayer | 2005-08-02 01:29:49 -0500 (Tue, 02 Aug 2005) | 8 lines
+r16333 | sahlberg | 2005-10-27 04:07:22 -0500 (Thu, 27 Oct 2005) | 3 lines
 Changed paths:
-   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
-   M /trunk/help/toc
-   M /trunk/idl/coseventcomm.idl
-   M /trunk/idl/cosnaming.idl
-   M /trunk/idl/parlay/Parlay.idl
-   M /trunk/idl/parlay/am.idl
-   M /trunk/idl/parlay/cccs.idl
-   M /trunk/idl/parlay/cm.idl
-   M /trunk/idl/parlay/common_cc_data.idl
-   M /trunk/idl/parlay/cs.idl
-   M /trunk/idl/parlay/dsc.idl
-   M /trunk/idl/parlay/fw_data.idl
-   M /trunk/idl/parlay/fw_if.idl
-   M /trunk/idl/parlay/fw_if_access.idl
-   M /trunk/idl/parlay/fw_if_app.idl
-   M /trunk/idl/parlay/fw_if_entop.idl
-   M /trunk/idl/parlay/fw_if_service.idl
-   M /trunk/idl/parlay/gcc_data.idl
-   M /trunk/idl/parlay/gcc_interfaces.idl
-   M /trunk/idl/parlay/gms.idl
-   M /trunk/idl/parlay/mm.idl
-   M /trunk/idl/parlay/mmccs.idl
-   M /trunk/idl/parlay/mmm.idl
-   M /trunk/idl/parlay/mpcc_data.idl
-   M /trunk/idl/parlay/mpcc_interfaces.idl
-   M /trunk/idl/parlay/osa.idl
-   M /trunk/idl/parlay/pam_data.idl
-   M /trunk/idl/parlay/pam_interfaces.idl
-   M /trunk/idl/parlay/policy_data.idl
-   M /trunk/idl/parlay/policy_interfaces.idl
-   M /trunk/idl/parlay/termcap.idl
-   M /trunk/idl/parlay/ui_data.idl
-   M /trunk/idl/parlay/ui_interfaces.idl
-   M /trunk/idl/tango.idl
-   M /trunk/image/README.image
-   M /trunk/image/capinfos.rc.in
-   M /trunk/image/clist_ascend.xpm
-   M /trunk/image/clist_descend.xpm
-   M /trunk/image/dn_arrow.xpm
-   M /trunk/image/editcap.rc.in
-   M /trunk/image/eexcl3d64.xpm
-   M /trunk/image/eicon3d16.xpm
-   M /trunk/image/eicon3d32.xpm
-   M /trunk/image/eicon3d48.xpm
-   M /trunk/image/eicon3d64.xpm
-   M /trunk/image/elogo3d48x48.png
-   M /trunk/image/ethereal.rc.in
-   M /trunk/image/hi16-app-ethereal.png
-   M /trunk/image/hi32-app-ethereal.png
-   M /trunk/image/hi48-app-ethereal.png
-   M /trunk/image/icon-ethereal.xpm
-   M /trunk/image/icon-excl.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/libethereal.rc.in
-   M /trunk/image/lo16-app-ethereal.png
-   M /trunk/image/lo32-app-ethereal.png
-   M /trunk/image/lo48-app-ethereal.png
-   M /trunk/image/mergecap.rc.in
-   M /trunk/image/nsis-checked.bmp
-   M /trunk/image/nsis-unchecked.bmp
-   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_warning_48.xpm
-   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
-
-
- Fix svn properties where needed:
-          Remove svn:executable
-          Add svn:executable
-          Add svn:eol-style
-          Add svn:keywords
-
-
-------------------------------------------------------------------------
-r15183 | jmayer | 2005-08-02 01:15:02 -0500 (Tue, 02 Aug 2005) | 7 lines
-Changed paths:
-   M /trunk/packaging/Makefile.am
-   M /trunk/packaging/nsis/GetWindowsVersion.nsh
-   M /trunk/packaging/nsis/Makefile.am
-   M /trunk/packaging/rpm/Makefile.am
-   M /trunk/packaging/rpm/SPECS/Makefile.am
-   M /trunk/packaging/rpm/SPECS/ethereal.spec.in
-
-Fix svn properties where needed:
-         Remove svn:executable
-         Add svn:executable
-         Add svn:eol-style
-         Add svn:keywords
-
-
-------------------------------------------------------------------------
-r15182 | jmayer | 2005-08-02 00:58:15 -0500 (Tue, 02 Aug 2005) | 7 lines
-Changed paths:
-   M /trunk/tools/EtherealXML.py
-   M /trunk/tools/Makefile.nmake
-   M /trunk/tools/asn2eth.py
-   M /trunk/tools/ftsanity.py
-   M /trunk/tools/lemon/lemon.html
-   M /trunk/tools/lemon/lempar.c
-   M /trunk/tools/lex.py
-   M /trunk/tools/msnchat
-   M /trunk/tools/netscreen2dump.py
-   M /trunk/tools/pkt-from-core.py
-   M /trunk/tools/win32-setup.sh
-   M /trunk/tools/yacc.py
+   M /trunk/epan/dissectors/packet-rtp.c
 
- Fix svn properties where needed:
-         Remove svn:executable
-         Add svn:executable
-         Add svn:eol-style
-         Add svn:keywords
+remove a strcpy call
 
 
 ------------------------------------------------------------------------
-r15181 | jmayer | 2005-08-02 00:51:38 -0500 (Tue, 02 Aug 2005) | 7 lines
+r16332 | sahlberg | 2005-10-27 03:50:42 -0500 (Thu, 27 Oct 2005) | 6 lines
 Changed paths:
-   M /trunk/wiretap/AUTHORS
-   M /trunk/wiretap/COPYING
-   M /trunk/wiretap/ChangeLog
-   M /trunk/wiretap/INSTALL
-   M /trunk/wiretap/NEWS
-   M /trunk/wiretap/wtap.def
+   M /trunk/epan/dissectors/packet-ldap.c
 
+remove a strcpy
+make the code A LOT nicer
+and get rid of unchecked memcpy
 
- Fix svn properties where needed:
-         Remove svn:executable
-         Add svn:eol-style
-         Add svn:keywords
 
 
 ------------------------------------------------------------------------
-r15180 | jmayer | 2005-08-02 00:46:16 -0500 (Tue, 02 Aug 2005) | 4 lines
+r16331 | sahlberg | 2005-10-27 03:35:44 -0500 (Thu, 27 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/AUTHORS
-   M /trunk/COPYING
-   M /trunk/ChangeLog
-   M /trunk/FAQ
-   M /trunk/INSTALL
-   M /trunk/INSTALL.configure
-   M /trunk/aclocal-flags
-   M /trunk/cfilters
-   M /trunk/colorfilters
-   M /trunk/config.guess
-   M /trunk/config.sub
-   M /trunk/dfilters
-   M /trunk/dictionary.dtd
-   M /trunk/dictionary.xml
-   M /trunk/doxygen.cfg.in
-   M /trunk/doxygen_global.cfg
-   M /trunk/getopt.h
-   M /trunk/imscxdx.xml
-   M /trunk/mkstemp.c
-   M /trunk/mkstemp.h
-   M /trunk/mobileipv4.xml
-   M /trunk/nasreq.xml
-   M /trunk/print.ps
-   M /trunk/strcasecmp.c
-   M /trunk/strncasecmp.c
-   M /trunk/strptime.c
-   M /trunk/sunping.xml
-   M /trunk/tap-sctpchunkstat.c
-   M /trunk/tap-stats_tree.c
-
-Remove svn:executable
-Add svn:eol-style native
-Add svn:keywords Id
-
-------------------------------------------------------------------------
-r15179 | jmayer | 2005-08-02 00:39:45 -0500 (Tue, 02 Aug 2005) | 7 lines
-Changed paths:
-   M /trunk/epan/AUTHORS
-   M /trunk/epan/ChangeLog
-   M /trunk/epan/NEWS
-   M /trunk/epan/dfilter/README.dfilter
-   M /trunk/epan/dfilter/gencode.h
-   M /trunk/epan/dissectors/dcerpc/atsvc/Makefile
-   M /trunk/epan/dissectors/dcerpc/atsvc/atsvc.cnf
-   M /trunk/epan/dissectors/dcerpc/atsvc/atsvc.idl
-   M /trunk/epan/dissectors/dcerpc/atsvc/template.c
-   M /trunk/epan/dissectors/dcerpc/atsvc/template.h
-   M /trunk/epan/dissectors/dcerpc/budb/Makefile
-   M /trunk/epan/dissectors/dcerpc/budb/budb.cnf
-   M /trunk/epan/dissectors/dcerpc/budb/budb.idl
-   M /trunk/epan/dissectors/dcerpc/budb/template.c
-   M /trunk/epan/dissectors/dcerpc/budb/template.h
-   M /trunk/epan/dissectors/dcerpc/butc/Makefile
-   M /trunk/epan/dissectors/dcerpc/butc/butc.cnf
-   M /trunk/epan/dissectors/dcerpc/butc/butc.idl
-   M /trunk/epan/dissectors/dcerpc/butc/template.c
-   M /trunk/epan/dissectors/dcerpc/butc/template.h
-   M /trunk/epan/dissectors/dcerpc/drsuapi/Makefile
-   M /trunk/epan/dissectors/dcerpc/drsuapi/drsuapi.cnf
-   M /trunk/epan/dissectors/dcerpc/drsuapi/drsuapi.idl
-   M /trunk/epan/dissectors/dcerpc/drsuapi/template.c
-   M /trunk/epan/dissectors/dcerpc/drsuapi/template.h
-   M /trunk/epan/dissectors/dcerpc/dssetup/Makefile
-   M /trunk/epan/dissectors/dcerpc/dssetup/dssetup.cnf
-   M /trunk/epan/dissectors/dcerpc/dssetup/dssetup.idl
-   M /trunk/epan/dissectors/dcerpc/dssetup/packet-dcerpc-dssetup.c
-   M /trunk/epan/dissectors/dcerpc/dssetup/packet-dcerpc-dssetup.h
-   M /trunk/epan/dissectors/dcerpc/dssetup/template.c
-   M /trunk/epan/dissectors/dcerpc/dssetup/template.h
-   M /trunk/epan/dissectors/dcerpc/efs/Makefile
-   M /trunk/epan/dissectors/dcerpc/efs/efs.cnf
-   M /trunk/epan/dissectors/dcerpc/efs/efs.idl
-   M /trunk/epan/dissectors/dcerpc/efs/template.c
-   M /trunk/epan/dissectors/dcerpc/efs/template.h
-   M /trunk/epan/dissectors/dcerpc/idl2eth.c
-   M /trunk/epan/dissectors/make-reg-dotc
-   M /trunk/epan/dissectors/make-reg-dotc.py
-   M /trunk/epan/dissectors/ncp2222.py
-   M /trunk/epan/dissectors/packet-app-pkix-cert.c
-   M /trunk/epan/dissectors/packet-armagetronad.c
-   M /trunk/epan/dissectors/packet-bacapp.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-crmf.c
-   M /trunk/epan/dissectors/packet-crmf.h
-   M /trunk/epan/dissectors/packet-csm-encaps.c
-   M /trunk/epan/dissectors/packet-dcerpc-budb.h
-   M /trunk/epan/dissectors/packet-dcerpc-butc.h
-   M /trunk/epan/dissectors/packet-dcerpc-dssetup.h
-   M /trunk/epan/dissectors/packet-dec-dnart.c
-   M /trunk/epan/dissectors/packet-dua.c
-   M /trunk/epan/dissectors/packet-ess.c
-   M /trunk/epan/dissectors/packet-ess.h
-   M /trunk/epan/dissectors/packet-fr.h
-   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-ifcp.c
-   M /trunk/epan/dissectors/packet-kerberos4.c
-   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-mpls.h
-   M /trunk/epan/dissectors/packet-ms-mms.c
-   M /trunk/epan/dissectors/packet-netsync.c
-   M /trunk/epan/dissectors/packet-nettl.c
-   M /trunk/epan/dissectors/packet-ns_cert_exts.c
-   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-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-synergy.c
-   M /trunk/epan/dissectors/packet-wlancertextn.c
-   M /trunk/epan/dissectors/packet-wlancertextn.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/doxygen.cfg.in
-   M /trunk/epan/enterprise-numbers
-   M /trunk/epan/exceptions.h
-   M /trunk/epan/inet_aton.c
-   M /trunk/epan/sigcomp_state_hdlr.c
-   M /trunk/epan/sigcomp_state_hdlr.h
-   M /trunk/epan/xmlstub.h
-   M /trunk/gtk/STATUS.gtk2
-   M /trunk/gtk/conversations_sctp.c
-   M /trunk/gtk/doxygen.cfg.in
-   M /trunk/gtk/sctp_chunk_stat.c
-   M /trunk/gtk/sctp_chunk_stat_dlg.c
-   M /trunk/plugins/acn/AUTHORS
-   M /trunk/plugins/acn/COPYING
-   M /trunk/plugins/acn/INSTALL
-   M /trunk/plugins/acn/NEWS
-   M /trunk/plugins/acn/acn.h
-   M /trunk/plugins/acn/moduleinfo.h
-   M /trunk/plugins/artnet/AUTHORS
-   M /trunk/plugins/artnet/COPYING
-   M /trunk/plugins/artnet/INSTALL
-   M /trunk/plugins/artnet/NEWS
-   M /trunk/plugins/artnet/moduleinfo.h
-   M /trunk/plugins/asn1/AUTHORS
-   M /trunk/plugins/asn1/COPYING
-   M /trunk/plugins/asn1/ChangeLog
-   M /trunk/plugins/asn1/INSTALL
-   M /trunk/plugins/asn1/NEWS
-   M /trunk/plugins/asn1/moduleinfo.h
-   M /trunk/plugins/ciscosm/AUTHORS
-   M /trunk/plugins/ciscosm/COPYING
-   M /trunk/plugins/ciscosm/ChangeLog
-   M /trunk/plugins/ciscosm/INSTALL
-   M /trunk/plugins/ciscosm/NEWS
-   M /trunk/plugins/ciscosm/moduleinfo.h
-   M /trunk/plugins/docsis/AUTHORS
-   M /trunk/plugins/docsis/ChangeLog
-   M /trunk/plugins/docsis/INSTALL
-   M /trunk/plugins/docsis/NEWS
-   M /trunk/plugins/docsis/README
-   M /trunk/plugins/docsis/moduleinfo.h
-   M /trunk/plugins/enttec/AUTHORS
-   M /trunk/plugins/enttec/COPYING
-   M /trunk/plugins/enttec/INSTALL
-   M /trunk/plugins/enttec/NEWS
-   M /trunk/plugins/enttec/moduleinfo.h
-   M /trunk/plugins/giop/AUTHORS
-   M /trunk/plugins/giop/COPYING
-   M /trunk/plugins/giop/ChangeLog
-   M /trunk/plugins/giop/INSTALL
-   M /trunk/plugins/giop/NEWS
-   M /trunk/plugins/giop/README
-   M /trunk/plugins/giop/moduleinfo.h
-   M /trunk/plugins/giop/packet-coseventcomm.c
-   M /trunk/plugins/giop/packet-cosnaming.c
-   M /trunk/plugins/gryphon/AUTHORS
-   M /trunk/plugins/gryphon/COPYING
-   M /trunk/plugins/gryphon/ChangeLog
-   M /trunk/plugins/gryphon/INSTALL
-   M /trunk/plugins/gryphon/NEWS
-   M /trunk/plugins/gryphon/README
-   M /trunk/plugins/gryphon/moduleinfo.h
-   M /trunk/plugins/gryphon/stamp-h.in
-   M /trunk/plugins/irda/moduleinfo.h
-   M /trunk/plugins/irda/packet-sir.c
-   M /trunk/plugins/lwres/AUTHORS
-   M /trunk/plugins/lwres/moduleinfo.h
-   M /trunk/plugins/mate/AUTHORS
-   M /trunk/plugins/mate/COPYING
-   M /trunk/plugins/mate/INSTALL
-   M /trunk/plugins/mate/NEWS
-   M /trunk/plugins/mate/mate_grammar.lemon
-   M /trunk/plugins/mate/mate_parser.l
-   M /trunk/plugins/mate/moduleinfo.h
-   M /trunk/plugins/megaco/AUTHORS
-   M /trunk/plugins/megaco/COPYING
-   M /trunk/plugins/megaco/ChangeLog
-   M /trunk/plugins/megaco/INSTALL
-   M /trunk/plugins/megaco/NEWS
-   M /trunk/plugins/megaco/moduleinfo.h
-   M /trunk/plugins/mgcp/AUTHORS
-   M /trunk/plugins/mgcp/COPYING
-   M /trunk/plugins/mgcp/ChangeLog
-   M /trunk/plugins/mgcp/INSTALL
-   M /trunk/plugins/mgcp/NEWS
-   M /trunk/plugins/mgcp/moduleinfo.h
-   M /trunk/plugins/pcli/AUTHORS
-   M /trunk/plugins/pcli/COPYING
-   M /trunk/plugins/pcli/ChangeLog
-   M /trunk/plugins/pcli/INSTALL
-   M /trunk/plugins/pcli/NEWS
-   M /trunk/plugins/pcli/moduleinfo.h
-   M /trunk/plugins/profinet/packet-dcerpc-pn-io.c
-   M /trunk/plugins/profinet/packet-pn-dcp.c
-   M /trunk/plugins/rdm/AUTHORS
-   M /trunk/plugins/rdm/COPYING
-   M /trunk/plugins/rdm/moduleinfo.h
-   M /trunk/plugins/rlm/AUTHORS
-   M /trunk/plugins/rlm/COPYING
-   M /trunk/plugins/rlm/ChangeLog
-   M /trunk/plugins/rlm/INSTALL
-   M /trunk/plugins/rlm/NEWS
-   M /trunk/plugins/rlm/moduleinfo.h
-   M /trunk/plugins/rtnet/AUTHORS
-   M /trunk/plugins/rtnet/COPYING
-   M /trunk/plugins/rtnet/moduleinfo.h
-   M /trunk/plugins/rudp/AUTHORS
-   M /trunk/plugins/rudp/COPYING
-   M /trunk/plugins/rudp/ChangeLog
-   M /trunk/plugins/rudp/INSTALL
-   M /trunk/plugins/rudp/NEWS
-   M /trunk/plugins/rudp/moduleinfo.h
-   M /trunk/plugins/v5ua/AUTHORS
-   M /trunk/plugins/v5ua/COPYING
-   M /trunk/plugins/v5ua/ChangeLog
-   M /trunk/plugins/v5ua/moduleinfo.h
-   M /trunk/plugins/v5ua/packet-v5ua.c
-   M /trunk/plugins/xml/AUTHORS
-   M /trunk/plugins/xml/COPYING
-
-
-Some warning fixes for "no previous declaration"
-Remove svn:executable
-Add svn:eol-style native
-Add svn:keywords Id
-
-
-------------------------------------------------------------------------
-r15178 | jmayer | 2005-08-02 00:21:19 -0500 (Tue, 02 Aug 2005) | 7 lines
-Changed paths:
-   M /trunk/asn1/acse/Makefile
-   M /trunk/asn1/acse/Makefile.nmake
-   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/acse/packet-acse-template.h
-   M /trunk/asn1/camel/Makefile
-   M /trunk/asn1/camel/Makefile.nmake
-   M /trunk/asn1/camel/camel.asn
-   M /trunk/asn1/cmip/CMIP.asn
-   M /trunk/asn1/cmip/cmip.cnf
-   M /trunk/asn1/cmip/packet-cmip-template.c
-   M /trunk/asn1/cmip/packet-cmip-template.h
-   M /trunk/asn1/cms/cms-exp.cnf
-   M /trunk/asn1/ess/ExtendedSecurityServices.asn
-   M /trunk/asn1/ess/ess.cnf
-   M /trunk/asn1/ess/packet-ess-template.c
-   M /trunk/asn1/ess/packet-ess-template.h
-   M /trunk/asn1/ftam/ISO8571-FTAM.asn
-   M /trunk/asn1/ftam/Makefile
-   M /trunk/asn1/ftam/Makefile.nmake
-   M /trunk/asn1/ftam/ftam.cnf
-   M /trunk/asn1/ftam/packet-ftam-template.c
-   M /trunk/asn1/ftam/packet-ftam-template.h
-   M /trunk/asn1/gsmmap/gsm_map-exp.cnf
-   M /trunk/asn1/h225/h225-exp.cnf
-   M /trunk/asn1/h225/h225.asn
-   M /trunk/asn1/h235/h235-exp.cnf
-   M /trunk/asn1/h245/h245-exp.cnf
-   M /trunk/asn1/h245/h245.asn
-   M /trunk/asn1/h450/h4501.asn
-   M /trunk/asn1/inap/inap.asn
-   M /trunk/asn1/logotype-cert-extn/LogotypeCertExtn.asn
-   M /trunk/asn1/logotype-cert-extn/logotype-cert-extn.cnf
-   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/ocsp/OCSP.asn
-   M /trunk/asn1/ocsp/ocsp.cnf
-   M /trunk/asn1/ocsp/packet-ocsp-template.c
-   M /trunk/asn1/ocsp/packet-ocsp-template.h
-   M /trunk/asn1/pkixcmp/CMP.asn
-   M /trunk/asn1/pkixcmp/cmp-exp.cnf
-   M /trunk/asn1/pkixcmp/cmp.cnf
-   M /trunk/asn1/pkixcmp/packet-cmp-template.c
-   M /trunk/asn1/pkixcmp/packet-cmp-template.h
-   M /trunk/asn1/pkixcrmf/CRMF.asn
-   M /trunk/asn1/pkixcrmf/crmf-exp.cnf
-   M /trunk/asn1/pkixcrmf/crmf.cnf
-   M /trunk/asn1/pkixcrmf/packet-crmf-template.c
-   M /trunk/asn1/pkixcrmf/packet-crmf-template.h
-   M /trunk/asn1/pkixproxy/PKIXProxy.asn
-   M /trunk/asn1/pkixproxy/packet-pkixproxy-template.c
-   M /trunk/asn1/pkixproxy/packet-pkixproxy-template.h
-   M /trunk/asn1/pkixproxy/pkixproxy.cnf
-   M /trunk/asn1/pkixqualified/PKIXqualified.asn
-   M /trunk/asn1/pkixqualified/packet-pkixqualified-template.c
-   M /trunk/asn1/pkixqualified/packet-pkixqualified-template.h
-   M /trunk/asn1/pkixqualified/pkixqualified.cnf
-   M /trunk/asn1/pkixtsp/PKIXTSP.asn
-   M /trunk/asn1/pkixtsp/packet-pkixtsp-template.c
-   M /trunk/asn1/pkixtsp/packet-pkixtsp-template.h
-   M /trunk/asn1/pkixtsp/pkixtsp.cnf
-   M /trunk/asn1/smrse/SMRSE.asn
-   M /trunk/asn1/smrse/packet-smrse-template.c
-   M /trunk/asn1/smrse/packet-smrse-template.h
-   M /trunk/asn1/smrse/smrse.cnf
-   M /trunk/asn1/tcap/tcap.asn
-   M /trunk/asn1/wlancertextn/Makefile
-   M /trunk/asn1/wlancertextn/Makefile.nmake
-   M /trunk/asn1/wlancertextn/WLANCERTEXTN.asn
-   M /trunk/asn1/wlancertextn/packet-wlancertextn-template.c
-   M /trunk/asn1/wlancertextn/packet-wlancertextn-template.h
-   M /trunk/asn1/wlancertextn/wlancertextn.cnf
-   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/x509sat-exp.cnf
-
+   M /trunk/epan/dissectors/packet-fcfzs.c
 
-Fix svn properties where needed:
-        Remove svn:executable
-        Add svn:eol-style
-        Add svn:keywords
+remove some strcpy
 
 
 ------------------------------------------------------------------------
-r15177 | jmayer | 2005-08-02 00:17:00 -0500 (Tue, 02 Aug 2005) | 1 line
+r16330 | ulfl | 2005-10-27 03:27:46 -0500 (Thu, 27 Oct 2005) | 1 line
 Changed paths:
-   M /trunk/asn1/mms/Makefile
-   M /trunk/asn1/mms/Makefile.nmake
-   M /trunk/asn1/mms/mms-exp.cnf
-   M /trunk/asn1/mms/mms.asn
-   M /trunk/asn1/mms/mms.cnf
-   M /trunk/asn1/mms/packet-mms-template.c
-   M /trunk/asn1/mms/packet-mms-template.h
+   M /trunk/doc/editcap.pod
 
-set svn:eol-style and svn:keywords
+simply use 4 spaces for example indentation and formatting
 ------------------------------------------------------------------------
-r15176 | jmayer | 2005-08-02 00:12:23 -0500 (Tue, 02 Aug 2005) | 1 line
+r16329 | sahlberg | 2005-10-27 03:18:59 -0500 (Thu, 27 Oct 2005) | 8 lines
 Changed paths:
-   M /trunk/asn1/MAP_Dialogue/MAP_DialoguePDU.asn
-   M /trunk/asn1/MAP_Dialogue/MAP_DialoguePDU.cnf
-   M /trunk/asn1/MAP_Dialogue/packet-MAP-DialoguePDU-template.c
-   M /trunk/asn1/MAP_Dialogue/packet-MAP-DialoguePDU-template.h
+   M /trunk/epan/dissectors/packet-fcdns.c
+
+remove some strcpy() and some buffers.
+
+
+boy o boy   the fc dissector family is in really poor shape and should be rewritten 
+
 
-It's svn:eol-style, not eol-style
-------------------------------------------------------------------------
-r15175 | jmayer | 2005-08-02 00:09:41 -0500 (Tue, 02 Aug 2005) | 3 lines
-Changed paths:
-   M /trunk/asn1/MAP_Dialogue/MAP_DialoguePDU.asn
-   M /trunk/asn1/MAP_Dialogue/MAP_DialoguePDU.cnf
-   M /trunk/asn1/MAP_Dialogue/packet-MAP-DialoguePDU-template.c
-   M /trunk/epan/dissectors/packet-MAP_DialoguePDU.c
 
-Fix "no previous declaration" warnings
-Remove trailing ^M (cr) from some files
 
 ------------------------------------------------------------------------
-r15174 | jmayer | 2005-08-01 23:57:58 -0500 (Mon, 01 Aug 2005) | 1 line
+r16328 | ulfl | 2005-10-27 03:09:32 -0500 (Thu, 27 Oct 2005) | 1 line
 Changed paths:
-   M /trunk/asn1/h245/packet-h245-template.c
-   M /trunk/epan/dissectors/packet-h245.c
+   M /trunk/doc/editcap.pod
 
-Fix more "no previous declaration" warnings
+Synopsis: don't prepend an optional - before the first record number, it won't work
 ------------------------------------------------------------------------
-r15173 | jmayer | 2005-08-01 23:47:15 -0500 (Mon, 01 Aug 2005) | 1 line
+r16327 | guy | 2005-10-27 01:45:37 -0500 (Thu, 27 Oct 2005) | 5 lines
 Changed paths:
-   M /trunk/gtk/capture_if_dlg.c
-   M /trunk/gtk/cfilter_combo_utils.c
-   M /trunk/gtk/color_dlg.c
-   M /trunk/gtk/decode_as_dlg.c
-   M /trunk/gtk/file_dlg.c
-   M /trunk/gtk/fileset_dlg.c
-   M /trunk/gtk/font_utils.c
-   M /trunk/gtk/graph_analysis.c
-   M /trunk/gtk/help_dlg.c
-   M /trunk/gtk/main.c
-   M /trunk/gtk/main.h
-   M /trunk/gtk/packet_history.c
+   M /trunk/file.c
    M /trunk/gtk/packet_list.c
+   M /trunk/gtk/proto_draw.c
+   M /trunk/proto_hier_stats.c
 
-Fix more "no previous declaration" warnings
-------------------------------------------------------------------------
-r15172 | jmayer | 2005-08-01 23:35:40 -0500 (Mon, 01 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/tools/lemon/lemon.c
+Check on every iteration of a loop whether to pop up a dialog box,
+rather than checking only on every progress bar update quantum, so that
+if the update quantum is *very* large, we don't end up waiting longer
+than the standard time for a dialog box before checking.
 
-Fix more "no previous declaration" warnings
 ------------------------------------------------------------------------
-r15171 | jmayer | 2005-08-01 23:34:35 -0500 (Mon, 01 Aug 2005) | 1 line
+r16326 | guy | 2005-10-26 18:10:20 -0500 (Wed, 26 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/base64.c
-   M /trunk/epan/conversation.c
-   M /trunk/epan/packet.c
-   M /trunk/epan/prefs.c
-   M /trunk/epan/radius_dict.l
-   M /trunk/epan/sha1.c
+   M /trunk/epan/dissectors/packet-ncp2222.inc
 
-Fix more "no previous declaration" warnings
-------------------------------------------------------------------------
-r15170 | jmayer | 2005-08-01 23:32:33 -0500 (Mon, 01 Aug 2005) | 1 line
-Changed paths:
-   M /trunk/asn1/pkcs1/packet-pkcs1-template.c
-   M /trunk/asn1/x509if/packet-x509if-template.c
+Don't run "process_ptvc_record()" on replies unless we're building a
+protocol tree.
 
-Fix more "no previous declaration" warnings - the forgotten files
 ------------------------------------------------------------------------
-r15169 | jmayer | 2005-08-01 23:31:42 -0500 (Mon, 01 Aug 2005) | 1 line
+r16325 | ulfl | 2005-10-26 16:08:24 -0500 (Wed, 26 Oct 2005) | 9 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-aim-messaging.c
-   M /trunk/epan/dissectors/packet-aim.c
-   M /trunk/epan/dissectors/packet-dcerpc-atsvc.c
-   M /trunk/epan/dissectors/packet-dcerpc-nt.c
-   M /trunk/epan/dissectors/packet-ipmi.c
-   M /trunk/epan/dissectors/packet-isup.c
-   M /trunk/epan/dissectors/packet-kerberos.c
-   M /trunk/epan/dissectors/packet-nlsp.c
-   M /trunk/epan/dissectors/packet-pcnfsd.c
-   M /trunk/epan/dissectors/packet-pflog.c
-   M /trunk/epan/dissectors/packet-pgm.c
-   M /trunk/epan/dissectors/packet-pim.c
-   M /trunk/epan/dissectors/packet-pkcs1.c
-   M /trunk/epan/dissectors/packet-q933.c
-   M /trunk/epan/dissectors/packet-sigcomp.c
-   M /trunk/epan/dissectors/packet-sip.c
-   M /trunk/epan/dissectors/packet-wbxml.c
-   M /trunk/epan/dissectors/packet-x509if.c
+   M /trunk/doc/editcap.pod
+
+from Jaap Keuter:
+The attached patch extends the synopsys and adds an 'Examples' chapter to
+the editcap documentation.
 
-Fix more "no previous declaration" warnings
-------------------------------------------------------------------------
-r15168 | jmayer | 2005-08-01 23:23:39 -0500 (Mon, 01 Aug 2005) | 4 lines
-Changed paths:
-   M /trunk/wiretap/5views.c
-   M /trunk/wiretap/i4btrace.c
-   M /trunk/wiretap/k12.c
+I've edited this a bit, without the real knowledge :-(, to make it:
 
-Include the .h files into the .c files. That way we
-a) get rid of warnings of type "no previous declaration" and
-b) make sure that declaration and implementation are in sync.
+a. look better
+b. make more sense (at least to me)
 
 ------------------------------------------------------------------------
-r15167 | gerald | 2005-08-01 16:09:34 -0500 (Mon, 01 Aug 2005) | 3 lines
+r16324 | guy | 2005-10-26 15:21:28 -0500 (Wed, 26 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dfilter/Makefile.am
-   M /trunk/plugins/mate/Makefile.am
+   M /trunk/epan/dissectors/packet-ncp2222.inc
 
-Make sure "lemon" exists before we try to use it.  This can happen if we
-run "make dist" before running "make".
+Add a comment.
 
 ------------------------------------------------------------------------
-r15166 | gerald | 2005-08-01 14:51:06 -0500 (Mon, 01 Aug 2005) | 3 lines
+r16323 | sahlberg | 2005-10-26 15:17:40 -0500 (Wed, 26 Oct 2005) | 5 lines
 Changed paths:
-   M /trunk/Makefile.am
+   M /trunk/asn1/pkixcmp/packet-cmp-template.c
+   M /trunk/epan/dissectors/packet-cmp.c
 
-The .spec file now refers to "ethereal.desktop".  Link to it when we
-create our RPMs.
+updates to CMP
 
-------------------------------------------------------------------------
-r15165 | gerald | 2005-08-01 13:04:37 -0500 (Mon, 01 Aug 2005) | 2 lines
-Changed paths:
-   M /trunk/Makefile.am
-   M /trunk/packaging/rpm/SPECS/ethereal.spec.in
+implement the glue to dissect CMP oer TCP
 
-Update RPM builds.
 
 ------------------------------------------------------------------------
-r15164 | gerald | 2005-08-01 08:53:50 -0500 (Mon, 01 Aug 2005) | 2 lines
+r16322 | etxrab | 2005-10-26 14:52:00 -0500 (Wed, 26 Oct 2005) | 1 line
 Changed paths:
-   M /trunk/docbook/release-notes.xml
-
-Add notes about the LPD and ISAKMP bugs.
+   M /trunk/asn1/nbap/packet-nbap-template.c
+   M /trunk/epan/dissectors/packet-nbap.c
+   M /trunk/epan/dissectors/packet-nbap.h
 
+Add the rest of the IE:s
 ------------------------------------------------------------------------
-r15163 | gerald | 2005-08-01 08:52:22 -0500 (Mon, 01 Aug 2005) | 2 lines
+r16321 | etxrab | 2005-10-26 14:08:37 -0500 (Wed, 26 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-isakmp.c
+   M /trunk/epan/to_str.c
 
-Break out of a loop before we exhaust system memory.
+From Mike Duigou
+Safer handling for building address string for AT_STRINGZ and AT_URI.
 
 ------------------------------------------------------------------------
-r15162 | kukosa | 2005-08-01 03:46:09 -0500 (Mon, 01 Aug 2005) | 3 lines
+r16320 | etxrab | 2005-10-26 14:01:29 -0500 (Wed, 26 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/asn1/ftam/ftam.cnf
-   M /trunk/asn1/h225/h225.cnf
-   M /trunk/asn1/h245/h245.cnf
-   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-nettl.c
+   M /trunk/wiretap/wtap.h
+
+From  Mark C Brown, 
+Small patch correcting nettl.uid to unsigned and adding pduin/pduout as nettl.kind values...
 
-- update ftam.cnf for new asn2eth compiler
-- usage of #.FN_PARS in h225 and h245 dissectors
-- PER dissectors regenerated
 ------------------------------------------------------------------------
-r15161 | kukosa | 2005-08-01 03:40:13 -0500 (Mon, 01 Aug 2005) | 2 lines
+r16319 | etxrab | 2005-10-26 13:52:46 -0500 (Wed, 26 Oct 2005) | 1 line
 Changed paths:
-   M /trunk/tools/asn2eth.py
+   M /trunk/asn1/gsm_ss/SS-Operations.asn
+   M /trunk/asn1/gsm_ss/packet-gsm_ss-template.c
+   M /trunk/epan/dissectors/packet-gsm_ss.c
 
-- fix name handling of imported types
-- #.FN_PARS implemented for TypeRef, SET, SEQUENCE, CHOICE
+Set correct offset fore some signals, use dummy funtion to get hf fields auto generated.
 ------------------------------------------------------------------------
-r15160 | etxrab | 2005-07-31 15:42:48 -0500 (Sun, 31 Jul 2005) | 4 lines
+r16318 | gerald | 2005-10-26 09:27:12 -0500 (Wed, 26 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-rtsp.c
+   M /trunk/docbook/release-notes.xml
 
-From Martin Mathieson
-- Makes more of the header fields filterable
-- Rationalises a bit the way header lines are parsed
+Add the recent IRC bug to the release notes.
 
 ------------------------------------------------------------------------
-r15159 | etxrab | 2005-07-31 15:36:59 -0500 (Sun, 31 Jul 2005) | 5 lines
+r16317 | ulfl | 2005-10-26 03:32:21 -0500 (Wed, 26 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ms-mms.c
+   M /trunk/gtk/file_dlg.c
 
-From Martin Mathieson:
-This update:
-- adds more command parameter details
-- doesn't clutter the tree with unknown fields
+bugfix: don't crash the file open dialog, if the preview gets confused by "invalid" timestamps.
 
+The localtime call will return NULL on invalid input which results in a NULL pointer exception. Simply print '?' if localtime returned NULL.
 ------------------------------------------------------------------------
-r15158 | jmayer | 2005-07-30 11:34:38 -0500 (Sat, 30 Jul 2005) | 4 lines
+r16316 | etxrab | 2005-10-25 15:30:43 -0500 (Tue, 25 Oct 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-http.c
-   M /trunk/epan/dissectors/packet-icmpv6.c
-   M /trunk/epan/dissectors/packet-icq.c
-   M /trunk/epan/dissectors/packet-ipp.c
-   M /trunk/epan/dissectors/packet-ipx.c
-   M /trunk/epan/dissectors/packet-isakmp.c
-   M /trunk/epan/dissectors/packet-isis-clv.h
-   M /trunk/epan/dissectors/packet-isis-lsp.c
-   M /trunk/epan/dissectors/packet-isis.c
-   M /trunk/epan/dissectors/packet-isis.h
-   M /trunk/epan/dissectors/packet-kink.c
-   M /trunk/epan/dissectors/packet-ldap.c
-   M /trunk/epan/dissectors/packet-manolito.c
-   M /trunk/epan/dissectors/packet-ms-mms.c
-   M /trunk/epan/dissectors/packet-msproxy.c
-   M /trunk/epan/dissectors/packet-msrp.c
-   M /trunk/epan/dissectors/packet-multipart.c
-   M /trunk/epan/dissectors/packet-nbns.c
-   M /trunk/epan/dissectors/packet-ncp-int.h
-   M /trunk/epan/dissectors/packet-ncp.c
-   M /trunk/epan/dissectors/packet-ncp2222.inc
-   M /trunk/epan/dissectors/packet-netbios.c
-   M /trunk/epan/dissectors/packet-netbios.h
-
-
-More char -> const char fixes
-Declare some functions static
+   M /trunk/asn1/gsm_ss/SS-Operations.asn
+   M /trunk/epan/dissectors/packet-gsm_ss.c
+   M /trunk/epan/dissectors/packet-gsm_ss.h
 
+Tags should be implicit.
 ------------------------------------------------------------------------
-r15157 | jmayer | 2005-07-30 11:28:00 -0500 (Sat, 30 Jul 2005) | 5 lines
+r16315 | etxrab | 2005-10-25 15:29:50 -0500 (Tue, 25 Oct 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-igmp.c
-   M /trunk/epan/dissectors/packet-igmp.h
-
-
-Include .h into .c to make sure declarations match.
-Fix a copy/paste in the .h surrounding ifndef.
-One char -> const char fix.
+   M /trunk/asn1/ranap/packet-ranap-template.c
+   M /trunk/epan/dissectors/packet-ranap.c
 
+As there are more Procedure codes the hueristics need to be updated.
 ------------------------------------------------------------------------
-r15156 | jmayer | 2005-07-30 11:15:23 -0500 (Sat, 30 Jul 2005) | 5 lines
+r16314 | lego | 2005-10-25 14:41:01 -0500 (Tue, 25 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/proto.h
+   M /trunk/epan/dissectors/packet-iuup.c
 
-Stefan Rompf:
-        Fix warnings of type:
-proto.c:2219: warning: ISO C forbids conditional expr with only one void side
+some ies in the init proc weren't propperly decoded.
 
 
 ------------------------------------------------------------------------
-r15155 | jmayer | 2005-07-30 02:13:27 -0500 (Sat, 30 Jul 2005) | 1 line
+r16313 | guy | 2005-10-25 14:39:50 -0500 (Tue, 25 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/asn1/h248/packet-h248-template.c
-   M /trunk/epan/dissectors/packet-h248.c
-   M /trunk/epan/dissectors/packet-nfs.c
-   M /trunk/epan/dissectors/packet-nfs.h
-   M /trunk/epan/dissectors/packet-nfsacl.c
+   M /trunk/asn1/gsmmap/gsm_map-exp.cnf
+
+Check in re-generated version from Graeme Lunt's fix to asn2eth.
 
-More char -> const char warning fixes
 ------------------------------------------------------------------------
-r15154 | jmayer | 2005-07-30 02:08:04 -0500 (Sat, 30 Jul 2005) | 3 lines
+r16312 | guy | 2005-10-25 14:37:38 -0500 (Tue, 25 Oct 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dissectors/Makefile.common
-   M /trunk/epan/dissectors/packet-dcom-cba-acco.c
-   A /trunk/epan/dissectors/packet-dcom-cba-acco.h
-
+   M /trunk/asn1/rtse/packet-rtse-template.c
+   M /trunk/epan/dissectors/packet-rtse.c
+   M /trunk/epan/dissectors/packet-rtse.h
 
-Create packet-dcom-cba-acco.h
+Don't declare "dissect_rtse_EXTERNAL()" in "packet-rtse.c" - let it get
+it from "packet-rtse.h" (which, at least on some platforms, doesn't
+declare it as static, so GCC 4.0, at least, fails because the static and
+non-static declarations collide).
 
 ------------------------------------------------------------------------
-r15153 | guy | 2005-07-29 21:44:20 -0500 (Fri, 29 Jul 2005) | 5 lines
+r16311 | guy | 2005-10-25 14:35:33 -0500 (Tue, 25 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcom-cba-acco.c
+   M /trunk/epan/dissectors/packet-nbap.c
+   M /trunk/epan/dissectors/packet-nbap.h
 
-Make dissect_CBA_Connection_Data again available for plugins (although
-it should be declared in a header file, so that the plugins can #include
-the header file rather than using a possibly-out-of-date private
-declaration, and so that it's clearer that it shouldn't be static).
+Check in the re-generated NBAP dissector.
 
 ------------------------------------------------------------------------
-r15152 | jmayer | 2005-07-29 21:30:05 -0500 (Fri, 29 Jul 2005) | 1 line
+r16310 | lego | 2005-10-25 13:38:47 -0500 (Tue, 25 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/prefs.c
+   M /trunk/asn1/nbap/packet-nbap-template.c
+   M /trunk/asn1/ranap/packet-ranap-template.c
+   M /trunk/epan/dissectors/packet-ranap.c
+
+Avoid a conflict in global symbols by declaring some variables static.
+
 
-Fix 'isn't prototype' warning
 ------------------------------------------------------------------------
-r15151 | guy | 2005-07-29 21:22:22 -0500 (Fri, 29 Jul 2005) | 2 lines
+r16309 | guy | 2005-10-25 12:49:08 -0500 (Tue, 25 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-radius.c
+   M /trunk/asn1/ranap/Makefile
 
-Clean up some more const issues.
+We don't have an SS-Operations.asn file, and don't use one.
 
 ------------------------------------------------------------------------
-r15150 | guy | 2005-07-29 21:20:59 -0500 (Fri, 29 Jul 2005) | 2 lines
+r16308 | gram | 2005-10-25 12:10:04 -0500 (Tue, 25 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ieee80211.c
+   M /trunk/doc/README.developer
 
-Get rid of another unused variable.
+Document ptvcursors.
 
 ------------------------------------------------------------------------
-r15149 | guy | 2005-07-29 21:09:59 -0500 (Fri, 29 Jul 2005) | 6 lines
+r16307 | sahlberg | 2005-10-25 06:24:24 -0500 (Tue, 25 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-scsi.c
+   M /trunk/epan/dissectors/packet-fcdns.c
 
-Widen a variable, as a guint16 value is assigned to it; the upper 8 bits
-might be irrelevant in this case, but we might as well not throw them
-out.
+remove a bunch of arrays, some strcpy() and make it dissect the fc4 type bitmask better
 
-Clean up some code that sets "cdata->flags".
 
 ------------------------------------------------------------------------
-r15148 | guy | 2005-07-29 21:07:36 -0500 (Fri, 29 Jul 2005) | 2 lines
+r16306 | sahlberg | 2005-10-25 05:38:36 -0500 (Tue, 25 Oct 2005) | 6 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ieee80211.c
+   M /trunk/epan/dissectors/packet-fcsb3.c
 
-Get rid of some unused variables.
+remove a buffer from the stack and some strcpy()
+
+the previous code had a bug in that it would never display one of the flags unless the other flag was also set.
 
-------------------------------------------------------------------------
-r15147 | guy | 2005-07-29 21:06:13 -0500 (Fri, 29 Jul 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-lpd.c
 
-Declare the value_string tables as arrays of value_strings, not of
-pointers to same, and make them "const" while we're at it.
 
 ------------------------------------------------------------------------
-r15146 | jmayer | 2005-07-29 20:01:02 -0500 (Fri, 29 Jul 2005) | 1 line
+r16305 | sahlberg | 2005-10-25 05:24:40 -0500 (Tue, 25 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcm.c
-   M /trunk/epan/dissectors/packet-dcom-cba-acco.c
-   M /trunk/epan/dissectors/packet-dcom.c
-   M /trunk/epan/dissectors/packet-dis-fields.c
-   M /trunk/epan/dissectors/packet-dis.c
-   M /trunk/epan/dissectors/packet-dnp.c
-   M /trunk/epan/dissectors/packet-dns.c
-   M /trunk/epan/dissectors/packet-edonkey.c
-   M /trunk/epan/dissectors/packet-enc.c
-   M /trunk/epan/dissectors/packet-esis.c
-   M /trunk/epan/dissectors/packet-etheric.c
-   M /trunk/epan/dissectors/packet-fddi.c
-   M /trunk/epan/dissectors/packet-gnutella.c
-   M /trunk/epan/dissectors/packet-gsm_a.c
-   M /trunk/epan/dissectors/packet-gsm_sms.c
-   M /trunk/epan/dissectors/packet-gsm_ss.c
-   M /trunk/epan/dissectors/packet-gtp.c
-   M /trunk/epan/dissectors/packet-per.c
-   M /trunk/epan/dissectors/packet-per.h
-   M /trunk/epan/dissectors/packet-radius.h
-   M /trunk/epan/dissectors/packet-rtcp.c
-   M /trunk/epan/dissectors/packet-rtcp.h
-   M /trunk/epan/dissectors/packet-rtp.c
-   M /trunk/epan/dissectors/packet-rtp.h
+   M /trunk/epan/dissectors/packet-fcsb3.c
+
+remove a stack based array and some strcpy()
+
 
-Make some funtions static. More char -> const char warning fixes
 ------------------------------------------------------------------------
-r15145 | jmayer | 2005-07-29 19:59:08 -0500 (Fri, 29 Jul 2005) | 1 line
+r16304 | guy | 2005-10-25 03:58:27 -0500 (Tue, 25 Oct 2005) | 2 lines
 Changed paths:
    M /trunk/epan/dissectors/Makefile.common
 
-Remove packet-fcse.h
+Fix a typo.
+
 ------------------------------------------------------------------------
-r15144 | jmayer | 2005-07-29 19:55:30 -0500 (Fri, 29 Jul 2005) | 5 lines
+r16303 | guy | 2005-10-25 01:20:46 -0500 (Tue, 25 Oct 2005) | 10 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-fcsp.c
-   D /trunk/epan/dissectors/packet-fcsp.h
+   M /trunk/epan/dissectors/packet-ncp2222.inc
 
+Put the code to handle NDS ping replies and NDS replies into routines of
+their own.
 
-Declare many functions static, move the #defines from packet-fcse.h to
-packet-fcse.c and remove packet-fcse.h
+Do the tapping as early as possible, so it's done even if exceptions are
+thrown - and do it regardless of whether the tree argument is null or
+not, because a tap might be run without generating protocol trees.
 
+Generate the expert info regardless of whether the tree arugment is null
+or not, as that's also used with taps.
 
 ------------------------------------------------------------------------
-r15143 | gerald | 2005-07-29 16:55:45 -0500 (Fri, 29 Jul 2005) | 13 lines
+r16302 | etxrab | 2005-10-25 01:00:53 -0500 (Tue, 25 Oct 2005) | 8 lines
 Changed paths:
-   M /trunk/config.h.win32
-   M /trunk/configure.in
-   M /trunk/epan/dissectors/packet-lpd.c
-   M /trunk/epan/prefs.c
-
-Pick up some fixes and enhancements from
-http://cvs.fedora.redhat.com/viewcvs/rpms/ethereal/FC-4/:
-
-In the LPD dissector, make lpd_client_code a value_string so that we
-don't segfault.  Do the same for lpd_server_code, although it's not
-strictly necessary.
-
-Check to see if htmlview is installed, and use it as our HTML viewer.
+   M /trunk/AUTHORS
+   M /trunk/epan/dissectors/packet-icmpv6.c
+   M /trunk/epan/dissectors/packet-ipv6.h
+   M /trunk/epan/dissectors/packet-llc.c
+   M /trunk/epan/dissectors/packet-mip6.c
+   M /trunk/epan/dissectors/packet-mip6.h
 
-The Fedora RPM has other patches, but I'm not sure if they should
-be applied.
+From Martin André
 
+the attached patch implements a dissector for the Fast Handovers for Mobile IPv6 protocol (RFC4068). This patch was produced against version 0.10.13 and extends the following files:
+- packet-icmpv6.c
+- packet-ipv6.h
+- packet-mip6.c
+- packet-mip6.h
 
 ------------------------------------------------------------------------
-r15142 | sahlberg | 2005-07-29 05:00:37 -0500 (Fri, 29 Jul 2005) | 3 lines
+r16301 | etxrab | 2005-10-25 00:56:21 -0500 (Tue, 25 Oct 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-sdp.c
+   M /trunk/epan/llcsaps.h
 
-some more ememification of tvb_get_string()
+From Jochen Friedrich 
 
+this patch adds the description for LLC SAP 0xB4 and adds a dissector for basic format XID frames as documented in IEEE802.2. These frames are independent on the SAP / protocol and mandatory to all implementations.
 
 ------------------------------------------------------------------------
-r15141 | guy | 2005-07-29 02:35:43 -0500 (Fri, 29 Jul 2005) | 5 lines
+r16300 | etxrab | 2005-10-25 00:53:12 -0500 (Tue, 25 Oct 2005) | 1 line
 Changed paths:
-   M /trunk/epan/dissectors/packet-http.c
-
-Suggest that perhaps displaying chunks in the chunked encoding with the
-data dissector might be overkill, as it causes each of those chunks to
-be dumped in hex in Tethereal output - along with whatever's done with
-the data reassembled from those chunks.
+   M /trunk/epan/dissectors/Makefile.common
 
+Add missing file ( packet-ftbp.ch)
 ------------------------------------------------------------------------
-r15140 | guy | 2005-07-29 02:28:07 -0500 (Fri, 29 Jul 2005) | 3 lines
+r16299 | etxrab | 2005-10-25 00:52:20 -0500 (Tue, 25 Oct 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-radius.c
+   M /trunk/packaging/nsis/Makefile.nmake
+
+From Jaap Keuter:
+Ethereal 0.10.13 and trunk have a glitch in the NSIS Makefile.nmake. It still works with WinPcap_3_1_beta4.exe. The attached patch resolves this.
 
-Use "PROTO_ITEM_SET_GENERATED()" to mark generated items as such; it
-takes care of the square brackets, etc..
 
 ------------------------------------------------------------------------
-r15139 | guy | 2005-07-29 02:14:32 -0500 (Fri, 29 Jul 2005) | 9 lines
+r16298 | guy | 2005-10-24 19:28:40 -0500 (Mon, 24 Oct 2005) | 9 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-tcp.c
-   M /trunk/epan/reassemble.c
+   M /trunk/epan/dissectors/packet-ndps.c
 
-If we do reassembly and hand the packet to the dissector, and the
-dissector says "sorry, I need even more data in this packet", don't flag
-that packet as being reassembled in that frame.  Indicate that we should
-perhaps do all the "partial reassembly" stuff in
-"fragment_set_partial_assembly()", which would obviate the need for the
-hack in the TCP dissector.
+Clean up "print_address()" - fix the indentation, do the check for a
+too-large address in common code, and *don't* use tvb_get_letohl() to
+get IPv4 addresses (just use proto_tree_add_item(), it works Just Fine).
 
-Clean up indentation.
+For integral values, always do the tvb_ensure_bytes_exist() test; don't
+just do it if the length is the expected value (the real problem is with
+bogus too-large lengths, so it's more important to do the check if the
+length *isn't* the expected value!).  Fixes bug 549.
 
 ------------------------------------------------------------------------
-r15138 | guy | 2005-07-28 22:49:23 -0500 (Thu, 28 Jul 2005) | 3 lines
+r16297 | lego | 2005-10-24 16:52:14 -0500 (Mon, 24 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-rpc.c
-   M /trunk/epan/dissectors/packet-rpc.h
-   M /trunk/tap-rpcstat.c
+   M /trunk/wiretap/wtap.h
+
+forgot this from the last commit
 
-Constify some variables, functions, and structure members to squelch
-compiler warnings.
 
 ------------------------------------------------------------------------
-r15137 | guy | 2005-07-28 22:48:03 -0500 (Thu, 28 Jul 2005) | 2 lines
+r16296 | etxrab | 2005-10-24 16:42:19 -0500 (Mon, 24 Oct 2005) | 14 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-diameter.c
+   M /trunk/asn1/acse/acse-exp.cnf
+   M /trunk/asn1/acse/acse.cnf
+   M /trunk/asn1/ftam/ftam.cnf
+   M /trunk/asn1/ftam/packet-ftam-template.h
+   A /trunk/asn1/ftbp
+   A /trunk/asn1/ftbp/Makefile
+   A /trunk/asn1/ftbp/Makefile.nmake
+   A /trunk/asn1/ftbp/ftbp.asn
+   A /trunk/asn1/ftbp/ftbp.cnf
+   A /trunk/asn1/ftbp/packet-ftbp-template.c
+   A /trunk/asn1/ftbp/packet-ftbp-template.h
+   M /trunk/asn1/ros/packet-ros-template.c
+   M /trunk/asn1/ros/packet-ros-template.h
+   M /trunk/asn1/ros/ros.asn
+   M /trunk/asn1/ros/ros.cnf
+   M /trunk/asn1/rtse/packet-rtse-template.c
+   M /trunk/asn1/rtse/packet-rtse-template.h
+   M /trunk/asn1/rtse/rtse.cnf
+   M /trunk/asn1/s4406/packet-s4406-template.c
+   M /trunk/asn1/s4406/s4406.cnf
+   M /trunk/asn1/x411/packet-x411-template.c
+   M /trunk/asn1/x411/x411.cnf
+   M /trunk/asn1/x420/packet-x420-template.c
+   M /trunk/asn1/x420/x420-exp.cnf
+   M /trunk/asn1/x420/x420.asn
+   M /trunk/asn1/x420/x420.cnf
+   M /trunk/epan/dissectors/packet-acse.c
+   M /trunk/epan/dissectors/packet-acse.h
+   M /trunk/epan/dissectors/packet-ftam.c
+   M /trunk/epan/dissectors/packet-ftam.h
+   A /trunk/epan/dissectors/packet-ftbp.c
+   A /trunk/epan/dissectors/packet-ftbp.h
+   M /trunk/epan/dissectors/packet-ldap.c
+   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-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/tools/asn2eth.py
+
+From Graeme Lunt:
+
+The ftbp.patch file includes:
+a) A fix to acse.cnf which works around an asn2eth bug (it is the AE-qualifier EXPORT I want, but asn2eth doesn't generate the appropriate extern for the values). Also a small cosmetic change for EXTERNAL decodings.
+b) New EXPORTs for the FTAM dissector for use in FTBP.
+c) A fix to asn2eth to solve the problem if you EXPORT types that include a '-' character in the name (e.g. "AE-qualifier" from acse.cnf, "Date-and-Time-Attribute" from ftam.cnf). The problem is that asn2eth generates the "xxxx-exp.cnf" file using the 'C' name (which has replaced '-' with '_') rather than the original 'ASN' name. The fix just undoes the replacement as I couldn't see the original name being preserved anywhere. There still remains a problem if the type has a '.' in the name - but generally I don't think they do.
+
+* Better ROS handling and registration
+* Simplified RTSE registration
+* X411 column information, extension naming and use of new RTSE/ROS registration
+* X420 notification extensions, warnings removal and export of ExtensionsField (missed from recent FTBP patch).
+* Better highlighting of S4406 protocol.
 
-Constify some variables and arguments to squelch compiler warnings.
 
 ------------------------------------------------------------------------
-r15136 | guy | 2005-07-28 22:47:12 -0500 (Thu, 28 Jul 2005) | 2 lines
+r16295 | lego | 2005-10-24 16:26:25 -0500 (Mon, 24 Oct 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-jxta.c
+   M /trunk/epan/dissectors/packet-iuup.c
+
+- optionally decode data pdus
+- optionally decode a 2 byte pseudo-header
+- Beautify colinfo
 
-Include <epan/emem.h> to declare ep_alloc().
 
 ------------------------------------------------------------------------
-r15135 | guy | 2005-07-28 22:27:59 -0500 (Thu, 28 Jul 2005) | 3 lines
+r16294 | lego | 2005-10-24 16:20:03 -0500 (Mon, 24 Oct 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
+   M /trunk/epan/dissectors/packet-k12.c
+   M /trunk/wiretap/k12.c
+
+- packet records with AAL5 Pdus or AAL2 Sdus contain VP/VC and CID info in the packet record, use that instead of the one in the intreface description record.
+- Fix Timestamps that got broken with nanoseconds.
+- Add some more disabled code for debugging.
 
-Cast away some (otherwise unremovable, and harmless, in this case)
-warnings.
 
 ------------------------------------------------------------------------
-r15134 | gerald | 2005-07-28 09:29:19 -0500 (Thu, 28 Jul 2005) | 2 lines
+r16293 | etxrab | 2005-10-24 16:16:44 -0500 (Mon, 24 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/docbook/Makefile
-   A /trunk/docbook/release-notes.xml
-
-Add release notes.  The content still needs to be filled in.
+   A /trunk/asn1/nbap
+   A /trunk/asn1/nbap/Makefile
+   A /trunk/asn1/nbap/Makefile.nmake
+   A /trunk/asn1/nbap/nbap.asn
+   A /trunk/asn1/nbap/nbap.cnf
+   A /trunk/asn1/nbap/packet-nbap-template.c
+   A /trunk/asn1/nbap/packet-nbap-template.h
+   M /trunk/epan/dissectors/Makefile.common
+   A /trunk/epan/dissectors/packet-nbap.c
+   A /trunk/epan/dissectors/packet-nbap.h
 
+UMTS Node B Application Part(NBAP) packet dissection(3GPP TS 25.433 version 6.6.0 Release 6)
+All IE:s not dissected yet.
 ------------------------------------------------------------------------
-r15133 | sahlberg | 2005-07-28 05:05:37 -0500 (Thu, 28 Jul 2005) | 3 lines
+r16292 | sahlberg | 2005-10-24 03:44:36 -0500 (Mon, 24 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-sipfrag.c
-   M /trunk/epan/dissectors/packet-wsp.c
+   M /trunk/epan/dissectors/packet-fcfzs.c
 
-more emeification of tvb_get_string()
+get rid of a few strcpy and an array from the stack
 
 
 ------------------------------------------------------------------------
-r15132 | sahlberg | 2005-07-28 04:56:19 -0500 (Thu, 28 Jul 2005) | 6 lines
+r16291 | guy | 2005-10-23 21:49:32 -0500 (Sun, 23 Oct 2005) | 15 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcerpc-nt.c
-   M /trunk/epan/dissectors/packet-ieee80211.c
-   M /trunk/epan/dissectors/packet-ms-mms.c
-   M /trunk/epan/dissectors/packet-multipart.c
+   M /trunk/epan/dissectors/packet-ncp2222.inc
 
-ememify some more calls to tvb_get_string()
+Add #defines for NDS tag values, and use them in the definition of
+nds_tags[] and in switch statements.  (Also, catch a case where we
+didn't use NDS_PTYPE_ values.)
 
+Use the existing #defines for MVTYPE_ values.
 
-this fixes an obvious memleak in ms-mms
+Make the handling of NDS_PTYPE_{IP,UDP,TCP} in one case match the
+handling of the other cases (don't advance "ioffset", as it's advanced
+by the length of the item).
 
+When checking whether an NDS reply has a completion code, don't check
+the fragment size, check the reassembled packet size.
+
+Fix the handling of referrals in one case.
 
 ------------------------------------------------------------------------
-r15131 | sahlberg | 2005-07-28 04:47:28 -0500 (Thu, 28 Jul 2005) | 3 lines
+r16290 | guy | 2005-10-23 21:35:43 -0500 (Sun, 23 Oct 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dcm.c
-   M /trunk/epan/dissectors/packet-dhcpv6.c
-   M /trunk/epan/dissectors/packet-edonkey.c
-   M /trunk/epan/dissectors/packet-fcdns.c
-   M /trunk/epan/dissectors/packet-fcswils.c
-   M /trunk/epan/dissectors/packet-image-gif.c
-   M /trunk/epan/dissectors/packet-smb.c
-   M /trunk/epan/dissectors/packet-sna.c
-   M /trunk/epan/dissectors/packet-telnet.c
-
-some more memification of tvb_get_string()    no obvious memleaks fixed this time :-(
+   M /trunk/epan/dissectors/packet-irc.c
 
+Don't get caught in an infinite loop if we're stuck at the end of the
+captured data.  Fixes bug 548.  (Also note that we need a better general
+solution.)
 
 ------------------------------------------------------------------------
-r15130 | sahlberg | 2005-07-28 04:35:27 -0500 (Thu, 28 Jul 2005) | 5 lines
+r16289 | guy | 2005-10-23 21:05:19 -0500 (Sun, 23 Oct 2005) | 6 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-gsm_a.c
-   M /trunk/epan/dissectors/packet-jxta.c
-   M /trunk/epan/dissectors/packet-vnc.c
-
-ememify some more tvb_get_string() calls
+   M /trunk/epan/dissectors/packet-ncp.c
 
-one memleak in vnc related to tvb_get_string() closed.
+Clean up indentation.
 
+Hand NCP_ALLOCATE_SLOT and NCP_DEALLOCATE_SLOT packets to
+"dissect_ncp_request()", so we match up requests and replies, fill in
+the Info column properly, etc..
 
 ------------------------------------------------------------------------
-r15129 | sahlberg | 2005-07-28 04:20:56 -0500 (Thu, 28 Jul 2005) | 3 lines
+r16288 | guy | 2005-10-22 01:25:14 -0500 (Sat, 22 Oct 2005) | 16 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-tds.c
+   M /trunk/epan/dissectors/packet-ncp2222.inc
 
-ememify the tvb_get_string() and tvb_fake_unicode() calls in tds
+Add #defines of NDS protocol types, and use them in the value_string and
+switch statements.
 
+Add some sanity checking for ptvcursor_advance calls.
 
-------------------------------------------------------------------------
-r15128 | sahlberg | 2005-07-28 03:55:11 -0500 (Thu, 28 Jul 2005) | 3 lines
-Changed paths:
-   M /trunk/epan/tvbuff.c
-   M /trunk/epan/tvbuff.h
+proto_tree_add_item() works fine for IPv4 addresses; use it for them. 
+(tvb_get_letohl() doesn't work fine for them, even though it appears to
+do so on little-endian machines.)
 
-add an ep version of tvb_fake_unicode()
+Only set the "visible" flag on the protocol tree when we're sure we have
+one, so that it gets set even if we create a temporary tree.
 
+Catch exceptions when dissecting requests, and compute and save the
+results of conditional tests before rethrowing the exception, so the
+results get saved even if the dissection gets an exception.
 
 ------------------------------------------------------------------------
-r15127 | sahlberg | 2005-07-28 03:18:18 -0500 (Thu, 28 Jul 2005) | 11 lines
+r16287 | guy | 2005-10-22 00:43:09 -0500 (Sat, 22 Oct 2005) | 5 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ber.c
-   M /trunk/epan/dissectors/packet-kerberos.c
-
-packet_ber has for some time been doing sanity checking of the BER Length fields
-that they are not longer than the reported length of the tvb.
-
-this triggers some bugs since in packet-ber we are a bit too lax in setting reported_length of the tvb_new_subset() tvb.
-
-this cause short kerberos packets to not be decoded at all and the same for other short asn based packets as well.
+   M /trunk/epan/Makefile.common
+   M /trunk/epan/proto.c
+   D /trunk/epan/ptvcursor.c
 
+Move the ptvcursor.c code to epan/proto, and make ptvcursor_add() handle
+FT_UINT_BYTES and FT_UINT_STRING correctly when the tree argument is
+null (which involves carving proto_tree_add_item() into bits and having
+both ptvcursor_add() and proto_tree_add_item() call those bits).
 
-fix some of these instances.
+------------------------------------------------------------------------
+r16286 | guy | 2005-10-22 00:27:48 -0500 (Sat, 22 Oct 2005) | 3 lines
+Changed paths:
+   M /trunk/epan/dissectors/packet-isis-lsp.c
 
+Use the somewhat-misnamed "ipv4_addr_and_mask()" and
+"ipv6_addr_and_mask()" to handle address+prefix bit length combinations.
 
 ------------------------------------------------------------------------
-r15126 | jmayer | 2005-07-28 02:53:38 -0500 (Thu, 28 Jul 2005) | 1 line
+r16285 | guy | 2005-10-21 23:09:37 -0500 (Fri, 21 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-bacapp.c
-   M /trunk/epan/dissectors/packet-bacapp.h
-   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-bgp.c
-   M /trunk/epan/dissectors/packet-bssgp.c
-   M /trunk/epan/dissectors/packet-cdp.c
-   M /trunk/epan/dissectors/packet-cops.c
-   M /trunk/epan/dissectors/packet-cups.c
-   M /trunk/epan/dissectors/packet-dcerpc-netlogon.c
-   M /trunk/epan/dissectors/packet-dcm.c
-   M /trunk/epan/dissectors/packet-diameter.c
-   M /trunk/epan/dissectors/packet-llc.c
-   M /trunk/epan/dissectors/packet-llc.h
-   M /trunk/epan/dissectors/packet-rpc.h
+   M /trunk/wiretap/ngsniffer.c
+
+Update URL for Sniffer manual, and expand a comment a bit.
 
-char -> const char warning fixes
 ------------------------------------------------------------------------
-r15125 | jmayer | 2005-07-28 02:51:52 -0500 (Thu, 28 Jul 2005) | 1 line
+r16284 | guy | 2005-10-21 22:52:06 -0500 (Fri, 21 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-juniper.c
-   M /trunk/gtk/sctp_assoc_analyse.c
-   M /trunk/gtk/sctp_stat_dlg.c
+   M /trunk/epan/dissectors/packet-iapp.c
+
+Don't roll your own code for showing the usual display of bits in a
+bitfield, use the code we already have.
 
-Warning fixes
 ------------------------------------------------------------------------
-r15124 | jmayer | 2005-07-28 02:50:31 -0500 (Thu, 28 Jul 2005) | 1 line
+r16283 | guy | 2005-10-21 22:49:23 -0500 (Fri, 21 Oct 2005) | 7 lines
 Changed paths:
-   M /trunk/AUTHORS
+   M /trunk/wiretap/ngsniffer.c
+   M /trunk/wiretap/wtap-int.h
+
+Add #defines for the DOS Sniffer network types and for various frame
+status field bits".
+
+Check for "Internetwork analyzer" captures by checking the Sniffer
+network type, and save that type rather than just an "ATM or not" flag
+in the private data.
 
-Updated Ankur Aggarwal's entry
 ------------------------------------------------------------------------
-r15123 | jmayer | 2005-07-28 02:49:55 -0500 (Thu, 28 Jul 2005) | 1 line
+r16282 | ulfl | 2005-10-21 13:47:04 -0500 (Fri, 21 Oct 2005) | 1 line
 Changed paths:
-   M /trunk/oui.h
-   M /trunk/wka.tmpl
+   M /trunk/Makefile.nmake
+   M /trunk/config.nmake
 
-Add Extreme stuff
+Win32: first steps towards using GTK2.6, add zipfile and dir name definitions
 ------------------------------------------------------------------------
-r15122 | guy | 2005-07-27 13:38:35 -0500 (Wed, 27 Jul 2005) | 2 lines
+r16281 | gram | 2005-10-21 08:11:04 -0500 (Fri, 21 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-dhcp-failover.c
+   M /trunk/gtk/expert_dlg.c
 
-Squelch another qualifier warning.
+Revert 16279.
 
 ------------------------------------------------------------------------
-r15121 | jmayer | 2005-07-27 13:15:07 -0500 (Wed, 27 Jul 2005) | 5 lines
+r16280 | etxrab | 2005-10-20 13:51:47 -0500 (Thu, 20 Oct 2005) | 7 lines
 Changed paths:
-   M /trunk/epan/radius_dict.l
+   M /trunk/epan/dissectors/packet-rmt-fec.c
+   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
 
+From Julian Onions
 
-As Guy mentioned: last patch replaced one occurrence too many,
-thus the dictionary keyword encrypt was changed from encrypt
-to encrypted too. Undo this.
+- some improvements to the NORM decoder, and the ability to
+(optionally) heuristically detect NORM.
+- some improvements to FEC block labelling.
+- making the LCT header extension handler more generic and to decode more header extensions.
 
 ------------------------------------------------------------------------
-r15120 | jmayer | 2005-07-27 12:52:51 -0500 (Wed, 27 Jul 2005) | 4 lines
+r16279 | gram | 2005-10-20 13:07:03 -0500 (Thu, 20 Oct 2005) | 4 lines
 Changed paths:
-   M /trunk/epan/radius_dict.l
+   M /trunk/gtk/expert_dlg.c
 
+From Greg Morris.
+Expert data must perform a re-dissection to trigger the NCP dissector.
+Change the call cf_retap_packets() to cf_redissect_packets().
+
+------------------------------------------------------------------------
+r16278 | gram | 2005-10-20 13:04:11 -0500 (Thu, 20 Oct 2005) | 3 lines
+Changed paths:
+   M /trunk/gtk/conversations_table.c
 
-The variable encrypt collides with the declaration in <unistd.h> on
-some platforms. Rename encrypt to encrypted.
+From Greg Morris, patch to allow proper search/filtering of
+NCP conversations.
 
 ------------------------------------------------------------------------
-r15119 | gerald | 2005-07-27 11:25:44 -0500 (Wed, 27 Jul 2005) | 3 lines
+r16277 | etxrab | 2005-10-20 10:51:39 -0500 (Thu, 20 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/prefs.c
+   M /trunk/epan/dissectors/packet-mip6.c
+   M /trunk/epan/dissectors/packet-mip6.h
 
-Move preference initialization to its own routine and make sure it gets run
-when we pass "-G defaultprefs" on the command line.
+From Bruno Deniaud:
+Handle NEMO (RFC  3963).
 
 ------------------------------------------------------------------------
-r15118 | jmayer | 2005-07-27 11:05:41 -0500 (Wed, 27 Jul 2005) | 1 line
+r16276 | etxrab | 2005-10-20 10:49:03 -0500 (Thu, 20 Oct 2005) | 1 line
 Changed paths:
-   M /trunk/epan/proto.h
+   M /trunk/epan/dissectors/packet-uma.c
 
-Revert my previous patch - something else was seriously screwed up
+Use the right offset when calling packet-gsm_a.c functions.
 ------------------------------------------------------------------------
-r15117 | jmayer | 2005-07-27 10:08:22 -0500 (Wed, 27 Jul 2005) | 6 lines
+r16275 | etxrab | 2005-10-20 00:29:53 -0500 (Thu, 20 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/proto.h
+   M /trunk/epan/dissectors/packet-bootp.c
 
+From Stephen Donovan:
+Allow Ethereal to decode the IP address inside of Option 118
+------------------------------------------------------------------------
+r16274 | guy | 2005-10-19 21:45:52 -0500 (Wed, 19 Oct 2005) | 3 lines
+Changed paths:
+   M /trunk/epan/dissectors/ncp2222.py
 
-gcc-4.0 (GCC) 4.0.2 20050720 (prerelease) (SUSE Linux)
-fails when trying to use varargs. Due to a missing include
-config.h we were using varargs with proto.h
+Put back some comments that got removed and that note issues seen with
+some captures.
 
+------------------------------------------------------------------------
+r16273 | ulfl | 2005-10-19 16:08:34 -0500 (Wed, 19 Oct 2005) | 8 lines
+Changed paths:
+   M /trunk/docbook/edg_src/EDG_chapter_dissection.xml
 
+from Jaap Keuter:
+Working with the reassembly functionality Ethereal provides I've found
+some additional changes had to be made to the EDG 8.4.1:
+- a typo (made by myself)
+- fragment_add_seq_check() doesn't take -1 as length remaining
+- process_reassembled_data() can be called with or without tree, and
+  is required in both dissection runs
+- some whitespace stuff
 ------------------------------------------------------------------------
-r15116 | jmayer | 2005-07-27 08:10:57 -0500 (Wed, 27 Jul 2005) | 5 lines
+r16272 | guy | 2005-10-19 14:40:55 -0500 (Wed, 19 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-ieee80211.c
+   M /trunk/epan/dissectors/packet-ncp2222.inc
 
-The latest patch used the fields
-        hf_qos_buf_ac, hf_qos_buf_load and hf_qos_buf_state
-but failed to add them to the hf_ array. Commented out their
-use for now.
+At least on Tiger, multiple definitions of an external don't work.
 
 ------------------------------------------------------------------------
-r15115 | jmayer | 2005-07-27 03:28:27 -0500 (Wed, 27 Jul 2005) | 4 lines
+r16270 | gerald | 2005-10-19 10:36:59 -0500 (Wed, 19 Oct 2005) | 4 lines
 Changed paths:
-   M /trunk/AUTHORS
-   M /trunk/epan/dissectors/packet-ieee80211.c
-
-Ankur Aggarwal:
-        IEEE 802.11 QoS decoding
+   M /trunk/epan/dissectors/packet-slsk.c
 
+Ethereal doesn't like it when you try to tell it that integers are
+either -1 or 0 bytes long.  Use proto_tree_add_text() instead of
+proto_tree_add_uint_format().  Fixes bug 542.
 
 ------------------------------------------------------------------------
-r15114 | jmayer | 2005-07-27 02:57:01 -0500 (Wed, 27 Jul 2005) | 7 lines
+r16269 | gram | 2005-10-19 09:45:24 -0500 (Wed, 19 Oct 2005) | 3 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-afp.c
-   M /trunk/epan/dissectors/packet-alcap.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_map.c
-   M /trunk/epan/dissectors/packet-arp.c
-   M /trunk/epan/dissectors/packet-arp.h
-
-Fix >2600 warnings by doing char -> const char changes.
+   M /trunk/gtk/Makefile.common
+   A /trunk/gtk/conversations_ncp.c
+   A /trunk/gtk/ncp_stat.c
 
-Additionally in dissectors/packet-ansi_map.c:
-        Flag unused parameters as such and remove dummy
-        param = param;
-        statements.
+From Greg Morris.
+Adds NCP data to conversations and SRT.
 
 ------------------------------------------------------------------------
-r15113 | lego | 2005-07-26 20:32:31 -0500 (Tue, 26 Jul 2005) | 3 lines
+r16268 | gram | 2005-10-19 09:39:09 -0500 (Wed, 19 Oct 2005) | 8 lines
 Changed paths:
-   M /trunk/plugins/mgcp/packet-mgcp.c
+   M /trunk/epan/dissectors/packet-ncp-nmas.c
+
+From Greg Morris:
 
-fix another leak of tap data
+Updates to the NMAS dissector.
+1. Fixes error checking fragments
+2. Adds expert data
 
 
 ------------------------------------------------------------------------
-r15112 | guy | 2005-07-26 20:13:28 -0500 (Tue, 26 Jul 2005) | 2 lines
+r16267 | gram | 2005-10-19 09:32:05 -0500 (Wed, 19 Oct 2005) | 5 lines
 Changed paths:
-   M /trunk/gtk/flow_graph.c
+   M /trunk/epan/dissectors/packet-ndps.c
 
-There aren't any clists here, and the clist arrows aren't used.
+From Greg Morris:
 
-------------------------------------------------------------------------
-r15111 | guy | 2005-07-26 20:12:44 -0500 (Tue, 26 Jul 2005) | 2 lines
-Changed paths:
-   M /trunk/epan/dissectors/packet-ip.c
+Adds expert data to the NDPS dissector
 
-Squelch another const warning.
 
 ------------------------------------------------------------------------
-r15110 | guy | 2005-07-26 20:02:03 -0500 (Tue, 26 Jul 2005) | 8 lines
+r16266 | gram | 2005-10-19 09:28:26 -0500 (Wed, 19 Oct 2005) | 36 lines
 Changed paths:
-   M /trunk/epan/dissectors/packet-afp.c
+   M /trunk/epan/dissectors/Makefile.common
+   M /trunk/epan/dissectors/ncp2222.py
+   M /trunk/epan/dissectors/packet-ncp-int.h
+   A /trunk/epan/dissectors/packet-ncp-sss.c
+   A /trunk/epan/dissectors/packet-ncp-sss.h
+   M /trunk/epan/dissectors/packet-ncp.c
+   M /trunk/epan/dissectors/packet-ncp2222.inc
+
+From Greg Morris:
+
+makefile.common.diff - epan directory
+1. Adds new packet-ncp-sss.c and packet-ncp-sss.h for new Secret Store dissector
+New Novell Secret Store Services dissector
+packet-ncp-sss.c
+packet-ncp-sss.h
+ncp2222.py.diff
+1. Adds a number of return values
+2. Adds 64bit file size support
+3. Add NCP 89,xx NCP's for UTF8 support
+4. Fixes a number of field values for proper dissection
+5. Adds support for Secret Store dissector
+packet-ncp2222.inc.diff
+1. Skwelches some compiler warnings
+2. Redo of fix for bug 535 which original fix broke dissection of NDS verb 5
+3. Adds support for Secret Store dissector
+4. Adds expert data
+5. Adds tap for service response time
+6. Fixes dissection of stream attribute
+7. Fixes defragmentation problem with more then 10 fragments
+8. Fixes NDS dissection if reply buffer was less then 7
+packet-ncp.c.diff
+1. Adds tap data
+2. Adds expert data
+3. Fixes calculation for NCP connection number
+4. Fixes malformed packet for destroy service connection
+packet-ncp.c.diff
+1. Adds tap data
 
-*Removing* an include is usally not the right way of removing warnings;
-if some function takes, for example, a "char *" as an argument, but
-you're passing it an "unsigned char *", you don't squelch the warning by
-removing the include of the header that declares that function (you then
-get warnings about the function not being declared, at least with some
-compilers), you put in a cast (if the signedness doesn't matter) or
-arrange that you pass a "char *".
 
 ------------------------------------------------------------------------
-r15109 | lego | 2005-07-26 19:45:02 -0500 (Tue, 26 Jul 2005) | 3 lines
+r16265 | guy | 2005-10-19 02:57:38 -0500 (Wed, 19 Oct 2005) | 2 lines
 Changed paths:
-   M /trunk/epan/emem.c
+   M /trunk/epan/dissectors/packet-cdp.c
 
-Remove two warnings
+Point specifically to the CDP information on the various Cisco pages.
 
+------------------------------------------------------------------------
+r16264 | jmayer | 2005-10-18 09:59:30 -0500 (Tue, 18 Oct 2005) | 1 line
+Changed paths:
+   M /trunk/tools/pidl/TODO
+   M /trunk/tools/pidl/idl.yp
+   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/Samba/NDR/Client.pm
+   M /trunk/tools/pidl/lib/Parse/Pidl/Samba/NDR/Parser.pm
+   M /trunk/tools/pidl/lib/Parse/Pidl/Samba3/Client.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/Types.pm
+   M /trunk/tools/pidl/pidl
 
+Update from samba tree
 ------------------------------------------------------------------------
diff --git a/NEWS b/NEWS
index ecc9321367df693b8068bac7f2f7a2e9096badc1..72343d200bcdd9a30490e8387552a238cca3fbda 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,140 @@
 $Id$
 
+== December 27, 2005
+
+Ethereal 0.10.14 has been released.
+
+  Bug Fixes
+
+   Three security vulnerabilities have been fixed since the previous
+   release. See the [1]application advisory for more details.
+
+     o The IRC dissector could go into an infinite loop. Versions
+       affected: 0.10.13.
+
+     o The GTP dissector could go into an infinite loop. Versions
+       affected: 0.9.1 to 0.10.13.
+
+     o iDefense found a buffer overflow in the OSPF dissector.
+       Versions affected: 0.8.20 to 0.10.13.
+
+  New and Updated Features
+
+   The following features are new (or have been significantly
+   updated) since the last release:
+
+     o The Windows installer now ships with GTK+ 2.6 instead of GTK+
+       2.4. This should fix several long-standing bugs.
+
+     o If you're loading a saved capture file and press "Cancel",
+       Ethereal will now display the packets read up to that point.
+       In previous versions, Ethereal would abort the attempt
+       completely and clear the packet list.
+
+       This means that if you're loding a huge capture file, you can
+       stop loading in the middle and still be able to analyze part
+       of the file.
+
+     o The maximum number of files allowed in a ring buffer has been
+       increased from 1024 to 10,000.
+
+     o OID to name resolution has been improved.
+
+     o TCP graphs now handle upper and lower bounds better.
+
+  New Protocol Support
+
+   3Com Netjack200, CDT, CIGI, DAP, DISP, DOP, DSP, FTBP, MS NLB,
+   NBAP, NCP SSS, NCS, NHRP, P_Mul, RNSAP, SMB2, STANAG 5066, TIPC,
+   UDP-Lite, X.501
+
+  Updated Protocol Support
+
+   ACSE, AIM, ALCAP, AMR, ANSI MAP, BER, BitTorrent, BOOTP, CAMEL,
+   CMP, CMS, COPS, CRMF, DCCP, DCERPC (DCERPC, DSSETUP, INITSHUTDOWN,
+   NT, WINREG), DEC DNA RT, DNP, DTP, eDonkey, ENIP, ESS, Etheric,
+   FC-DNS, FC-FZS, FMIPv6, GRE, GSM A, GSM MAP, GTP, H.225, H.235,
+   H.245, H.248, H.263, H.450, IAPP, IEEE 802.11, INAP, IP, IPv6,
+   IRC, ISIS LSP, ISUP, IUUP, Juniper, LLDP, M3UA, MIP, MIPv6,
+   Modbus/TCP, MTP3, NCP, NDPS, NDS, NEMO, NMAS, NTLMSSP, OSPF, PER,
+   PN-DCP, PPP CHAP, PPPoE, PVFS2, Q.931, RADIUS, RANAP, RDT, RLOGIN,
+   RMT, ROS, RTCP, RTP, RTSE, S4406, SCCP, SCTP, SES, SIP, SMB,
+   SNDCP, SRVLOC, STUN, T.38, UMA, WINS Replication, X.411, X.420,
+   X.509
+
+  New and Updated Capture File Support
+
+   DOS Sniffer, Endace ERF, HP-UX nettl, IBM iSeries traces,
+   Tektronix K12
+
+Getting Ethereal
+
+  Microsoft Windows
+
+   Download ethereal-setup-0.10.14.exe from the [2]Windows download
+   area on the main web site. Double-click the installer executable.
+
+  Sun Solaris
+
+   Download the appropriate package from the [3]Solaris download area
+   on the main web site. Uncompress the package using bzip2, and
+   install it using pkgadd.
+
+  Source Code
+
+   Download ethereal-0.10.14.tar.gz from the [4]main download area on
+   the web site. Extract the package using tar and gzip. Run
+   "configure ; make ; make install".
+
+  Vendor-supplied Packages
+
+   Most Linux and Unix vendors supply their own Ethereal packages.
+   You can install or upgrade Ethereal using the package management
+   system specific to that platform. A list of third-party packages
+   can be found on the [5]download page on the Ethereal web site.
+
+File Locations
+
+   Ethereal and Tethereal look in several different locations for
+   preference files, plugins, SNMP MIBS, and RADIUS dictionaries.
+   These locations vary from platform to platform. You can use
+   About->Folders to find the default locations on your system.
+
+Known Problems
+
+   On Windows systems the packet list scroll bar can sometimes
+   disappear or become unusable. Until the problem is fixed you can
+   work around it by resizing the packet list or the main window.
+   ([6]Bug #220)
+
+Getting Help
+
+   Community support is available on the ethereal-users mailing list.
+   Subscription information and archives for all of Ethereal's
+   mailing lists can be found on [7]the web site. There is also an
+   [8]IRC channel dedicated to Ethereal.
+
+   Commercial support, training, and development services are
+   available from [9]Ethereal Software.
+
+Frequently Asked Questions
+
+   A complete FAQ is available on the [10]Ethereal web site.
+
+References
+
+   Visible links
+   1. http://www.ethereal.com/appnotes/enpa-sa-00022.html
+   2. http://www.ethereal.com/docs/distribution/win32/
+   3. http://www.ethereal.com/docs/distribution/solaris/
+   4. http://www.ethereal.com/docs/distribution/
+   5. http://www.ethereal.com/download.html#otherplat
+   6. http://bugs.ethereal.com/bugzilla/show_bug.cgi?id=220
+   7. http://www.ethereal.com/lists/
+   8. irc://irc.freenode.net/ethereal
+   9. http://www.etherealsoft.com/
+  10. http://www.ethereal.com/faq.html
+
 == October 17, 2005
 
 Ethereal 0.10.13 has been released.
index 1fbcae3c69e20cec64900eefd4f7e2b9e9471456..b26878a37d4bac0a12549f3f5f630da14cae1b32 100644 (file)
@@ -25,8 +25,8 @@ HHC="/cygdrive/c/Program Files/HTML Help Workshop/hhc.exe"
 
 # elinks (text version of release notes)
 # This could also be "lynx", or "true" if neither elinks nor lynx is installed
-ELINKS=elinks
-#ELINKS="true"
+#ELINKS=elinks
+ELINKS="true"
 
 ############### YOU SHOULDN'T HAVE TO EDIT ANYTHING BELOW THIS LINE! ################
 
index d9fc233ea06cf07d35b4ba3d1cd8ced77066626c..87001f7feb1eefc82421c4046fed41571ce9e1d2 100644 (file)
@@ -145,7 +145,7 @@ Gnu info
     <section><title>Microsoft Windows</title>
       <para>
        Download ethereal-setup-&EtherealCurrentVersion;.exe from the
-       <ulink url="http://www.ethereal.com/docs/distribution/win32/">Windows
+       <ulink url="http://www.ethereal.com/distribution/win32/">Windows
        download area</ulink> on the main web site.  Double-click the 
        installer executable.
       </para>
@@ -154,7 +154,7 @@ Gnu info
     <section><title>Sun Solaris</title>
       <para>
        Download the appropriate package from the
-       <ulink url="http://www.ethereal.com/docs/distribution/solaris/">Solaris
+       <ulink url="http://www.ethereal.com/distribution/solaris/">Solaris
        download area</ulink> on the main web site.  Uncompress the package
        using bzip2, and install it using pkgadd.
       </para>
@@ -163,7 +163,7 @@ Gnu info
     <section><title>Source Code</title>
       <para>
        Download ethereal-&EtherealCurrentVersion;.tar.gz from the
-       <ulink url="http://www.ethereal.com/docs/distribution/">main
+       <ulink url="http://www.ethereal.com/distribution/">main
        download area</ulink> on the web site.  Extract the package
        using tar and gzip.  Run "configure ; make ; make install".
       </para>