1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
|
commit 9edc6a1f58
Author: Gerald Combs <gerald@wireshark.org>
Date: Wed Oct 23 08:52:00 2019 -0700
test+wslua: Fix our protofield test count.
Removing the RANGE_STRING test means we have 37 tests, not 38.
Change-Id: I93cb9e130565684538720e136b26ab3e9718f37f
Reviewed-on: https://code.wireshark.org/review/34840
Petri-Dish: Gerald Combs <gerald@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Gerald Combs <gerald@wireshark.org>
commit dac2544c1a
Author: Gerald Combs <gerald@wireshark.org>
Date: Sun Oct 20 08:44:55 2019 +0000
[Automatic update for 2019-10-20]
Update manuf, services enterprise numbers, translations, and other items.
Change-Id: Ida39f22dfbd11592d5c5a091ad32d6c3a78c81fb
Reviewed-on: https://code.wireshark.org/review/34813
Reviewed-by: Gerald Combs <gerald@wireshark.org>
commit 617e1fd369
Author: Gerald Combs <gerald@wireshark.org>
Date: Fri Oct 18 09:49:48 2019 -0700
test+wslua: Remove the RANGE_STRING test
RANGE_STRING support isn't present in Wireshark 2.6
Change-Id: Ib7c4568fb00378b318668f70ba0bda8ab5c7ca67
Reviewed-on: https://code.wireshark.org/review/34808
Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
commit 5105e76e9d
Author: Sake Blok <sake@euronet.nl>
Date: Thu May 30 13:11:21 2019 +0200
IP: Make dissection of ip.frag_offset RFC 791 compliant
The v2.5.0rc0-478-g558fe23226, the dissection of ip.frag_offset changed
to be listed under "Flags", this is not correct. The Fragmentation
Offset is a separate field according to the RFC. This change corrects
that behavior. Also, the raw value from the header was shown instead of
the real byte offset, this is also corrected.
Change-Id: I1d6dfc4314091eb6f3eef418c5a17ed37f7a1200
Fixes: v2.5.0rc0-478-g558fe23226 ("[IP] Simplify paring of flags field by using proto_tree_add_bitmask_with_flags().")
Reviewed-on: https://code.wireshark.org/review/33422
Petri-Dish: Sake Blok <sake.blok@SYN-bit.nl>
Tested-by: Petri Dish Buildbot
Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Petri-Dish: Peter Wu <peter@lekensteyn.nl>
Reviewed-by: Sake Blok <sake.blok@SYN-bit.nl>
(backported from commit 237ec1349f869b4a03282168b5c99d1bcce286ac)
Reviewed-on: https://code.wireshark.org/review/34803
Reviewed-by: Guy Harris <guy@alum.mit.edu>
commit 26d9d34353
Author: Stig Bjørlykke <stig@bjorlykke.org>
Date: Tue Oct 15 12:33:13 2019 +0200
wslua: Improve parameter check in ProtoField.new()
Improve paremeter check in ProtoField.new() when using ftypes.CHAR:
- Check valid base types and give an error when not supported instead of
terminate in a g_error() (base.DEC is not supported).
- Give an error if used with base.UNIT_STRING instead of silently remove
the flags.
Support using base.NONE with a valuestring.
Add ftypes.CHAR to the list of supported types.
Change-Id: I0e3f9698074c807f5da0de23ccd1be7446271135
Reviewed-on: https://code.wireshark.org/review/34783
Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
(cherry picked from commit 03719942232965069a1fc67d262ab32ab9b7ca2a)
Reviewed-on: https://code.wireshark.org/review/34791
Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
commit 92d31e34b5
Author: Stig Bjørlykke <stig@bjorlykke.org>
Date: Tue Oct 15 09:57:10 2019 +0200
Lua: Use space for indent
Remove use of TAB.
Change-Id: Ic2a08f6b325e1fc52a5b043aa09e8f98dacd8c5e
Reviewed-on: https://code.wireshark.org/review/34780
Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
(cherry picked from commit efe1b0b1b2eab9312399128654b956d2f4472be5)
Reviewed-on: https://code.wireshark.org/review/34781
(cherry picked from commit a37668eca1ff4c6a9dea5ccd8cea312d9b2c58d5)
Reviewed-on: https://code.wireshark.org/review/34782
commit 806d3f56a0
Author: Stig Bjørlykke <stig@bjorlykke.org>
Date: Mon Oct 14 19:35:40 2019 +0200
Lua: Support FT_CHAR in Field
Add support for fetching FT_CHAR field values.
Bug: 16129
Change-Id: I0e3b0c784277e259fb7cd1725254fc7a723f6d1e
Reviewed-on: https://code.wireshark.org/review/34775
Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
(cherry picked from commit 8e3ed86de7884ecb29fea9aee19616ae878b5e60)
Reviewed-on: https://code.wireshark.org/review/34776
(cherry picked from commit 38204e9c29e9a26a10cd20d9666b3ec1315d6b00)
Reviewed-on: https://code.wireshark.org/review/34777
commit 54604b591a
Author: Gerald Combs <gerald@wireshark.org>
Date: Sun Oct 13 08:45:21 2019 +0000
[Automatic update for 2019-10-13]
Update manuf, services enterprise numbers, translations, and other items.
Change-Id: If1d6fcd9ada6d4bf7620fa8939610ae21304d3b7
Reviewed-on: https://code.wireshark.org/review/34768
Reviewed-by: Gerald Combs <gerald@wireshark.org>
commit b9e855b80b
Author: Guy Harris <guy@alum.mit.edu>
Date: Sat Oct 12 19:38:49 2019 -0700
We don't compile Qt, we just install a binary.
Change-Id: Ieeaa2b393775ae58782c0f2447b51fd068ffc185
Reviewed-on: https://code.wireshark.org/review/34763
Reviewed-by: Guy Harris <guy@alum.mit.edu>
(cherry picked from commit 9f374047ad025530c9435eb30f084cec4687e316)
Reviewed-on: https://code.wireshark.org/review/34765
commit 2e066515ef
Author: Pascal Quantin <pascal@wireshark.org>
Date: Sun Oct 6 19:44:59 2019 +0200
dumpcap: fix capture library version display on Windows
Ensure to call load_wpcap() berfore building the version info string.
Bug: 16108
Change-Id: Ida7ecf6ad5186f816e1bf33902a0ae70f7f36b40
Reviewed-on: https://code.wireshark.org/review/34719
Reviewed-by: Pascal Quantin <pascal@wireshark.org>
Petri-Dish: Pascal Quantin <pascal@wireshark.org>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
(cherry picked from commit 2cac9d47af2f9851088f8b1d6ca8b7eea1d49774)
Conflicts:
dumpcap.c
Reviewed-on: https://code.wireshark.org/review/34720
(cherry picked from commit 2fa9fad6e2c330558326d91bb06988d9a4115ae9)
Conflicts:
dumpcap.c
Reviewed-on: https://code.wireshark.org/review/34721
commit 9ff620b9e7
Author: Gerald Combs <gerald@wireshark.org>
Date: Sun Oct 6 08:45:36 2019 +0000
[Automatic update for 2019-10-06]
Update manuf, services enterprise numbers, translations, and other items.
Change-Id: I2f896927e8c81a9dc738888ebd44e55594d220a4
Reviewed-on: https://code.wireshark.org/review/34717
Reviewed-by: Gerald Combs <gerald@wireshark.org>
commit 0db7ec792a
Author: Guy Harris <guy@alum.mit.edu>
Date: Mon Sep 30 16:35:35 2019 -0700
Fix checks for "do we have an ERSPAN header?"
For a GRE protocol type of 0x008E, check the "sequence number present"
bit in the GRE header, if it's available, to see if the packet has an
ERSPAN header or not, rather than checking the entire header to see if
it's zero. (If the GRE header isn't available, assume no ERSPAN
header.)
For a GRE protocol type of 0x22EB, always treat the packet as having an
ERSPAN header.
That matches more closely what the most recent I-D for ERSPAN said.
Bug: 16089
Change-Id: I21119411e8485854fca85fa701b994bfa4e73941
Reviewed-on: https://code.wireshark.org/review/34664
Petri-Dish: Guy Harris <guy@alum.mit.edu>
Tested-by: Petri Dish Buildbot
Reviewed-by: Guy Harris <guy@alum.mit.edu>
(cherry picked from commit ef76d65fc61d01c2ce5184140f4b1bba0019078b)
Reviewed-on: https://code.wireshark.org/review/34666
commit 5b159702c4
Author: Guy Harris <guy@alum.mit.edu>
Date: Sun Sep 29 16:24:04 2019 -0700
Fix interpretation of BSO field in Type III headers.
Use a correct right value_string table.
Change-Id: I75ca54dc040b123a460d67fc1b6d49d9e062a49e
Reviewed-on: https://code.wireshark.org/review/34651
Reviewed-by: Guy Harris <guy@alum.mit.edu>
(cherry picked from commit 486c6fd07cd640f73710350639dcc6573b05997b)
Reviewed-on: https://code.wireshark.org/review/34663
commit adb2cada2a
Author: Guy Harris <guy@alum.mit.edu>
Date: Sun Sep 29 15:54:00 2019 -0700
Improve the handling of the FT (Frame Type) field in Type III headers.
Show the value symbolically, and don't dissect the payload as an
Ethernet packet if the value isn't 0, meaning "Ethernet".
This gets rid of the mis-dissection of the payload in the capture
atttached to bug 16089, although it doesn't dissect it any further, as
we don't know how to dissect it.
Change-Id: I97fce0f7a4f4336339bc90271aa7b19c97831abe
Ping-Bug: 16089
Reviewed-on: https://code.wireshark.org/review/34649
Petri-Dish: Guy Harris <guy@alum.mit.edu>
Tested-by: Petri Dish Buildbot
Reviewed-by: Guy Harris <guy@alum.mit.edu>
(cherry picked from commit 3367cbab17769658872decc78762c8edf681fe43)
Reviewed-on: https://code.wireshark.org/review/34662
commit c4ae9afd2b
Author: Gerald Combs <gerald@wireshark.org>
Date: Sun Sep 29 08:45:38 2019 +0000
[Automatic update for 2019-09-29]
Update manuf, services enterprise numbers, translations, and other items.
Change-Id: I3c47826fa735df4c8d0513656b6ae0acb3c3bcec
Reviewed-on: https://code.wireshark.org/review/34645
Reviewed-by: Gerald Combs <gerald@wireshark.org>
commit 438fde1165
Author: Gerald Combs <gerald@wireshark.org>
Date: Sun Sep 22 08:45:21 2019 +0000
[Automatic update for 2019-09-22]
Update manuf, services enterprise numbers, translations, and other items.
Change-Id: I9698418dee2c377517ccee2f0108952aba4cb17c
Reviewed-on: https://code.wireshark.org/review/34589
Reviewed-by: Gerald Combs <gerald@wireshark.org>
commit d0569a457f
Author: João Valverde <joao.valverde@tecnico.ulisboa.pt>
Date: Fri Sep 20 16:59:07 2019 +0100
Debian: Fix WiresharkConfig.cmake
CMAKE_INSTALL_LIBDIR should be a relative path. Remove the scripted
multiarch detection because GNUInstallDirs handles that automatically.
Bug: 16060
Change-Id: Ibc80a4f5531d5d82e167814f8f1a38029f411bcd
Reviewed-on: https://code.wireshark.org/review/34574
Petri-Dish: João Valverde <j@v6e.pt>
Tested-by: Petri Dish Buildbot
Reviewed-by: João Valverde <j@v6e.pt>
commit ab07e44c67
Author: João Valverde <joao.valverde@tecnico.ulisboa.pt>
Date: Fri Sep 20 17:01:38 2019 +0100
CMake: Fix a path in WiresharkConfig.cmake
Change-Id: I2f24b83e1ef5a3df74adbaf970466ce87c5ca384
Reviewed-on: https://code.wireshark.org/review/34575
Reviewed-by: João Valverde <j@v6e.pt>
commit a703f7a9d9
Author: Gerald Combs <gerald@wireshark.org>
Date: Sun Sep 15 09:41:46 2019 +0000
[Automatic update for 2019-09-15]
Update manuf, services enterprise numbers, translations, and other items.
Change-Id: I31867d57271940446d9c36bb52be0cd6a04abf48
Reviewed-on: https://code.wireshark.org/review/34532
Reviewed-by: Gerald Combs <gerald@wireshark.org>
commit 801b9b8982
Author: Evan Welsh <noreply@evanwelsh.com>
Date: Sat Sep 14 16:02:26 2019 -0400
Qt: Prevent crash in main window layout.
Add length check for extra_sizes array in geometry calculations when using
recent sizes, prevents crash in case where user creates a new user profile
with a layout of 1) filled pane 2) empty pane 3) empty pane.
Bug: 16048
Change-Id: I5f30d6e4148703504029efab75a77f2cdb6619ff
Reviewed-on: https://code.wireshark.org/review/34524
Reviewed-by: Michael Mann <mmann78@netscape.net>
Petri-Dish: Michael Mann <mmann78@netscape.net>
Reviewed-by: Peter Wu <peter@lekensteyn.nl>
(backported from commit c0224eeeb833c3ee0b2625c71b9915f13afadb23)
Reviewed-on: https://code.wireshark.org/review/34528
Petri-Dish: Guy Harris <guy@alum.mit.edu>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
commit fa4f4bff8b
Author: Tomasz Moń <desowin@gmail.com>
Date: Tue Sep 10 19:53:18 2019 +0200
randpktdump: Initialize print error handler
When there is a problem with output pipe, randpktdump will call
cfile_write_failure_message() which in turn calls cmdarg_err() which
calls print_err. Call cmdarg_err_init() so print_err is not NULL.
Change-Id: Ie459596a473c83204e9aa1d48bb2d2d3717b340a
Reviewed-on: https://code.wireshark.org/review/34495
Petri-Dish: Michael Mann <mmann78@netscape.net>
Tested-by: Petri Dish Buildbot
Reviewed-by: Michael Mann <mmann78@netscape.net>
(backported from commit 4853fb93b2e64a882f233cd91743976075faf6da)
Reviewed-on: https://code.wireshark.org/review/34526
Petri-Dish: Guy Harris <guy@alum.mit.edu>
Reviewed-by: Guy Harris <guy@alum.mit.edu>
commit a731b9b56d
Author: Jaap Keuter <jaap.keuter@xs4all.nl>
Date: Sat Sep 14 09:42:57 2019 +0200
SNMP: handle Net-SNMP Engine Id of 12 octets
The Net-SNMP code creates an Engine Id size based on the compilation
size, either 8 or 12 octets long. Current implementation handles 32 bit
compilation of Net-SNMP (resulting in 8 octets), this change adds
handling of 64 bit compilation of Net-SNMP (resulting in 12 octets).
Bug: 16051
Change-Id: I256f9a7ad2fd219492e4ebc413ef24cd2c210e0b
Reviewed-on: https://code.wireshark.org/review/34520
Reviewed-by: Jaap Keuter <jaap.keuter@xs4all.nl>
Petri-Dish: Jaap Keuter <jaap.keuter@xs4all.nl>
Tested-by: Petri Dish Buildbot
Reviewed-by: Michael Mann <mmann78@netscape.net>
(cherry picked from commit 608dbda8eeefeb1c79fd93c1848515d8bc6b4ca1)
Reviewed-on: https://code.wireshark.org/review/34523
commit 886c340d43
Author: Gerald Combs <gerald@wireshark.org>
Date: Wed Sep 11 15:46:24 2019 -0700
2.6.11 → 2.6.12.
Change-Id: I2d963ed304ec8933adf1c4d3938860ba8a5cbffb
Reviewed-on: https://code.wireshark.org/review/34510
Reviewed-by: Gerald Combs <gerald@wireshark.org>
|