Coder Social home page Coder Social logo

Comments (4)

creationix avatar creationix commented on July 16, 2024

Not sure I understand.

from luv.

imzyxwvu avatar imzyxwvu commented on July 16, 2024

In the dns.c:on_addrinfo, remove these code:

      if (ntohs(port)) {
        lua_pushinteger(L, ntohs(port));
        lua_setfield(L, -2, "port");
      }
      if (curr->ai_socktype == SOCK_STREAM) {
        lua_pushstring(L, "STREAM");
        lua_setfield(L, -2, "socktype");
      }
      else if (curr->ai_socktype == SOCK_DGRAM) {
        lua_pushstring(L, "DGRAM");
        lua_setfield(L, -2, "socktype");
      }
      switch (curr->ai_protocol) {
...
        default:
          lua_pushstring(L, NULL);
      }
      lua_setfield(L, -2, "protocol");

Because this is just the arg for querying and DNS servers doesn't return this at all. DNS server just record the IP address but it doesn't care which port and socket type the client will use. It is defined in addrinfo struct but not used by getaddrinfo. And if you use DNS the protocol must be INET or INET6 because DNS belongs to IP but INET or INET6 can be determined with the family field.

So these code will cause misunderstanding.

By the way, I think libuv has just one API for name resolving, so it is not necessary to create a sperated dns.c file.

from luv.

creationix avatar creationix commented on July 16, 2024

@imzyxwvu Please review the PR to make sure I understand what you mean.

I know there is only one dns function in libuv, but I put it in it's own file because it's a lot of code. Even after this patch is applied it's over 200 lines while parts like pipe are well under 100 lines.

from luv.

imzyxwvu avatar imzyxwvu commented on July 16, 2024

I still thought some fields are used for C socket API and useless for Lua. But in some cases those may be required, so this should be discussed in the future.

from luv.

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.