Giter VIP home page Giter VIP logo

Comments (6)

miekg avatar miekg commented on August 24, 2024

Obviously this needs a new starting point next to ListenAndServe, maybe StartAndService?

from dns.

miekg avatar miekg commented on August 24, 2024

Proof of concept implemented in the systemd branch

from dns.

porjo avatar porjo commented on August 24, 2024

I've taken a look at systemd branch. A couple of comments:

  • there's not much point accepting a slice of each, then only taking the first element. Just take a single instance to begin with and check for non-nil
  • possibly better to have UDP taking precedence over TCP

from dns.

miekg avatar miekg commented on August 24, 2024

I was wondering about this too. When does systemd give you multiple
sockets? And is it possible to get UDP and TCP sockets at the same time?
On 19 Jul 2014 00:36, "Ian Bishop" [email protected] wrote:

I've taken a look at systemd branch. A couple of comments:

  • there's not much point accepting a slice of each, then only taking
    the first element. Just take a single instance to begin with and check for
    non-nil
  • possibly better to have UDP taking precedence over TCP


Reply to this email directly or view it on GitHub
#100 (comment).

from dns.

porjo avatar porjo commented on August 24, 2024

Yes, you can have multiple UDP and TCP sockets being returned. A systemd.socket config file might look like this for example:

ListenStream=192.168.1.1:53
ListenStream=10.0.0.1:53
ListenDatagram=192.168.1.1:53
ListenDatagram=10.0.0.1:53

Where ListenStream corresponds to TCP and ListenDatagram corresponds to UDP.

from dns.

miekg avatar miekg commented on August 24, 2024

Ah OK. Those are then all send. Then the current code in server.go does not
work. There, the serveUDP/TCP need to be started in goroutines. Bit then we
also need to think about the return value of that function.
On 19 Jul 2014 08:31, "Ian Bishop" [email protected] wrote:

Yes, you can have multiple UDP and TCP sockets being returned. A
systemd.socket config file might look like this for example:

ListenStream=192.168.1.1:53ListenStream=10.0.0.1:53ListenDatagram=192.168.1.1:53ListenDatagram=10.0.0.1:53

Where ListenStream corresponds to TCP and ListenDatagram corresponds to
UDP.


Reply to this email directly or view it on GitHub
#100 (comment).

from dns.

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.