Georg Jung

Results 20 comments of Georg Jung

While reading through MSDN I found another directly contradictory example: The very last code block in https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/local-functions#local-functions-and-exceptions > that basically say don't just return the Task unless it is a...

Seems like the easiest way involves parsing commandline outputs from `arp` or `arping`, which aren't available everywhere (i.e. in my default WSL installation without `apt get`ting arping). A good starting...

It's doable using https://github.com/chmorgan/sharppcap/blob/master/SharpPcap/ARP.cs too but this requires a dependency to non-managed code. While it's possibly better then parsing stdout it doesn't seem optimal either...

See https://github.com/georg-jung/LinuxArpLookupDemo This is workaround-ish too but possibly the best option if one wants to get arp working on linux. Doesn't have prerequisits or dependencies. Note that this doesn't work...

Yeah I've seen this. Raw sockets on linux require root, on windows they are completely unsupported. One way around is pcap. But the solution I linked works without root and...

Actually I think this method works quite well and has reasonable drawbacks - the unnecessary ping. If one wanted to not use a ping one could obviously try to connect...

Any updates on this? I'm just experiencing the same issue.

Is there anything further I can do to support fixing this? FYI: My above mentioned [MozJPEG wrapper for .Net](https://github.com/georg-jung/MozJpegSharp) is live and on [nuget](https://www.nuget.org/packages/MozJpegSharp/) now.

The dll was compiled using the same vm image in CI as the tests run on afterwards. I don't use precompiled versions on windows or macOS. Complete logs of the...