aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2015-11-05packet-dcerpc: let dcerpc_get_proto_name() handle unknown uuidsStefan Metzmacher1-1/+7
This fixes a regression in commit e0e574d16748313dd8903f886d1af9eb0821fee7. Change-Id: I447001a84e17a76ec77c48f736bbfcd8cc6324a1 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-on: https://code.wireshark.org/review/11574 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-05packet-dcerpc: fix dissecting of decrypted payloadStefan Metzmacher1-5/+7
This fixes a regression in commit e0e574d16748313dd8903f886d1af9eb0821fee7. Change-Id: Iccdeeb488ec70727fc637ca548637e5a5e54ef1c Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-on: https://code.wireshark.org/review/11573 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-05randpkt: code restyle.Dario Lombardo1-197/+301
Code has been restyled towards a more modular approach. This will allow the split of the code into a core and an app. Once splitted the code can be reused by other apps, useful for testing. Change-Id: I96083a7cc1a3417d10961700e5c7c27d32e350e8 Reviewed-on: https://code.wireshark.org/review/11355 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-04gssapi: add init in wrap_dissect_gssapi_payload().Dario Lombardo1-2/+3
Found by clang analyzer. Change-Id: I1c5cb13e174df588c8834508b10790d3fd5b272a Reviewed-on: https://code.wireshark.org/review/11564 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-04Declaring volatile pointers to functions is hard, let's go shopping!Guy Harris1-1/+1
Change-Id: I9686f0c2be43df7a00a00ad2f6aadf6db464d809 Reviewed-on: https://code.wireshark.org/review/11570 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2015-11-04Squelch a "setjmp/longjump may clobber" warning.Guy Harris1-37/+37
Clean up indentation while we're at it. Change-Id: If2068fe17664d78c8fc9747b0ee63bac0213d174 Reviewed-on: https://code.wireshark.org/review/11567 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2015-11-04SSL: fix SCTP port association so as to match what is done for UDP/TCPPascal Quantin1-3/+4
Change-Id: I84f85b7b87ecd9e7801559f7eae2cc98f5a12ab7 Reviewed-on: https://code.wireshark.org/review/11560 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com> Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Reviewed-by: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2015-11-04Skinny: fix dissector registration for SSLPascal Quantin2-2/+4
Change-Id: Ia3f29b703b8271f52dfed9d8b46e18f405785d3a Reviewed-on: https://code.wireshark.org/review/11559 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2015-11-04Don't allow DCE/RPC dissector table to have duplicatesMichael Mann2-4/+13
Add "placeholders" in Profinet dissector to make that possible. Change-Id: I000069ec72b5810c5675a30df1c121aa179000b3 Reviewed-on: https://code.wireshark.org/review/11557 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-04Diameter: fix a typo in dictionary.xmlPascal Quantin1-1/+1
Change-Id: I8a91c9303e9b650380d188be5028e238fc7f2890 Reviewed-on: https://code.wireshark.org/review/11561 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2015-11-04(Temporarily) Allow DCE/RPC dissector table to have duplicates.Michael Mann1-1/+1
Change-Id: I0df81ce03b567e75566fc0969f49d54488604c16 Reviewed-on: https://code.wireshark.org/review/11555 Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-04Refactor DCE/RPC dissection to include a real dissector table.Michael Mann8-321/+331
This is hopefully just the first step in getting DCE/RPC dissection to use "standard" APIs instead of homegrown ones. For starters, it allows Decode As functionality to be less hacky (although incomplete in Qt) Change-Id: Ia0923a3d8d514ab7acce32e26ee7e08f6e24feca Reviewed-on: https://code.wireshark.org/review/11468 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-04Don't allow multiple registrations of a protocol in dissector tables.Michael Mann199-429/+489
The target here is the Decode As dialog where protocols have multiple registrations into a dissector table and that shows up as multiple entries in the Decode As dialog list with the same name so users are unsure which "dissector" they are choosing. The "default" behavior (done in this commit) is to not allow duplicates for a dissector table, whether its part of Decode As or not. It's just ENFORCED for Decode As. Bug: 3949 Change-Id: Ibe14fa61aaeca0881f9cc39b78799e314b5e8127 Reviewed-on: https://code.wireshark.org/review/11405 Petri-Dish: Michael Mann <mmann78@netscape.net> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-04Dictionary (diameter): fix indent (use tabs)Alexis La Goutte1-9/+9
Follow gc7c33b0c8 Change-Id: I54d101f561d4f03dd6e972c8dda3cd6516128de5 Reviewed-on: https://code.wireshark.org/review/11553 Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-11-04Fix AddressSanitizer (./configure --enable-asan) buildsDhiru Kholia3-52/+73
"./configure --enable-asan" currently fails to detect installed libraries because aclocal-fallback/* built programs have memory leaks in them. configure:34516: checking for GTK+ - version >= 3.0.0 configure:34626: gcc -o conftest ... ... configure:34626: $? = 0 configure:34626: ./conftest ================================================================= ==29007==ERROR: LeakSanitizer: detected memory leaks Direct leak of 6 byte(s) in 1 object(s) allocated from: #0 0x7fa5c95dd9aa in malloc (/usr/lib/x86_64-linux-gnu/libasan.so.2+0x989aa) #1 0x7fa5c8995578 in g_malloc (/lib/x86_64-linux-gnu/libglib-2.0.so.0+0x4f578) SUMMARY: AddressSanitizer: 6 byte(s) leaked in 1 allocation(s). configure:34626: $? = 23 configure: program exited with status 23 ... configure:34649: result: no configure:34699: error: GTK+ 3 is not available ... This system is running 64-bit Ubuntu Linux 15.10 with GCC 5.2.1 compiler. The glib-2-0.m4 leak, and the gtk-3.0.m4 leak are fixed by updating "glib-2.0.m4" to the latest upstream version. Whitespace errors are fixed locally to keep the BuildBot happy. Change-Id: I01a5f4c494a59ae6d0ee19cd2611fab163ebf9b4 Reviewed-on: https://code.wireshark.org/review/11283 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Peter Wu <peter@lekensteyn.nl>
2015-11-04[OpenFlow] Use correct name for flag OFPMPF_REPLY_MORE in v5 dissectorPavlos Antoniou1-2/+3
Change-Id: Ia8cb88d4d884be95814f4a144a4c3b07b32ffca7 Reviewed-on: https://code.wireshark.org/review/11543 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2015-11-04Activate word wrap for hintLabel defined as QLabelPascal Quantin18-0/+59
Without this, a long hint string (like a wrong protocol name in the SSL UAT preference) will resize the window to match the string. With this change, instead the hintLabel string is continuing on a new line to match currently configured window size Change-Id: Ib8fcc7bd96585717f122b0921165c4d916442cb0 Reviewed-on: https://code.wireshark.org/review/11529 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com> Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Reviewed-by: 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-04Updated Diameter dictionary.xml with AVP values.Branislav Makan1-12/+20
Diameter dictionary has been updated with the following AVP values: 1031 Rule-Failure-Code: adden new enum codes. 1082 Credit-Management-Status 1091 TDF-IP-Address 1098 Application-Detection-Information Change-Id: I2c5c438fa48b9deda4bdc2a046c19b583b5c7763 Reviewed-on: https://code.wireshark.org/review/11524 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2015-11-04One more file that now needs wsutil/str_util.h for plurality().Guy Harris1-1/+1
Change-Id: I19ccff96d590002a170fb0e477d53acb71d1680d Reviewed-on: https://code.wireshark.org/review/11547 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2015-11-04Don't include stuff from libwireshark.Guy Harris1-3/+0
Dumpcap captures packets, and supports the usual capture options, so it needs this, but it does *not* link with libwireshark (deliberately, so that the libwireshark code isn't linked into a program that might run with special privileges), so we must not depend on anything in libwireshark. Change-Id: Id975fd6a83a4b2a493c67493e41e69b784a050aa Reviewed-on: https://code.wireshark.org/review/11546 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2015-11-04Don't include "file.h" if you don't need it.Guy Harris92-42/+160
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 Mann4-54/+95
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 Harris5-17/+20
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-03Qt: Turn off WindowModified when closing a file.Stig Bjørlykke1-0/+1
When closing a capture file the main window will never be modified, so ensure we turn this off when the file is closed. Change-Id: I3e6a62c931330a75d32f46fc32524d8de8734485 Reviewed-on: https://code.wireshark.org/review/11497 Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
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-03Update .mailmap with my new e-mail addressStephen Fisher1-3/+4
Change-Id: Ia3a0634e27db42373e491815a236e7a8ee002058 Reviewed-on: https://code.wireshark.org/review/11527 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
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-03[Qt recent files menu] make sure that the "Clear Menu" item is retranslatedMartin Kaiser1-0/+2
this item is created along with the list of recent files it looks like our only option to update its translation is to rebuild the list of recent files Change-Id: If740571fb9c939d65ca4f1f432aadf22c38dcb27 Reviewed-on: https://code.wireshark.org/review/11462 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-03Remaining ADDRESS macro to address function conversionsJoão Valverde61-292/+298
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-03Document dissector "Decode As" functionality in README.dissectorMichael Mann1-3/+39
Change-Id: I82d97a9fb770455d57d47cef8c616d2d4ff41d3c Reviewed-on: https://code.wireshark.org/review/11488 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-03Put a newline at the end of the file.Guy Harris1-1/+1
Change-Id: Ic04e9a4afdceb1e36ad8367dd0d7bf6bd0674844 Reviewed-on: https://code.wireshark.org/review/11514 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2015-11-03Revert the last two CMake changes.Gerald Combs1-28/+13
get_filename_component returns "/regstry" if the query is unsuccessful. We'll have to add a check for that if we query "Add Paths". Revert "CMake: Pass ABSOLUTE to get_filename_component." This reverts commit 4c03f4be000fd930a939b042e8d1b68c509ccebd. Revert "CMake: Look for Python using the "App Paths" key." This reverts commit 6d1b6cd39db80fe8dc77c250ae795d16ce08bf41. Change-Id: Ida17608467fa3652f4219e4eaf01edfa48120b1d Reviewed-on: https://code.wireshark.org/review/11512 Reviewed-by: Gerald Combs <gerald@wireshark.org>
2015-11-03CMake: Pass ABSOLUTE to get_filename_component.Gerald Combs1-0/+2
Change-Id: Iecfc4aabe332cac930a7fa5bb6e342a55e7bc7b3 Reviewed-on: https://code.wireshark.org/review/11510 Reviewed-by: Gerald Combs <gerald@wireshark.org>
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-03CMake: Look for Python using the "App Paths" key.Gerald Combs1-13/+26
Query HKLM\Software\Microsoft\Windows\CurrentVersion\App Paths\Python.exe and HKCU\Software\Microsoft\Windows\CurrentVersion\App Paths\Python.exe first before trying other methods. Change-Id: I83f54f6833149c68f1626c3c17f25ffe54d8ea5d Reviewed-on: https://code.wireshark.org/review/11506 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
2015-11-02Update my e-mail address in the AUTHORS fileStephen Fisher1-1/+1
(Source files all reference this file, so they don't need updating) Change-Id: Ib78c081d00e093119eab7d4d97c74944b3a46cfd Reviewed-on: https://code.wireshark.org/review/11507 Reviewed-by: Stephen Fisher <sfisher@panix.com>
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-02funnel_string_dialog(.h): fix extra ‘;’ [-Wpedantic]Alexis La Goutte1-1/+1
Change-Id: Ia11bfa225327c1cd19da70878e69be60da073a79 Reviewed-on: https://code.wireshark.org/review/11489 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-02[GTPv2] Dissect UTRAN F-Container content.AndersBroman8-109/+172
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 Kaiser11-37/+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>