Giter Site home page Giter Site logo

Comments (4)

richardschneider avatar richardschneider commented on June 18, 2024

@morsm thanks for the bug report. The bug is that magic was added to determine a network changed event and is now causing infinite recursion on Catalina. I've changed the code to only do this magic on Windows.

Could use please build the catalina branch and test it on your machine. I don't have access to a Mac and Travis-CI doesn't yet support Catalina.

from net-mdns.

morsm avatar morsm commented on June 18, 2024

Hi @richardschneider , thanks for the quick turnaround!

I tested the fix and actually it doesn't work in my situation, because I'm running the standard .NET framework 4.6.1. Developing on Mac aiming to deploy to Raspberry Pi. So the #if statement still triggers the rebind code and the resulting stack overflow.

I changed it to this and then it works:

// Do magic only on Windows. #if NET461 if (Environment.OSVersion.Platform.ToString().StartsWith("Win")) // @morsm: not a great method, but RuntimeInformation not yet supported on 4.6.1 #else if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) #endif { NetworkChange.NetworkAddressChanged -= OnNetworkAddressChanged; NetworkChange.NetworkAddressChanged += OnNetworkAddressChanged; }

where you see I had to still use an #if because the 4.6.1 framework doesn't have the better RuntimeInformation class.

EDIT: sorry, I can't get the code formatting right above.

from net-mdns.

richardschneider avatar richardschneider commented on June 18, 2024

I've added your change. Could you fetch the catalina branch and test again?

from net-mdns.

morsm avatar morsm commented on June 18, 2024

That does it! Thanks a lot.

from net-mdns.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.