| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
This patch fixes a relatively harmless build error introduced for
non-unix builds.
Additional comma introduced in b5aa8f7a88.
|
| |
|
|
| |
We'll need this for implementing the connect point logic.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This is a big change across multiple crates since there isn't a good way
to break it up.
This changes the signature of `CfgPath::path` to:
```
pub fn path(&self, path_resolver: &CfgPathResolver) -> Result<PathBuf, CfgPathError> {
```
Making this change means that our global `CfgPathResolver` needs to be
stored in the 'arti-client' library instead of `tor-config-path`, and
must be passed through to anything that calls `path` to expand the
variables.
|
| |\
| |
| |
| |
| | |
tor-config-path: remove exploratory code in comment
See merge request tpo/core/arti!2610
|
| | |
| |
| |
| |
| | |
I meant to remove this after confirming that the current approach
works; but apparently I never did.
|
| |/
|
|
| |
I think `USER_HOME` was intended here.
|
|
|
This type behaves like a variant of `general::SocketAddr`
that allows the Unix variant to be a CfgPath.
|