--
v3: mshtml: Implement Cycle Collection for XMLHttpRequest.
mshtml: Implement Cycle Collection for HTMLPerformanceTiming.
mshtml: Move PerformanceTiming related fields to the window.
mshtml: Move HTMLPerformanceNavigation related fields to the window.
mshtml: Implement Cycle Collection for inner windows.
mshtml: Get rid of NULL checks for the dispex vtbl.
mshtml: Implement Cycle Collection for outer windows.
mshtml: Implement Cycle Collection for HTMLLocation.
mshtml: Separate the HTMLLocation from the outer window.
mshtml: Actually traverse the object-specific edges.
https://gitlab.winehq.org/wine/wine/-/merge_requests/3645
--
v3: vkd3d-shader/spirv: Handle thread group UAV barriers.
vkd3d-shader/spirv: Include Uniform in the memory semantics for UAV barriers.
vkd3d-shader/spirv: Handle globally coherent UAVs.
vkd3d-shader: Introduce a UAV_GLOBALLY_COHERENT descriptor info flag.
vkd3d-shader/d3d-asm: Trace the RASTERISER_ORDERED_VIEW UAV flag.
vkd3d-shader/tpf: Fix extraction of the UAV declaration flags.
https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/306
--
v9: vkd3d-shader/dxil: Implement DX instruction StoreOutput.
vkd3d-shader/dxil: Declare shader outputs.
vkd3d-shader/dxil: Implement the DXIL CALL instruction.
vkd3d-shader/dxil: Replace the result type enum with a bool.
https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/283
According to WinPcap documentation of `pcap_dispatch`
(https://www.winpcap.org/docs/docs_41b5/html/group__wpcapfunc.html#g60ce104c…):
> A cnt of -1 processes all the packets received in one buffer when
> reading a live capture, or all the packets in the file when reading a
> ``savefile''
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=55487
Signed-off-by: Alexis Murzeau <amubtdx(a)gmail.com>
I've tried to see if I could add a test calling pcap_dispatch with a
negative count, but that would require having real ethernet interface
connected to a network and maybe also appropriate Linux privileges to
capture real packets.
Instead, I've tested manually both pcap_dispatch and pcap_loop using the
test_pcap.c source file I've given in the bug page, and now it works.
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/3684