Code Monkey home page Code Monkey logo

Comments (6)

robertvazan avatar robertvazan commented on July 24, 2024

The "invalid pointer address" looks like an internal NET problem. I don't use Azure. Could you try writing a small program that just calls Connect() on a UDP socket? If it fails, we know it's not GuerrillaNTP-related.

from guerrillantp.

theguy69 avatar theguy69 commented on July 24, 2024

Hi Robert,

The error has been identified and can be resolved with a few small changes to your code. For some strange reason, Azure always tries to connect via IPV6, I think if you create an overload of the NtpClient method to include the possibility of choosing the range of addresses the problem will be solved, the following code does not generate an error in Azure:

var teste = new DnsEndPoint("ntp02.oal.ul.pt", 123);
var socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
socket.Connect(teste);
socket.Close();

If i Remove the AddressFamily Azure throws one exception error.

Just add the parameter to NtpClient and change all socket connections to include the parameter if defined *if not defined use the default value AddressFamily.Unspecified
Ex:

NtpClient client = new NtpClient("ntp02.oal.ul.pt", 123, AddressFamily.InterNetwork);
or
NtpClient client = new NtpClient("ntp02.oal.ul.pt", AddressFamily.InterNetwork);

Hope this helps you to solve the issue

Cheers
Jorge

from guerrillantp.

robertvazan avatar robertvazan commented on July 24, 2024

Good analysis. Would you be able to make a pull request with the API changes you are proposing?

from guerrillantp.

theguy69 avatar theguy69 commented on July 24, 2024

Hi Robert

Created the pull request, if you use it and after you update the Nudget Package I'll try it on production server.

Cheers

Jorge

from guerrillantp.

theguy69 avatar theguy69 commented on July 24, 2024

Hi Robert

Did you have the opportunity to check the pull request I made regarding this error?

Still saying that needs to be approved by a maintainer

Cheers

Jorge

from guerrillantp.

robertvazan avatar robertvazan commented on July 24, 2024

I am a bit busy, but it's on my priority TODO list. I will get to it as soon as possible.

from guerrillantp.

Related Issues (12)

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.