Giter Site home page Giter Site logo

Comments (3)

jsha avatar jsha commented on May 28, 2024

from ureq.

KonradHoeffner avatar KonradHoeffner commented on May 28, 2024

I've now written a minimal Rust program with ureq at https://github.com/KonradHoeffner/mwedns that does indeed fail at the DNS lookup step:

$ git clone [email protected]:KonradHoeffner/mwedns.git --branch ureq
$ cd mwedns
$ docker build . -t mwedns
[...]
$ docker run --rm mwedns
Trying to resolve google.com with to_socket_addrs()
it worked
Trying to get google.com with ureq
it worked
Trying to resolve github.com with to_socket_addrs()
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: Custom { kind: Uncategorized, error: "failed to lookup address information: Name does not resolve" }', src/main.rs:8:51

main.rs

use std::net::ToSocketAddrs;

fn main() {
    let domains = ["google.com", "github.com"];
    for domain in domains
    {
        println!("Trying to resolve {domain} with to_socket_addrs()");
        format!("{domain}:443").to_socket_addrs().unwrap();
        println!("it worked");
        println!("Trying to get {domain} with ureq");
        ureq::get(&format!("https://{domain}")).call().unwrap().into_reader();
        println!("it worked");
    }
}

If I interpret this correctly this is nothing that ureq can do about and I should report it somewhere else? Shall I still test it with another Rust http client?

from ureq.

KonradHoeffner avatar KonradHoeffner commented on May 28, 2024

I will close this question and report it at a better suited place.

from ureq.

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.