Matt
Matt
From the ICMPEcho_am code: ``` def make_reply(self, req): reply = IP(dst=req[IP].src) / ICMP() reply[ICMP].type = 0 # echo-reply reply[ICMP].seq = req[ICMP].seq reply[ICMP].id = req[ICMP].id # Force re-generation of the checksum...
Resolves #4049
### Brief description The tun interfaces on my Mac are all named "utun0", "utun1", etc. How can I make scapy work with that? ### Scapy version 2.5 ### Python version...
**Describe the bug** ``` debug.cpp:1138:42: error: no member named '__srr0' in '__darwin_arm_thread_state64' return (void*) uc->uc_mcontext->__ss.__srr0; ~~~~~~~~~~~~~~~~~~~~~ ^ ``` **To reproduce** Follow the steps to build KeyDB **Expected behavior** KeyDB builds...
### How to reproduce the problem ``` 1. #define _GNU_SOURCE 1 2. 3. #include 4. #include 5. #include 6. #include 7. 8. static const unsigned int NUM_ITERATIONS = 100000; 9....
In `get_pthread_handle` (real.cpp), `dlopen` can fail to load "libpthread.so.0" and return a NULL pointer. This condition is not properly handled by Coz. #### How to reproduce the problem: Build https://github.com/ClickHouse/ClickHouse....
If the main thread of the profiled program exits using `pthread_exit`, the Coz profiler thread never terminates and keeps the process stuck indefinitely. Code to reproduce the problem (taken from...
(reopen of #1209) It's a small feature, but it would go a long way in simplifying the workflow for many of us
https://urllib3.readthedocs.io/en/stable/reference/urllib3.poolmanager.html Since `host` is not a keyword parameter, it is ignored when passed into the `PoolManager` constructor as `**connection_pool_kw`