Ethereal-cvs: [Ethereal-cvs] rev 16192: /releases/ethereal-0.10.13/epan/dissectors/: packet-co
Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.
From: gerald@xxxxxxxxxxxx
Date: Tue, 11 Oct 2005 17:55:59 GMT
User: gerald
Date: 2005/10/11 12:55 PM
Log:
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
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
r16136:
M /trunk/file.c
M /trunk/gtk/gui_utils.c
M /trunk/gtk/main.c
M /trunk/log.h
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
r16137:
M /trunk/tethereal.c
add missing #include "capture_errs.h"
r16138:
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.
r16145:
M /trunk/epan/dtd_preparse.l
remove file inclusion code altoghether and few other changes
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
remove location from dtd_build_data_t avoiding to (double) free it.
r16148:
M /trunk/capture.c
minor fix: fix the sequence while finishing a live capture, so the statusbar information about the file size is correct
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
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)
r16150:
M /trunk/gtk/main.c
minor bugfix: while closing a capture file, update the packets statusbar *after* closing the file
r16151:
M /trunk/plugins/h223/packet-h223.c
Don't call "g_assert()" in dissectors - call "DISSECTOR_ASSERT()".
r16153:
M /trunk/epan/dtd_parse.l
"./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 ">"
r16154:
M /trunk/epan/dissectors/packet-xml.c
do not free the element name, as its been passed to the hf array.
r16157:
A /trunk/doc/README.malloc
add initial better than nothing ep/se allocation documentation
r16165:
M /trunk/doc/README.malloc
Add some missing descriptions
r16167:
M /trunk/epan/emem.c
make .._strndup() not to call strndup.
r16168:
M /trunk/doc/README.malloc
set Id and eol-style
r16169:
M /trunk/gtk/help_dlg.c
fix the link to the online users-guide
r16172:
M /trunk/epan/Makefile.am
Add sminmpec.c to maintainer-clean
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
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$
Directory: /releases/ethereal-0.10.13/epan/dissectors/
Changes Path Action
+36 -29 packet-cops.c Modified
+2 -2 packet-h225.c Modified
+1 -1 packet-h225.h Modified
+4 -4 packet-h235.c Modified
+1 -1 packet-h245.c Modified
+1 -1 packet-h450.c Modified
+1 -1 packet-h450.h Modified
+19 -13 packet-per.c Modified
+1 -1 packet-per.h Modified
+2 -5 packet-xml.c Modified
Directory: /releases/ethereal-0.10.13/doc/
Changes Path Action
+47 -0 README.malloc Added
+4 -0 editcap.pod Modified
+2 -2 ethereal.pod Modified
+2 -2 tethereal.pod Modified
Directory: /releases/ethereal-0.10.13/docbook/
Changes Path Action
+2 -0 Makefile Modified
Directory: /releases/ethereal-0.10.13/epan/
Changes Path Action
+2 -1 Makefile.am Modified
+0 -1 dtd.h Modified
+1 -1 dtd_grammar.lemon Modified
+2 -4 dtd_parse.l Modified
+11 -32 dtd_preparse.l Modified
+14 -18 emem.c Modified
+1640 -26 enterprise-numbers Modified
Directory: /releases/ethereal-0.10.13/
Changes Path Action
+10 -4 capture.c Modified
+3 -3 capture_loop.c Modified
+2 -2 capture_opts.c Modified
+0 -2 capture_sync.c Modified
+11 -2 file.c Modified
+2 -0 log.h Modified
+2 -1 tethereal.c Modified
Directory: /releases/ethereal-0.10.13/gtk/
Changes Path Action
+13 -32 capture_dlg.c Modified
+11 -0 gui_utils.c Modified
+1 -1 help_dlg.c Modified
+35 -3 main.c Modified
Directory: /releases/ethereal-0.10.13/plugins/h223/
Changes Path Action
+2 -2 packet-h223.c Modified
Directory: /releases/ethereal-0.10.13/tools/
Changes Path Action
+1 -1 asn2eth.py Modified
http://anonsvn.ethereal.com/viewcvs/viewcvs.py?rev=16192&view=rev
- Prev by Date: [Ethereal-cvs] rev 16191: /trunk/epan/dissectors/: Makefile.common packet-ranap.c packet-ranap.h /trunk/asn1/ranap/: packet-ranap-template.c
- Next by Date: [Ethereal-cvs] rev 16193: /trunk/epan/dissectors/: packet-iax2.c
- Previous by thread: [Ethereal-cvs] rev 16191: /trunk/epan/dissectors/: Makefile.common packet-ranap.c packet-ranap.h /trunk/asn1/ranap/: packet-ranap-template.c
- Next by thread: [Ethereal-cvs] rev 16193: /trunk/epan/dissectors/: packet-iax2.c
- Index(es):