-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Destination is never output #14
Comments
What OS are you using? The traceroute command outputs the destination to stdout in Fedora 38 and Ubuntu 22.04. $ traceroute google.com 2>/dev/null
traceroute to google.com (216.58.200.14), 30 hops max, 60 byte packets
1 _gateway (192.168.0.1) 1.640 ms 2.055 ms 2.034 ms
2 175.140.35.254 (175.140.35.254) 8.207 ms 8.772 ms 8.754 ms
3 10.55.49.65 (10.55.49.65) 8.726 ms 10.55.49.251 (10.55.49.251) 8.712 ms 10.55.49.67 (10.55.49.67) 8.688 ms
4 10.55.48.24 (10.55.48.24) 9.209 ms 9.191 ms 10.55.48.22 (10.55.48.22) 9.117 ms
5 72.14.214.220 (72.14.214.220) 9.082 ms 72.14.214.196 (72.14.214.196) 16.420 ms 72.14.214.220 (72.14.214.220) 10.948 ms
6 * * *
7 142.250.62.58 (142.250.62.58) 11.918 ms 108.170.229.108 (108.170.229.108) 5.229 ms 142.251.255.26 (142.251.255.26) 8.419 ms
8 kul09s16-in-f14.1e100.net (216.58.200.14) 8.361 ms 216.239.48.239 (216.239.48.239) 8.889 ms 108.170.250.13 (108.170.250.13) 8.847 ms |
This is the output for that command on macOS:
This is the version:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey there! Thanks for all the work in making this package. I truly appreciate it.
When using this package, I found out that the destination is never properly returned. I figured out that this is because the header that includes the destination is output in
stderr
rather thanstdout
. In order to fix this, I've applied this patch in my local repository usingpatch-package
.The text was updated successfully, but these errors were encountered: