summaryrefslogtreecommitdiffhomepage
path: root/talpid-dbus/src/network_manager.rs
AgeCommit message (Collapse)AuthorFilesLines
2025-09-08Fix lint `clippy::implicit_clone`Markus Pettersson1-2/+2
2025-07-15Fix `collapsible_if` clippy lintMarkus Pettersson1-4/+4
2025-07-10Run `cargo fmt`Sebastian Holmin1-4/+6
2024-09-02Fix rustc nightly error: `elided lifetime has a name`Markus Pettersson1-3/+3
2024-06-14Adapt to new never type fallback by explicitly stating unit typesLinus Färnstrand1-2/+5
2024-02-27Replace err_derive with thiserrorJoakim Hulthe1-18/+17
`err_derive` is unmaintained and will probably stop working with rust edition 2024. `thiserror` is almost a drop-in replacement. This commit simply replaces all occurences of `derive(err_derive::Error)` with `derive(thiserror::Error)` and fixes the attributes, but the Error and Display impls should be identical.
2024-01-04Add workspace level lintsLinus Färnstrand1-1/+1
2023-03-27Fix many typosAlexander Seiler1-1/+1
Signed-off-by: Alexander Seiler <seileralex@gmail.com>
2022-11-07Split up talpid-coreEmīls Piņķis1-0/+6
2022-09-27Fix clippy complaintsEmīls Piņķis1-4/+4
2022-06-21Fix the large majority of clippy warningsJonathan1-5/+4
This commit fixes most of the remaining clippy warnings in the codebase. These warnings were the more semantically difficult ones to fix. There are some warnings that remain from the rebase that will be fixed in the upcoming PR.
2022-06-13Perform a clippy --fixjonathan1-9/+9
This is a giant commit which performs only a clippy --fix. Auditing can happen in two ways, either by reading every line or by running a `cargo clippy --fix` on the previous commit and make sure that the result is the same.
2022-05-13Fix small typoEmīls1-2/+2
2022-01-11Use ": " as delimiter instead of " - " between messages and valueLinus Färnstrand1-4/+4
2021-12-14Fix some cargo doc warningsDavid Lönnhager1-1/+1
2021-11-29Reformat code without blank_lines_upper_bound = 2Linus Färnstrand1-6/+0
2021-09-15Fix Rust nightly errorsDavid Lönnhager1-24/+4
2021-03-02Watch DNS config changes in systemd-resolvedEmīls1-0/+14
Certain NM versions will overwrite systemd-resovled config when they're reapplying existing config, this can be invoked `nmcli general reload dns-full` or by receiving a new DHCP lease. NM will just wipe the config for interfaces it doesn't have the config for in systemd-resolved, and since our daemon prefers systemd-resolved over NM, our config would be wiped. To fix this, I've changed the systemd-resolved DNS code to listen to changes to the global DNS config and reapply the tunnel interface DNS config if it's changed in any way. To better seperate the conecrns, the systemd-resolved DBus specific code was moved to the `talpid-dbus` crate, and the DNS code that manages the state and applies changes remains in `talpid-core`. One other solution that was considered was to just prefer NM over systemd-resolved, and we already kind of could do that, but the coming NM versions (1.28 and up) seem to not be able to manage DNS via it's own /etc/resolv.conf.
2021-03-01Stop using NM if it's too newEmīls1-18/+64
2021-01-12Expose NM versionEmīls1-4/+8
2021-01-12Add talpid-dbus crateEmīls1-0/+707