aboutsummaryrefslogtreecommitdiffstats
path: root/epan
AgeCommit message (Collapse)AuthorFilesLines
2015-11-04Don't include "file.h" if you don't need it.Guy Harris75-38/+136
It ends up dragging in libwireshark headers, which programs not linking with libwireshark shouldn't do. In particular, including <epan/address.h> causes some functions that refer to libwireshark functions to be defined if the compiler doesn't handle "static inline" the way GCC does, and you end up requiring libwireshark even though you shouldn't require it. Move plurality() to wsutil/str_util.h, so that non-libwireshark code can get it without include epan/packet.h. Fix includes as necessary. Change-Id: Ie4819719da4c2b349f61445112aa419e99b977d3 Reviewed-on: https://code.wireshark.org/review/11545 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2015-11-04MPTCP: Use copy_address_wmem() instead of copy_address()João Valverde1-2/+2
Change-Id: I9f53ecf1971c96d06c1c8e3be6e5481cc453f96a Reviewed-on: https://code.wireshark.org/review/11533 Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-04Refactor some GSS-API dissectors to accept dissector data instead of using ↵Michael Mann3-39/+82
packet_info. This can hopefully lead to the removal of the GSS-API specific members of the packet_info structure. Change-Id: I7622d66e9f02c6e4cb76adcf0737b35c6ec88cdd Reviewed-on: https://code.wireshark.org/review/11509 Petri-Dish: Michael Mann <mmann78@netscape.net> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-04Don't include libwireshark headers from libwiretap.Guy Harris3-16/+3
Move the definitions of hashipv4_t and hashipv6_t to wiretap/wtap.h, as that's the main place they're used. Change them a bit not to depend on other stuff from libwireshark, and change the code as required by those changes. This should fix the Solaris build; apparently, the Sun^WOracle compiler is generating code for static inline functions even if they're never called, so that libwiretap ends up including code that calls tvbuff and wmem functions. There's probably further cleanup that could be done here, but this should at least fix the build, as well as getting rid of a dependency between two libraries that are at least somewhat independent (libwiretap should *not* depend on libwireshark, as some programs use libwiretap but not libwireshark, and, ultimately, we probably want it to be possible to use libwireshark without libwiretap but that'd be more work). Change-Id: I91c745282f17d7c8bff7809aa277eab2b3cf47c1 Reviewed-on: https://code.wireshark.org/review/11537 Petri-Dish: Guy Harris <guy@alum.mit.edu> Reviewed-by: Guy Harris <guy@alum.mit.edu>
2015-11-04packetbb; display Addressblock Tail as TailLotte Steenbrink1-1/+1
when displaying the contents of a RFC5444 message containing an address block with a tail, the tail's value is incorrectly displayed as: Head: <value of tail> while it should say: Tail: <value of tail> This commit fixes that. Bug: 11673 Change-Id: Ibeb921cb712f98c9651970529e5240f871b85c0b Reviewed-on: https://code.wireshark.org/review/11538 Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-03Include packet-dcerpc-witness.h, so it's in the source tarball.Guy Harris1-0/+1
Change-Id: I3b0cc7cec85fb94776fae66e8c8f20710b3508e8 Reviewed-on: https://code.wireshark.org/review/11531 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2015-11-03GTPv2: Fix Dead Store (Dead assignement/Dead increment) warning found by ClangAlexis La Goutte1-1/+1
Change-Id: I6b2ddc2f84e954194260b956b6f46f0747d8a66a Reviewed-on: https://code.wireshark.org/review/11504 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2015-11-03[SIP] Rework how the length of the diagnostic string is determined, it didAndersBroman1-5/+5
not work with multiple SIP packages in one frame. Change-Id: Ie142aeea0c6ad28cfdd6206738a6f147094c479f Reviewed-on: https://code.wireshark.org/review/11516 Petri-Dish: Anders Broman <a.broman58@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2015-11-03packet-dcerpc-witness: initial implementation based on the idl file from sambaGregor Beck6-0/+2055
See [MS-SWN], https://msdn.microsoft.com/en-us/library/hh536748.aspx Change-Id: Ie92dad2c229ec08e7f7e31be9422450305b3908a Signed-off-by: Gregor Beck <gbeck@sernet.de> Signed-off-by: Stefan Metzmacher <metze@samba.org> Signed-off-by: Günther Deschner <gd@samba.org> Reviewed-on: https://code.wireshark.org/review/11366 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-03Remaining ADDRESS macro to address function conversionsJoão Valverde58-280/+286
Change-Id: I8bc9af431e70243b05f4f0ce8c2b8ee451383788 Reviewed-on: https://code.wireshark.org/review/11463 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-03RADIUS: Fix length of display data for Ascend-Data-FilterAlexis La Goutte1-1/+1
Change-Id: I5fd1f82ff193cfface0b5d1e5be227dfc3e04f9a Ping-Bug:11630 Reviewed-on: https://code.wireshark.org/review/11292 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-02PDCP LTE: fix dissection of signalling PDUs sent on common control channelsPascal Quantin1-29/+38
For those crazy enough to try to decode PDUs sent in transparent mode ;) Change-Id: Iab0a1325a6764846e23d8f04bd3147625b970638 Reviewed-on: https://code.wireshark.org/review/11498 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2015-11-02BER: Removed erroneous callback from dissect_ber_external_UStig Bjørlykke1-4/+0
This callback was added by a mistake when adding support for P3 over RTSE in commit 0a6d1f98. Change-Id: Ifff0bed3b2a2a0fd2354f9c6b7072de3303dae27 Reviewed-on: https://code.wireshark.org/review/11500 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-02packet-dcerpc: add proto_tree_add_dcerpc_drep()Gregor Beck1-21/+22
Change-Id: I1d3515371f50454acbcbdde75f2f1a3e614a5512 Signed-off-by: Gregor Beck <gbeck@sernet.de> Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-on: https://code.wireshark.org/review/11495 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-02packet(.h): fix api reference / -WdocumentationAlexis La Goutte1-1/+1
From api ref : warning: argument 'uint_val' of command @param is not found in the argument list of dissector_get_guid_handle(dissector_table_t const sub_dissectors, guid_key *guid_val) The following parameters of dissector_get_guid_handle(dissector_table_t const sub_dissectors, guid_key *guid_val) are not documented: parameter 'guid_val' From -Wdocumentation parameter 'uint_val' not found in the function declaration [-Wdocumentation] Change-Id: I9c7b82e4ecb5a126cb96c7d6c057440eb5d24bdd Reviewed-on: https://code.wireshark.org/review/11499 Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-02[GTPv2] Dissect UTRAN F-Container content.AndersBroman5-109/+161
Change-Id: Idaf07e31876b453f88c5fd7e886c72dffcb35a96 Reviewed-on: https://code.wireshark.org/review/11492 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2015-11-02wsgcrypt.h checks internally if we HAVE_LIBGCRYPTMartin Kaiser9-33/+11
we can #include <wsutils/wsgcrypt.h> without doing the check ourselves Change-Id: I248431bdb6cfa1bd85b794ec04ce1e4fcd3a7d2d Reviewed-on: https://code.wireshark.org/review/11483 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2015-11-02srt_table(.h): fix api referenceAlexis La Goutte1-0/+2
The following parameters of register_srt_table(const int proto_id, const char *tap_listener, int max_tables, tap_packet_cb srt_packet_func, srt_init_cb init_cb, srt_param_handler_cb param_cb) are not documented: parameter 'max_tables' The following parameters of init_srt_table(const char *name, const char *short_name, GArray *srt_array, int num_procs, const char *proc_column_name, const char *filter_string, srt_gui_init_cb gui_callback, void *gui_data, void *table_specific_data) are not documented: parameter 'table_specific_data' Change-Id: I7c14a46c89c58985a5000b1760ba088d9f0da293 Reviewed-on: https://code.wireshark.org/review/11491 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2015-11-02rtd_table(.h): fix api referenceAlexis La Goutte1-0/+1
The following parameters of register_rtd_table(const int proto_id, const char *tap_listener, guint num_tables, guint num_timestats, const value_string *vs_type, tap_packet_cb rtd_packet_func, rtd_filter_check_cb filter_check_cb) are not documented: parameter 'num_tables' Change-Id: I93e9297d0755077ad619839c44d2feb7b2a0c18d Reviewed-on: https://code.wireshark.org/review/11490 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2015-11-02RTPS: added new encoding to proto.c and used it in the rtps dissectorJuanjo Martin3-6/+57
RTPS uses NTP encoding with a BASETIME equal to 0. Also, changed "magic" by "Magic" Change-Id: I2512176f2018396edaa6b2a1478facd26118cb13 Reviewed-on: https://code.wireshark.org/review/11184 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-01udp_dissect_pdus follow-upMichael Mann3-27/+49
Add heuristic support Better documentation Change-Id: I236c1f4d3613aa58d608aee0e5edc40c3b158d25 Reviewed-on: https://code.wireshark.org/review/10120 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-01[bitcoin] don't THROW() an exception from a dissectorMartin Kaiser1-10/+20
Change-Id: Ibdc7fec48cef53041c1791fb4f6decb0a4df0c89 Reviewed-on: https://code.wireshark.org/review/11458 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-01[bitcoin] Convert commands into a dissector tableMartin Kaiser1-145/+143
Change-Id: I30095150ea639d773b887f191e0028c765beba12 Reviewed-on: https://code.wireshark.org/review/11457 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-01[iso7816] remove unnecessary initial valuesMartin Kaiser1-4/+4
Change-Id: Ibc370cf99b1f62745174709a35155aa25bc1b3b2 Reviewed-on: https://code.wireshark.org/review/11481 Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
2015-11-01[Automatic update for 2015-11-01]Gerald Combs2-11/+126
Update manuf, services enterprise-numbers, translations, and other items. Change-Id: I2ed2f09a178a8c4a455d0ad8be90cf79d235e621 Reviewed-on: https://code.wireshark.org/review/11477 Reviewed-by: Gerald Combs <gerald@wireshark.org>
2015-11-01packet-dcerpc: improve dissection of bind time feature negotiationStefan Metzmacher1-30/+40
Change-Id: I6bcc5538149e36eed31933897a95fa7592baa84a Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-on: https://code.wireshark.org/review/11363 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-01TDS: Register each login param in a separate fieldNathan Cole1-6/+73
Addition of several fields to cover all login parameters. Bug: 11661 Change-Id: I1cb1620b0e1a8c40b311f4dd4b6eb91e6e55a74d Reviewed-on: https://code.wireshark.org/review/11455 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-01Add GUID dissector table support.Michael Mann2-2/+176
It seems like DCE/RPC could benefit from a GUID dissector table, where a dissector can register it's GUID with a dissector handle. So here is a basic start. Change-Id: Id407117687a1a648d87f6f99c2ecbf858d8c0911 Reviewed-on: https://code.wireshark.org/review/4718 Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-01ISIS Hello: Restore correct dissection of SPB BVIDJim Young1-1/+1
Commit 301a5b7ceac60d0569ce1717e839241d1072400 introduced a small regression with the dissection of the BVID. BVID should be extracted from the 12 most significant bits not the 12 least significant bits. Make it so. Change-Id: Idcf0492eea1f6cb7282641ae243aa7092e5a1418 Reviewed-on: https://code.wireshark.org/review/11472 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2015-11-01bluetooth: Fix uninitialized value warningJoão Valverde1-3/+2
Change-Id: Iee1d1cf3e24dacca3c1a353001a8af71e074a96b Reviewed-on: https://code.wireshark.org/review/11454 Reviewed-by: Martin Kaiser <wireshark@kaiser.cx> Reviewed-by: Michal Labedzki <michal.labedzki@tieto.com> Petri-Dish: Michal Labedzki <michal.labedzki@tieto.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-01TCP: replace some dissector asserts by a returnPascal Quantin1-4/+6
It prevents an assert in case of malformed packet Bug: 11662 Change-Id: If5d7196c7e6ecd0ffe8ed97213dbd64bc1f69cbb Reviewed-on: https://code.wireshark.org/review/11464 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com> Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-10-31[ssh] don't THROW() an exception from a dissectorMartin Kaiser1-2/+5
Change-Id: Ibdbdcf59d7d7d28a812e31c7d7b2123b035f80fa Reviewed-on: https://code.wireshark.org/review/11461 Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
2015-10-31[ssh] remove some unnecessary if(tree) checksMartin Kaiser1-20/+8
Change-Id: Id335830e70a944dd5c26e66d7515d168725acf3f Reviewed-on: https://code.wireshark.org/review/11460 Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
2015-10-31[lmp] don't THROW() an exception from a dissectorMartin Kaiser1-2/+7
do the bounds check for obj_length before we use it Change-Id: I9e15fae6de05c5833c6959239fcdc0a7d2ca59cb Reviewed-on: https://code.wireshark.org/review/11459 Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
2015-10-31[bitcoin] remove two unnecessary return; statementsMartin Kaiser1-2/+0
Change-Id: I97e9ac50b096c798c255227df5760523f623d4bd Reviewed-on: https://code.wireshark.org/review/11456 Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
2015-10-31packet-dcerpc: add dissect_ndr_ucarray_block()Stefan Metzmacher2-5/+40
Change-Id: Ibfb49738ea35d1d02220d69187a6083d5ebbae25 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-on: https://code.wireshark.org/review/11365 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-10-30packet-dcerpc: pass dcerpc_info to dcerpc_dissect_fnct_blk_tStefan Metzmacher2-2/+3
Change-Id: I92711ee39850f6710eaebf5c678496e7cd9b5f59 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-on: https://code.wireshark.org/review/11364 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-10-30Add some "protocol placeholders" to remove confusion with Decode As.Michael Mann3-13/+24
Change-Id: Icc4bf0149af81c35bc6b615add473168600468fb Reviewed-on: https://code.wireshark.org/review/11429 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-10-30Add a comment giving details on the Centrino stuff.Guy Harris1-1/+29
Change-Id: Ie65c106f62c8d783c1c53d7a9c3f213f49ae0c1b Reviewed-on: https://code.wireshark.org/review/11445 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2015-10-30STUN: register a new conversation dissector after receiving a ConnectionBind ↵Pascal Quantin10-18/+44
Success Response message According to RFC 6062, once the connection is established, data is sent as-is To stop the STUN dissector from interfering, add the ability to specify a starting frame for a conversation dissector and use it Bug: 11641 Change-Id: I65ca96bddacf70444009c0642ea22173fa68992e Reviewed-on: https://code.wireshark.org/review/11372 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2015-10-30The item argument is used.Guy Harris1-1/+1
Change-Id: I066c8364bcd12d78b41c336b42f235bdfe112515 Reviewed-on: https://code.wireshark.org/review/11441 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2015-10-30GTPv2: Mark a parameter unused.Gerald Combs1-1/+1
Change-Id: I0dde941a1d1c9b776363d61cc3e849189b2ea0e7 Reviewed-on: https://code.wireshark.org/review/11439 Reviewed-by: Gerald Combs <gerald@wireshark.org>
2015-10-30NLM: fix double memory free when using "Match MSG/RES packets for async NLM" ↵Pascal Quantin1-12/+9
option Change-Id: Ie4f5f8e1ccf9d7b6c7fbee6126697c65f2cc17df Reviewed-on: https://code.wireshark.org/review/11431 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2015-10-30[GTPv2] Dissect Load Control Information IEAndersBroman1-6/+21
Bug: 11655 Change-Id: I9d50d53ce6b98d7a3e06e90450607f6d5b6be1bc Reviewed-on: https://code.wireshark.org/review/11430 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2015-10-30RPC: fix crash when calling NLMv4 SRT statisticsPascal Quantin1-6/+16
packet scope is not valid when called from GUI. To keep API constant, introduce a rpc_proc_name_internal() function allowing to define the memory scope used for string allocation. Bug: 11654 Change-Id: Iff36c090650939c9f2bebfd9c3fd25c51fd97dc0 Reviewed-on: https://code.wireshark.org/review/11425 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com> Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-10-30packet-smb2: Add dissector for SMB2_FSCTL_OFFLOAD_READMichael Adam1-0/+85
Change-Id: I0bbbe3f92cf88c3d3d051ad613e237411b828e43 Signed-off-by: Michael Adam <obnox@samba.org> Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-on: https://code.wireshark.org/review/11360 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-10-30openSAFETY: Remove need for SIII dissector registerRoland Knall1-16/+9
Remove the need for the registration of a dedicated SIII dissector, as this might interfere with "Decode As" handling, as well as being redundant and no longer needed. The udpdata dissector can handle both and gate to the correct sub-dissector if necessary. Change-Id: I756cd845e7e8d64848d9928ad9ff04d571434835 Reviewed-on: https://code.wireshark.org/review/11421 Reviewed-by: Roland Knall <rknall@gmail.com> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-10-30couchbase: implement comand 0x48 to get vbucket seqnosSergey Avseyev1-1/+74
Also add missing extras definition for DCP buffer acknowledgement Change-Id: I29cd1e4751b92f119627e42329b2dcfdd7c378df Reviewed-on: https://code.wireshark.org/review/11419 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2015-10-30[OpenFlow] Use correct name for flag OFPMPF_REPLY_MORE.Pavlos Antoniou1-2/+3
Change-Id: Id190d1a1e24df0c79026bb8dbf62ccd154c1e90d Reviewed-on: https://code.wireshark.org/review/11399 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2015-10-30DCERPC: Regenerate PIDL dissectorAlexis La Goutte4-4/+4
Fix some not updated link to wiki... Change-Id: Iafaa743c4adda36e6dffe2ec2a3a25b8228b9778 Reviewed-on: https://code.wireshark.org/review/11424 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Michael Mann <mmann78@netscape.net>