Nayef Ghattas
Nayef Ghattas
I believe https://github.com/rogpeppe/godef/pull/56 fixes this issue, if anyone has the time to look at it ! (cc @rogpeppe ?)
@RouNNdeL Can you please share a pcap file containing the DNS query packet that your querier is sending? I'm wondering if the querier is sending a QU question, and if...
Per the RFC, mDNS requests and reponses are done in broadcast (`FF:FF:FF:FF:FF:FF`) meaning that all the devices in a same VLAN will receive a Bonjour request/response. So regarding your question,...
Yes, `D2` would be able to discover the "forbidden" device, in some scenarios. For casting, this is done with another protocol (mDNS/Bonjour only does the "discovery" part): when `D2` discovers...
It would be possible by sending the response to `D1` in **unicast** (by using a many-to-many mapping). However, this would go against the RFC as the answer must be in...
AFAICT, the most straightforward option would be to make the reflector send **unicast** responses instead of **multicast**/**broadcast**. You can do this by : - forking the repo to add the...
Hi there ! Thank you for your interest in this project :) At the moment, bridging between network interfaces is not supported. It is definitely an nice feature to have....
Hey ! Okay, no worries 🙂As it's a nice feature to have for this project, let's leave this issue open so we can keep track, and let others know that...
@leonard520 If I understand correctly you're running the profiler in Kubernetes, right? In that case, you will need to ensure the following is set: ``` hostPID: true # Setting hostPID...
We're currently using `util` to be able to implement the `Reporter` interface which requires `util.SourceLineno`: https://github.com/open-telemetry/opentelemetry-ebpf-profiler/blob/dd98f7080855cea3a2c03dda99283fbec964b105/reporter/iface.go#L75-L76 Would it be possible to also expose `util` or alternatively move `util.SourceLineno` to a...