You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is this: https://github.com/softprops/hyperlocal
I don't remember if a hyper client can be converted to a reqwest client, but if so that might be enough to support it.
I'm looking at prior art again. got also has support, and:
Its syntax is nicer than the HTTPie plugin: http://unix:/var/run/docker.sock:/containers/json rather than http+unix://%2Fvar%2Frun%2Fdocker.sock/containers/json.
There doesn't seem to be a standard for this.
The plugin isn't super popular, maybe we can do without drop-in compatibility.
%2F shouldn't be strictly necessary to distinguish between filepath slashes and URL slashes, we could probe the filesystem. (But maybe we shouldn't, it'd e.g. give worse typo handling.)
We need something the url crate can handle.
got got a redirect CVE. We have to make sure we're not vulnerable.
Hey there!
I really love using
xh
, good job on it, I use it all the time!I ran into a need to make requests to a unix domain socket, and it would be nifty if
xh
could support that to.A convenient way to do it would be to support
unix://
URLs and then using everything afterunix://
as a file path to the unix socket.The text was updated successfully, but these errors were encountered: